You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
Add a 3.0 test
This commit is contained in:
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