start work

This commit is contained in:
Kovid Goyal 2014-08-07 21:06:10 +05:30
parent bcc415a174
commit f796fc69b1

View File

@ -0,0 +1,16 @@
#!/usr/bin/env python
# vim:fileencoding=utf-8
from __future__ import (unicode_literals, division, absolute_import,
print_function)
__license__ = 'GPL v3'
__copyright__ = '2014, Kovid Goyal <kovid at kovidgoyal.net>'
class Footnotes(object):
def __init__(self):
self.clear()
def clear(self):
self.url_cache = {}