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
commit e75c3c1a66
1 changed files with 1 additions and 1 deletions

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):