X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/cc48bc56caa79b0d605e80302c32be0457cfde39..366a0806eb4edd94d4d20cc6912333586bdc9fa7:/tests/data/numeric_literals_py2.py diff --git a/tests/data/numeric_literals_py2.py b/tests/data/numeric_literals_py2.py index 107c39b..8f85c43 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