From 16af734bec30f15bb785b43a23761abb36dd762c Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Fri, 21 Oct 2005 06:25:33 +0000 Subject: Incorrect code was generated for: foo(a = i for i in range(10)) This should have generated a SyntaxError. Fix the Grammar so it raises a SyntaxError and test it. --- Misc/NEWS | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Misc/NEWS b/Misc/NEWS index 77e8569..36d5c45 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -12,6 +12,9 @@ What's New in Python 2.5 alpha 1? Core and builtins ----------------- +- SF bug #116775: fix incorrect code being for generator expressions. + The following code now raises a SyntaxError: foo(a = i for i in range(10)) + - SF Bug #976608: fix SystemError when mtime of an imported file is -1. - SF Bug #887946: fix segfault when redirecting stdin from a directory. -- cgit v0.12