__slots__ cause problems with python3

This commit is contained in:
Martin Diehl 2017-08-01 02:43:23 +02:00
parent cb62066667
commit 5d4f272f03
1 changed files with 0 additions and 6 deletions

View File

@ -14,12 +14,6 @@ except(NameError):
class ASCIItable():
"""Read and write to ASCII tables"""
__slots__ = ['__IO__',
'info',
'labeled',
'data',
]
tmpext = '_tmp' # filename extension for in-place access
# ------------------------------------------------------------------