X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/3f68af9813542a5e277b7a51b316644241c372d7..dc71922c768e543c9c3bbb1db5ea6d7fa801a814:/.vim/bundle/black/tests/data/numeric_literals_py2.py diff --git a/.vim/bundle/black/tests/data/numeric_literals_py2.py b/.vim/bundle/black/tests/data/numeric_literals_py2.py new file mode 100644 index 0000000..8f85c43 --- /dev/null +++ b/.vim/bundle/black/tests/data/numeric_literals_py2.py @@ -0,0 +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 = 123456789 +x = 0xB1ACC