fixed @//// in wiki and pep8 spacing

This commit is contained in:
mdipierro
2012-08-25 11:29:11 -05:00
parent 0a95246cb0
commit dcce7fc39a
110 changed files with 181 additions and 72 deletions
+3 -2
View File
@@ -172,7 +172,7 @@ class Messages(Settings):
class FastStorage(dict):
"""
Eventually this should replace class Storage but causes memory leak
Eventually this should replace class Storage but causes memory leak
because of http://bugs.python.org/issue1469629
>>> s = FastStorage()
@@ -205,7 +205,7 @@ class FastStorage(dict):
>>> s['a']
>>> s['b']
"""
def __init__(self, *args, **kwargs):
def __init__(self, *args, **kwargs):
dict.__init__(self, *args, **kwargs)
self.__dict__ = self
def __getattr__(self,key):
@@ -269,3 +269,4 @@ if __name__ == '__main__':