X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/bbf38400ceef34119e63c18c71e3316040a90a59..0c5c5374313566dd9047c3e992a3c23a7ea4b8f2:/tests/data/numeric_literals.py diff --git a/tests/data/numeric_literals.py b/tests/data/numeric_literals.py index 9a49dfa..0d8e345 100644 --- a/tests/data/numeric_literals.py +++ b/tests/data/numeric_literals.py @@ -16,6 +16,8 @@ x = 0XB1ACC x = 0B1011 x = 0O777 x = 0.000000006 +x = 10000 +x = 133333 # output @@ -23,7 +25,7 @@ x = 0.000000006 #!/usr/bin/env python3.6 x = 123_456_789 -x = 123456 +x = 123_456 x = 0.1 x = 1.0 x = 1e1 @@ -38,3 +40,5 @@ x = 0xB1ACC x = 0b1011 x = 0o777 x = 0.000_000_006 +x = 10000 +x = 133_333 \ No newline at end of file