summaryrefslogtreecommitdiff
path: root/third_party/pep8/testsuite/E24.py
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/pep8/testsuite/E24.py')
-rw-r--r--third_party/pep8/testsuite/E24.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/third_party/pep8/testsuite/E24.py b/third_party/pep8/testsuite/E24.py
new file mode 100644
index 00000000000..36fb4aa7ebe
--- /dev/null
+++ b/third_party/pep8/testsuite/E24.py
@@ -0,0 +1,13 @@
+#: E241
+a = (1, 2)
+#: Okay
+b = (1, 20)
+#: E242
+a = (1, 2) # tab before 2
+#: Okay
+b = (1, 20) # space before 20
+#: E241 E241 E241
+# issue 135
+more_spaces = [a, b,
+ ef, +h,
+ c, -d]