Reinstate a test

This commit is contained in:
rocky 2018-03-28 07:52:04 -04:00
parent 8c22d57979
commit e568d68baa
4 changed files with 1 additions and 11 deletions

Binary file not shown.

Binary file not shown.

View File

@ -1,5 +1,5 @@
# From 2.7 test_itertools.py
# Bug was in 2.7 decompiling like the commented out
# Bug was in 2.7 decompiling the target assignment
# code below
from itertools import izip_longest
for args in [

View File

@ -1,7 +1,5 @@
# RUNNABLE!
# But if it miscompiles one of the tests may loop forever
# Tests:
# 2.7:
# assert ::= assert_expr jmp_true LOAD_ASSERT RAISE_VARARGS_1
@ -35,11 +33,3 @@ def getpreferredencoding(do_setlocale=True):
assert not do_setlocale
getpreferredencoding(False)
# From python 3.3 idlelib/PyParse.py
def _study1(i):
while i:
assert i
continue
_study1(False)