You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
34 lines
691 B
Python
34 lines
691 B
Python
# From 3.6 _pyio.py
|
|
# Bug was in "return" not having "COME_FROM"
|
|
# and in 1st try/finally no END_FINALLY (which really
|
|
# hooks into the control-flow analysis).
|
|
# The 2nd try/finally has an END_FINALLY although still
|
|
# no "COME_FROM".
|
|
|
|
def getvalue(self):
|
|
try:
|
|
return 3
|
|
finally:
|
|
return 1
|
|
|
|
|
|
def getvalue1(self):
|
|
try:
|
|
return 4
|
|
finally:
|
|
pass
|
|
return 2
|
|
|
|
# From Python 3.6 asynchat.py
|
|
# Bug is handling as why in the face of a return.
|
|
# uncompyle6 shows removal of "why" after the return.
|
|
def handle_read(self):
|
|
try:
|
|
data = 5
|
|
except ZeroDivisionError:
|
|
return
|
|
except OSError as why:
|
|
return why
|
|
|
|
return data
|