From 200144dd009d33ff8334be24d0fb2cc91b3a87ab Mon Sep 17 00:00:00 2001 From: murphy Date: Wed, 14 Apr 2010 23:59:03 +0000 Subject: Moving scanner tests into separate repository. The repository can be reached at http://svn.rubychan.de/coderay-scanner-tests/trunk. --- test/scanners/python/python3.in.py | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 test/scanners/python/python3.in.py (limited to 'test/scanners/python/python3.in.py') diff --git a/test/scanners/python/python3.in.py b/test/scanners/python/python3.in.py deleted file mode 100644 index 178a798..0000000 --- a/test/scanners/python/python3.in.py +++ /dev/null @@ -1,19 +0,0 @@ -Old: print "The answer is", 2*2 -New: print("The answer is", 2*2) - -Old: print x, # Trailing comma suppresses newline -New: print(x, end=" ") # Appends a space instead of a newline - -Old: print # Prints a newline -New: print() # You must call the function! - -Old: print >>sys.stderr, "fatal error" -New: print("fatal error", file=sys.stderr) - -Old: print (x, y) # prints repr((x, y)) -New: print((x, y)) # Not the same as print(x, y)! - -print("There are <", 2**32, "> possibilities!", sep="") - - -b"byte string\99\"" \ No newline at end of file -- cgit v1.2.1