This commit is contained in:
Anthony Scopatz 2016-02-07 22:14:42 -05:00
parent 0ec061ad9f
commit 2da806af0c

View file

@ -17,8 +17,8 @@ from tools import (mock_xonsh_env, skip_if, VER_3_4, VER_3_5, VER_MAJOR_MINOR,
VER_FULL)
PARSER = None
#DEBUG_LEVEL = 0
DEBUG_LEVEL = 100
DEBUG_LEVEL = 0
#DEBUG_LEVEL = 100
# a lot of col_offset data changed from Py v3.5.0 -> v3.5.1
INC_ATTRS = (3, 5, 1) <= VER_FULL
@ -760,7 +760,10 @@ def test_call_alot_next():
yield check_ast, 'x(x=1, *args, **kwargs)', False
def test_call_alot_next_next():
global DEBUG_LEVEL
DEBUG_LEVEL = 100
yield check_ast, 'x(x=1, *args, y=42, **kwargs)', False
DEBUG_LEVEL = 0
def test_getattr():
yield check_ast, 'list.append'