You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-02 16:44:46 +08:00
17 lines
469 B
Python
17 lines
469 B
Python
# Python 2.6.9 Cookie.py
|
|
# Problem in 2.6 is making sure
|
|
# the two JUMP_ABSOLUTES get turned into:
|
|
# 26 CONTINUE 7 '7'
|
|
# 29 JUMP_BACK 7 '7'
|
|
# The fact that the "continue" is on the same
|
|
# line as the "if" is important.
|
|
|
|
for K in items:
|
|
if V: continue
|
|
|
|
# 32 CONTINUE 7 '7'
|
|
# 35 JUMP_FORWARD 1 (to 39)
|
|
for K,V in items:
|
|
if V == "": continue
|
|
if K not in attrs: continue
|