]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/black/tests/data/cases/numeric_literals.py

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Merge commit '882d8795c6ff65c02f2657e596391748d1b6b7f5'
[etc/vim.git] / .vim / bundle / black / tests / data / cases / numeric_literals.py
1 x = 123456789
2 x = 123456
3 x = .1
4 x = 1.
5 x = 1E+1
6 x = 1E-1
7 x = 1.000_000_01
8 x = 123456789.123456789
9 x = 123456789.123456789E123456789
10 x = 123456789E123456789
11 x = 123456789J
12 x = 123456789.123456789J
13 x = 0XB1ACC
14 x = 0B1011
15 x = 0O777
16 x = 0.000000006
17 x = 10000
18 x = 133333
19
20 # output
21
22 x = 123456789
23 x = 123456
24 x = 0.1
25 x = 1.0
26 x = 1e1
27 x = 1e-1
28 x = 1.000_000_01
29 x = 123456789.123456789
30 x = 123456789.123456789e123456789
31 x = 123456789e123456789
32 x = 123456789j
33 x = 123456789.123456789j
34 x = 0xB1ACC
35 x = 0b1011
36 x = 0o777
37 x = 0.000000006
38 x = 10000
39 x = 133333