Merge branch 'master' of github.com:rocky/python-uncompyle6

This commit is contained in:
rocky
2018-07-05 21:48:53 -04:00
3 changed files with 11 additions and 2 deletions

View File

@@ -33,7 +33,7 @@ prescribed cases, the ill-defined amorphous cases as well will get
handled as well.
In sum, you may need to do some work to have the bug you have found
handled before the hundreds of other bugs, and things I could be
handled before the hundreds of other bugs, and other things I could be
doing.
No one is getting paid to work to work on this project, let alone the

View File

@@ -57,7 +57,7 @@ entry_points = {
]}
ftp_url = None
install_requires = ['spark-parser >= 1.8.5, < 1.9.0',
'xdis >= 3.8.4, < 3.9.0']
'xdis >= 3.8.6, < 3.9.0']
license = 'GPL3'
mailing_list = 'python-debugger@googlegroups.com'

View File

@@ -0,0 +1,9 @@
# From abc.py
def __new__(cls, value, bases, namespace):
{name
for name, value in namespace.items()
if getattr(value, "__isabstractmethod__", False)}
return
# From base64.py
_b32rev = dict([(v[0], k) for k, v in __file__])