X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/d90297c77bab6e22831b05ffc099bfc709cc7785:/.vim/bundle/black/tests/data/numeric_literals_skip_underscores.py..d1aee5f7fa136b1f0a7d8dfc318af81009074070:/.vim/bundle/black/tests/data/cases/static/git-favicon.png diff --git a/.vim/bundle/black/tests/data/numeric_literals_skip_underscores.py b/.vim/bundle/black/tests/data/numeric_literals_skip_underscores.py deleted file mode 100644 index e345bb9..0000000 --- a/.vim/bundle/black/tests/data/numeric_literals_skip_underscores.py +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/env python3.6 - -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 - -#!/usr/bin/env python3.6 - -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