X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/cc48bc56caa79b0d605e80302c32be0457cfde39..4d03716eaea58ee38d77cf2bba0a72b7a27ec9fa:/tests/data/numeric_literals_py2.py?ds=inline 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