pep8: Move to third_party/.
[samba.git] / third_party / pep8 / testsuite / noqa.py
diff --git a/third_party/pep8/testsuite/noqa.py b/third_party/pep8/testsuite/noqa.py
new file mode 100644 (file)
index 0000000..02fdd4f
--- /dev/null
@@ -0,0 +1,15 @@
+#: Okay
+# silence E501
+url = 'https://api.github.com/repos/sigmavirus24/Todo.txt-python/branches/master?client_id=xxxxxxxxxxxxxxxxxxxxxxxxxxxx&?client_secret=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'  # noqa
+
+# silence E128
+from functools import (partial, reduce, wraps,  # noqa
+    cmp_to_key)
+
+from functools import (partial, reduce, wraps,
+    cmp_to_key)   # noqa
+
+a = 1
+if a == None:   # noqa
+    pass
+#: