X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/cc48bc56caa79b0d605e80302c32be0457cfde39..4310f39bd94c7fa29fc31079247d2aab4bd50f1a:/tests/data/numeric_literals_py2.py diff --git a/tests/data/numeric_literals_py2.py b/tests/data/numeric_literals_py2.py index 107c39b..8b2c7fa 100644 --- a/tests/data/numeric_literals_py2.py +++ b/tests/data/numeric_literals_py2.py @@ -1,12 +1,16 @@ #!/usr/bin/env python2.7 x = 123456789L +x = 123456789l x = 123456789 +x = 0xB1aCc # output #!/usr/bin/env python2.7 -x = 123456789l +x = 123456789L +x = 123456789L x = 123456789 +x = 0xb1acc