You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
Merge branch 'master' of github.com:rocky/python-uncompyle6
This commit is contained in:
@@ -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
|
||||
|
@@ -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'
|
||||
|
9
test/simple_source/bug30/01_comprehension.py
Normal file
9
test/simple_source/bug30/01_comprehension.py
Normal 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__])
|
Reference in New Issue
Block a user