diff options
author | Raymond Hettinger <python@rcn.com> | 2009-07-27 20:29:18 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-07-27 20:29:18 (GMT) |
commit | 63853bbdc4d116386d617542a7d2da2233352bca (patch) | |
tree | c4ea197fa1b91fa7671b0d9f1493ce2eba1a24e5 /Misc | |
parent | 7bc66b10099552dae79fab232ea643296e10876e (diff) | |
download | cpython-63853bbdc4d116386d617542a7d2da2233352bca.zip cpython-63853bbdc4d116386d617542a7d2da2233352bca.tar.gz cpython-63853bbdc4d116386d617542a7d2da2233352bca.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. |