summaryrefslogtreecommitdiff
path: root/test/scanners/python/literals.in.py
diff options
context:
space:
mode:
authormurphy <murphy@rubychan.de>2010-04-14 23:59:03 +0000
committermurphy <murphy@rubychan.de>2010-04-14 23:59:03 +0000
commit200144dd009d33ff8334be24d0fb2cc91b3a87ab (patch)
treef46c939cd01b8d4165b5d9f3444c20e072b51408 /test/scanners/python/literals.in.py
parent612a14e17bdae5dbb5b13cdceec797523725cbbe (diff)
downloadcoderay-200144dd009d33ff8334be24d0fb2cc91b3a87ab.tar.gz
Moving scanner tests into separate repository. The repository can be reached at http://svn.rubychan.de/coderay-scanner-tests/trunk.
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