summaryrefslogtreecommitdiff
path: root/test/scanners/python/literals.expected.raydebug
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.expected.raydebug
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.expected.raydebug')
-rw-r--r--test/scanners/python/literals.expected.raydebug16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/scanners/python/literals.expected.raydebug b/test/scanners/python/literals.expected.raydebug
deleted file mode 100644
index ca7d22b..0000000
--- a/test/scanners/python/literals.expected.raydebug
+++ /dev/null
@@ -1,16 +0,0 @@
-comment(# from http://docs.python.org/reference/lexical_analysis.html#literals)
-
-ident(re)operator(.)ident(compile)operator(()string<delimiter(")content([A-Za-z_])delimiter(")> comment(# letter or underscore)
- string<delimiter(")content([A-Za-z0-9_]*)delimiter(")> comment(# letter, digit or underscore)
- operator(\))
-integer(7) integer(2147483647) oct(0177)
-integer(3L) integer(79228162514264337593543950336L) oct(0377L) hex(0x100000000L)
- integer(79228162514264337593543950336) hex(0xdeadbeef)
-
-float(3.14) float(10.) float(.001) float(1e100) float(3.14e-10) float(0e0)
-
-imaginary(3.14j) imaginary(10.j) imaginary(10j) imaginary(.001j) imaginary(1e100j) imaginary(3.14e-10j)
-
-integer(2) operator(+) imaginary(1j)
-
-float(3.5e+54) operator(-) imaginary(2.5e-13j) \ No newline at end of file