From e2fd9896a786855f56fcfb94b2bf09ad3d9764be Mon Sep 17 00:00:00 2001 From: Daniel Chong Date: Wed, 2 Dec 2015 11:50:17 -0800 Subject: [PATCH] Staging for rebase --- .DS_Store | Bin 6148 -> 0 bytes issuetestsuite/python2IndentationErrorTest.py | 5 ----- issuetestsuite/python2SpaceErrorTest.py | 9 --------- issuetestsuite/python2TabErrorTest.py | 5 ----- issuetestsuite/python3test.py | 6 ------ 5 files changed, 25 deletions(-) delete mode 100644 .DS_Store delete mode 100644 issuetestsuite/python2IndentationErrorTest.py delete mode 100644 issuetestsuite/python2SpaceErrorTest.py delete mode 100644 issuetestsuite/python2TabErrorTest.py delete mode 100644 issuetestsuite/python3test.py diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 057448ee7002aacf987858dcb26b99d16ad596ef..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeHK&1%~~5T13MR%#DbA%Wz!w_bd(NgLBsg`1voF}Ng$Hn>tG>II=SUO6ThgWjR( zPu`<_mpnnAqcgkfkl^%c>M|o{zR~QAe!dmE8UPTzY1RRV03bjmY=meY5E>_4k%o_K zAqu)iX3mRL>tZF71OF-mG1mmnVYJ(yc(@o$%0ic)adcU^ ztYBmYm;q*BBN*_DSMYQro|Yey8DIw1$pEbn5|uFaSUa>!2O8S~AT}{<1%2uzs788> zJ=P9!1Vy+~L{}<&iy>S&#--1TJ=P9gISAi;2!ChcI}~B>j@Oqq9YpMqEi=Fj+-HD# zKa_~}|95}y|7{W*W`G&^KN%3sqrp)R-_7r>D{o1AtwjBVN{g7qv=#56 aTEVy^2Ql_oJH!YI{|Hzb*f0ZYW#A8&L1dx; diff --git a/issuetestsuite/python2IndentationErrorTest.py b/issuetestsuite/python2IndentationErrorTest.py deleted file mode 100644 index 33dfd1a7..00000000 --- a/issuetestsuite/python2IndentationErrorTest.py +++ /dev/null @@ -1,5 +0,0 @@ -#: INDENTATION LEVEL TEST -def test(): - print "c" # TAB ERROR: 1 tabs indentation expected; indentation was 2 tabs - - diff --git a/issuetestsuite/python2SpaceErrorTest.py b/issuetestsuite/python2SpaceErrorTest.py deleted file mode 100644 index ff0f181f..00000000 --- a/issuetestsuite/python2SpaceErrorTest.py +++ /dev/null @@ -1,9 +0,0 @@ -#: SPACE ERROR TEST -for a in 'abc': - for b in 'xyz': # indented with 4 spaces - print b # SPACE ERROR: 8 SPACES indentation expected; indentation was 9 spaces - - -for a in 'abc': - for b in 'xyz': # indented with 4 spaces - print b # SPACE ERROR: 8 spaces indentation expected; indentation was 2 tabs and 0 spaces diff --git a/issuetestsuite/python2TabErrorTest.py b/issuetestsuite/python2TabErrorTest.py deleted file mode 100644 index 14d16d5b..00000000 --- a/issuetestsuite/python2TabErrorTest.py +++ /dev/null @@ -1,5 +0,0 @@ -#: TAB ERROR TEST -for a in 'abc': - print "b" # indented with 1 tab - for b in 'xyz': # indented with 1 tab - print a # "TAB ERROR: 2 tabs indentation expected; indentation was 1 tabs and 5 spaces" \ No newline at end of file diff --git a/issuetestsuite/python3test.py b/issuetestsuite/python3test.py deleted file mode 100644 index 5c4e8067..00000000 --- a/issuetestsuite/python3test.py +++ /dev/null @@ -1,6 +0,0 @@ -#: TAB ERROR TEST -for a in 'abc': - for b in 'xyz': - print a # "TAB ERROR: 2 tabs indentation expected; indentation was 1 tabs and 5 spaces" - - \ No newline at end of file