X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/d90297c77bab6e22831b05ffc099bfc709cc7785..d1aee5f7fa136b1f0a7d8dfc318af81009074070:/.vim/bundle/black/tests/data/cases/numeric_literals_skip_underscores.py diff --git a/.vim/bundle/black/tests/data/cases/numeric_literals_skip_underscores.py b/.vim/bundle/black/tests/data/cases/numeric_literals_skip_underscores.py new file mode 100644 index 0000000..6d60bdb --- /dev/null +++ b/.vim/bundle/black/tests/data/cases/numeric_literals_skip_underscores.py @@ -0,0 +1,19 @@ +x = 123456789 +x = 1_2_3_4_5_6_7 +x = 1E+1 +x = 0xb1acc +x = 0.00_00_006 +x = 12_34_567J +x = .1_2 +x = 1_2. + +# output + +x = 123456789 +x = 1_2_3_4_5_6_7 +x = 1e1 +x = 0xB1ACC +x = 0.00_00_006 +x = 12_34_567j +x = 0.1_2 +x = 1_2.0 \ No newline at end of file