mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 16:34:47 +01:00
debug on
This commit is contained in:
parent
0ec061ad9f
commit
2da806af0c
1 changed files with 5 additions and 2 deletions
|
@ -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'
|
||||
|
|
Loading…
Add table
Reference in a new issue