diff options
Diffstat (limited to 'tests/cmdline/cmd_parsetree.py')
-rw-r--r-- | tests/cmdline/cmd_parsetree.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/cmdline/cmd_parsetree.py b/tests/cmdline/cmd_parsetree.py new file mode 100644 index 0000000000..5f698eeae3 --- /dev/null +++ b/tests/cmdline/cmd_parsetree.py @@ -0,0 +1,11 @@ +# cmdline: -v -v -v +# test printing of the parse-tree + +for i in (): + pass +a = None +b = 'str' +c = 'a very long str that will not be interned' +d = b'bytes' +e = b'a very long bytes that will not be interned' +f = 123456789012345678901234567890 |