Add more excluded attrs for Py3

This commit is contained in:
Robin Dunn
2016-06-07 16:33:13 -07:00
parent 89dcaaec8f
commit 4fb5b54331

View File

@@ -221,7 +221,8 @@ class Enumeration(object):
CONSTANT_RE = re.compile('^([\w\s,]+)=', re.M)
EXCLUDED_ATTRS = ['__builtins__', '__doc__', '__name__', '__file__', '__path__',
'__module__', '__all__']
'__module__', '__all__', '__cached__', '__loader__', '__package__',
'__spec__', ]
TYPE_DESCRIPTION = ['library',
'package',