Files
python-uncompyle6/test/simple_source/stmts/15_assert.py
2018-03-28 07:52:04 -04:00

36 lines
777 B
Python

# RUNNABLE!
# Tests:
# 2.7:
# assert ::= assert_expr jmp_true LOAD_ASSERT RAISE_VARARGS_1
# call_function ::= expr expr expr CALL_FUNCTION_2
# 2.6
# assert ::= assert_expr jmp_true LOAD_ASSERT RAISE_VARARGS_1 come_from_pop
assert isinstance(1, int)
# 2.6.9 DocXMLRPCServer.py
# 2.6
# assert2 ::= assert_expr jmp_true LOAD_ASSERT expr RAISE_VARARGS_2 come_from_pop
for method_name in ['a']:
if method_name in ('b',):
method = 'a'
else:
assert True, "instance installed"
methods = 'b'
# _Bug in 3.x is not recognizing the assert
# producing:
# if not not do_setlocal:
# raise AssertError
# Hmmm.. this isn't strickly a bug
def getpreferredencoding(do_setlocale=True):
assert not do_setlocale
getpreferredencoding(False)