summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-07-30 06:53:31 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-07-30 06:53:31 (GMT)
commit0d62a062066a4cbc8aabab9c305d60ebf7922c8c (patch)
tree1232a8cb31283a4b4f2ae3a6840de9a57113eb51 /Misc
parent33c3e29fcec55d552eae9f684447d5f68ae019d7 (diff)
downloadcpython-0d62a062066a4cbc8aabab9c305d60ebf7922c8c.zip
cpython-0d62a062066a4cbc8aabab9c305d60ebf7922c8c.tar.gz
cpython-0d62a062066a4cbc8aabab9c305d60ebf7922c8c.tar.bz2
Patch #1531113: Fix augmented assignment with yield expressions.
Also fix a SystemError when trying to assign to yield expressions.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 5998bca..d35fb70 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -624,6 +624,7 @@ Laurence Tratt
John Tromp
Jason Trowbridge
Anthony Tuininga
+Christopher Tur Lesniewski-Laas
Stephen Turner
Bill Tutt
Doobee R. Tzeck
diff --git a/Misc/NEWS b/Misc/NEWS
index 19740de..141850d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.5 beta 3?
Core and builtins
-----------------
+- Patch #1531113: Fix augmented assignment with yield expressions.
+ Also fix a SystemError when trying to assign to yield expressions.
+
- Bug #1529871: The speed enhancement patch #921466 broke Python's compliance
with PEP 302. This was fixed by adding an ``imp.NullImporter`` type that is
used in ``sys.path_importer_cache`` to cache non-directory paths and avoid