Merge pull request #88 from pfmoore/develop

Remove __init__ from slots in ExcelFormula.py for Python 3.3 compatibility
This commit is contained in:
Kenneth Reitz
2012-09-22 09:53:49 -07:00
+1 -1
View File
@@ -4,7 +4,7 @@ from .antlr import ANTLRException
class Formula(object):
__slots__ = ["__init__", "__s", "__parser", "__sheet_refs", "__xcall_refs"]
__slots__ = ["__s", "__parser", "__sheet_refs", "__xcall_refs"]
def __init__(self, s):