You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 01:09:52 +08:00
while1 bug in 2.6 and 2.7
This commit is contained in:
BIN
test/bytecode_2.6/08_while1_if_continue.pyc
Normal file
BIN
test/bytecode_2.6/08_while1_if_continue.pyc
Normal file
Binary file not shown.
BIN
test/bytecode_2.7/08_while1_if_continue.pyc
Normal file
BIN
test/bytecode_2.7/08_while1_if_continue.pyc
Normal file
Binary file not shown.
9
test/simple_source/looping/08_while1_if_continue.py
Normal file
9
test/simple_source/looping/08_while1_if_continue.py
Normal file
@@ -0,0 +1,9 @@
|
||||
# 2.6.9 text_file.py
|
||||
# Bugs in 2.6 and 2.7 detecting structure
|
||||
def readline (self):
|
||||
while 1:
|
||||
if self:
|
||||
if __file__:
|
||||
continue
|
||||
|
||||
return
|
Reference in New Issue
Block a user