From 20fdc18ec52520e8eeb37fd18abffc497fdc6108 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Mon, 10 Jul 2017 23:57:36 +0200 Subject: [PATCH] We can now also test certain problems with python 2. --- test/normalizer_issue_files/python2.7.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 test/normalizer_issue_files/python2.7.py diff --git a/test/normalizer_issue_files/python2.7.py b/test/normalizer_issue_files/python2.7.py new file mode 100644 index 0000000..09c8e6e --- /dev/null +++ b/test/normalizer_issue_files/python2.7.py @@ -0,0 +1,6 @@ +import sys + +print 1, 2 >> sys.stdout + + +foo = ur'This is not possible in Python 3.'