Add tests for E731, issue #277
authorFlorent Xicluna <florent.xicluna@gmail.com>
Sat, 26 Apr 2014 16:45:35 +0000 (18:45 +0200)
committerFlorent Xicluna <florent.xicluna@gmail.com>
Sat, 26 Apr 2014 16:45:35 +0000 (18:45 +0200)
testsuite/E73.py [new file with mode: 0644]

diff --git a/testsuite/E73.py b/testsuite/E73.py
new file mode 100644 (file)
index 0000000..0673e0f
--- /dev/null
@@ -0,0 +1,7 @@
+#: E731:1:1
+f = lambda x: 2 * x
+#: E731:1:1 E226:1:16
+f = lambda x: 2*x
+#: E731:2:5
+while False:
+    this = lambda y, z: 2 * x