diff options
author | Raymond Hettinger <python@rcn.com> | 2009-07-27 20:33:25 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-07-27 20:33:25 (GMT) |
commit | 30006c76f4acaaa66df47da697d900c369a892af (patch) | |
tree | 6532ef9856fab77f73c1ed153c38b5f9e893e7ff /Misc | |
parent | da21dd076b8b06463ce9d2aebe1480ce1cf14083 (diff) | |
download | cpython-30006c76f4acaaa66df47da697d900c369a892af.zip cpython-30006c76f4acaaa66df47da697d900c369a892af.tar.gz cpython-30006c76f4acaaa66df47da697d900c369a892af.tar.bz2 |
Issue 6573: Fix set.union() for cases where self is in the argument chain.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -14,6 +14,9 @@ Core and Builtins - Issue #6540: Fixed crash for bytearray.translate() with invalid parameters. +- Issue #6573: set.union() stopped processing inputs if an instance of self + occurred in the argument chain. + - Issue #6070: On posix platforms import no longer copies the execute bit from the .py file to the .pyc file if it is set. |