Fix issues with Python 3.6's f strings and underscores in numbers.

This commit is contained in:
Dave Halter
2017-01-08 19:38:57 +01:00
parent 00a9f1ec0a
commit 7300f3e7ef
6 changed files with 101 additions and 22 deletions

View File

@@ -19,6 +19,17 @@ str..
#? []
a(0):.
# -----------------
# _ separators (for older versions than 3.6, a = 1_2_3 will just be 1, the rest
# gets ignored.)
# -----------------
#? int()
1_2_3
#? int()
123_345_345
#? int()
0x3_4
# -----------------
# if/else/elif
# -----------------