Python 3 genexpr bug

This commit is contained in:
rocky
2016-05-15 20:59:28 -04:00
parent 007328b353
commit b5eaa9445d
5 changed files with 23 additions and 3 deletions

View 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__)