You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-02 16:44:46 +08:00
41 lines
1.1 KiB
Python
41 lines
1.1 KiB
Python
# 2.6.9 calendar.py
|
|
# Bug in 2.6.9 was handling with as. Added rules
|
|
|
|
#
|
|
# withasstmt ::= expr setupwithas store suite_stmts_opt
|
|
# POP_BLOCK LOAD_CONST COME_FROM WITH_CLEANUP END_FINALLY
|
|
# setupwithas ::= DUP_TOP LOAD_ATTR ROT_TWO LOAD_ATTR CALL_FUNCTION_0 STORE_FAST
|
|
# SETUP_FINALLY LOAD_FAST DELETE_FAST
|
|
|
|
def formatweekday(self):
|
|
with self as encoding:
|
|
return encoding
|
|
|
|
# Bug in 2.7.14 test_contextlib.py. Bug was not enclosing (x,y) in parenthesis
|
|
def withas_bug(self, nested, a, b):
|
|
with self.assertRaises(ZeroDivisionError):
|
|
with nested(a(), b()) as (x, y):
|
|
1 // 0
|
|
|
|
# From 3.7.7 test_functools.py
|
|
# Bug is a unreachable code after "return"
|
|
def test_invalid_registrations(x):
|
|
return
|
|
with x:
|
|
x = 1
|
|
|
|
# From 3.7.7 test_re.py
|
|
# Bug was hooking in c_with.
|
|
def test_re_tests(tests):
|
|
for t in tests:
|
|
with a:
|
|
continue
|
|
|
|
# Adapted from 3.8 distutils/command/config.py
|
|
# In 3.8 the problem was in handling "with .. as" code
|
|
def _gen_temp_sourcefile(x, a, headers, lang):
|
|
with x as y:
|
|
if a:
|
|
y = 2
|
|
return 5
|