]> git.madduck.net Git - etc/vim.git/blob - tests/data/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:

fix misformatting of floats with leading zeros (#464)
[etc/vim.git] / tests / data / numeric_literals.py
1 #!/usr/bin/env python3.6
2
3 x = 123456789
4 x = 123456
5 x = .1
6 x = 1.
7 x = 1E+1
8 x = 1E-1
9 x = 123456789.123456789
10 x = 123456789.123456789E123456789
11 x = 123456789E123456789
12 x = 123456789J
13 x = 123456789.123456789J
14 x = 0XB1ACC
15 x = 0B1011
16 x = 0O777
17 x = 0.000000006
18
19 # output
20
21
22 #!/usr/bin/env python3.6
23
24 x = 123_456_789
25 x = 123456
26 x = 0.1
27 x = 1.0
28 x = 1e1
29 x = 1e-1
30 x = 123_456_789.123_456_789
31 x = 123_456_789.123_456_789e123_456_789
32 x = 123_456_789e123_456_789
33 x = 123_456_789j
34 x = 123_456_789.123_456_789j
35 x = 0xb1acc
36 x = 0b1011
37 x = 0o777
38 x = 0.000_000_006