X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/882d8795c6ff65c02f2657e596391748d1b6b7f5:/tests/data/cases/numeric_literals.py..refs/heads/master:/.vim/bundle/black/tests/data/cases/static/git-favicon.png diff --git a/tests/data/cases/numeric_literals.py b/tests/data/cases/numeric_literals.py deleted file mode 100644 index 9966932..0000000 --- a/tests/data/cases/numeric_literals.py +++ /dev/null @@ -1,39 +0,0 @@ -x = 123456789 -x = 123456 -x = .1 -x = 1. -x = 1E+1 -x = 1E-1 -x = 1.000_000_01 -x = 123456789.123456789 -x = 123456789.123456789E123456789 -x = 123456789E123456789 -x = 123456789J -x = 123456789.123456789J -x = 0XB1ACC -x = 0B1011 -x = 0O777 -x = 0.000000006 -x = 10000 -x = 133333 - -# output - -x = 123456789 -x = 123456 -x = 0.1 -x = 1.0 -x = 1e1 -x = 1e-1 -x = 1.000_000_01 -x = 123456789.123456789 -x = 123456789.123456789e123456789 -x = 123456789e123456789 -x = 123456789j -x = 123456789.123456789j -x = 0xB1ACC -x = 0b1011 -x = 0o777 -x = 0.000000006 -x = 10000 -x = 133333