You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 09:22:40 +08:00
Python 3 genexpr bug
This commit is contained in:
10
test/simple_source/expression/08_genexpr.py
Normal file
10
test/simple_source/expression/08_genexpr.py
Normal file
@@ -0,0 +1,10 @@
|
||||
# Bug in Python 3.5.1 calendar.py
|
||||
|
||||
# expr ::= LOAD_NAME
|
||||
# get_iter ::= expr GET_ITER
|
||||
# expr ::= get_iter
|
||||
# genexpr ::= LOAD_GENEXPR LOAD_CONST MAKE_FUNCTION_0 expr GET_ITER CALL_FUNCTION_1
|
||||
# expr ::= genexpr
|
||||
|
||||
names = (formatmonthname(False)
|
||||
for k in __file__)
|
Reference in New Issue
Block a user