summaryrefslogtreecommitdiff
path: root/test/scanners/python/literals.in.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/scanners/python/literals.in.py')
-rw-r--r--test/scanners/python/literals.in.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/scanners/python/literals.in.py b/test/scanners/python/literals.in.py
deleted file mode 100644
index ccf15ac..0000000
--- a/test/scanners/python/literals.in.py
+++ /dev/null
@@ -1,16 +0,0 @@
-# from http://docs.python.org/reference/lexical_analysis.html#literals
-
-re.compile("[A-Za-z_]" # letter or underscore
- "[A-Za-z0-9_]*" # letter, digit or underscore
- )
-7 2147483647 0177
-3L 79228162514264337593543950336L 0377L 0x100000000L
- 79228162514264337593543950336 0xdeadbeef
-
-3.14 10. .001 1e100 3.14e-10 0e0
-
-3.14j 10.j 10j .001j 1e100j 3.14e-10j
-
-2 + 1j
-
-3.5e+54 - 2.5e-13j \ No newline at end of file