From 49623d586f1bf3e16495efbafa059aed74b91dd5 Mon Sep 17 00:00:00 2001 From: Carol Fu Date: Mon, 23 Nov 2015 16:58:02 -0800 Subject: [PATCH] ISSUETESTONE FOR PYTHON2 POINT ONE --- ISSUETEST.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 ISSUETEST.py diff --git a/ISSUETEST.py b/ISSUETEST.py new file mode 100644 index 00000000..faebf3d1 --- /dev/null +++ b/ISSUETEST.py @@ -0,0 +1,11 @@ +#: TAB ERROR TEST +for a in 'abc': + for b in 'xyz': + print a # indented with 5 spaces + # should generate a "TAB ERROR: TAB INDENTATION EXPECTED; 5 SPACES WERE USED" + + print b # indented with 4 spaces + + + +