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 + + + +