diff options
author | Raymond Hettinger <python@rcn.com> | 2005-08-13 02:28:54 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2005-08-13 02:28:54 (GMT) |
commit | ab294199b772e47dd86ca665dbc1080715b844d2 (patch) | |
tree | 355e719f2cbc756be0d9c8a2943a9056cc304a77 /Misc | |
parent | 787b4c5fea8476a1146918f90a6da7f63d7aa31c (diff) | |
download | cpython-ab294199b772e47dd86ca665dbc1080715b844d2.zip cpython-ab294199b772e47dd86ca665dbc1080715b844d2.tar.gz cpython-ab294199b772e47dd86ca665dbc1080715b844d2.tar.bz2 |
Teach set modules to correctly compute s-=s and s^=s as the empty set.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -17,6 +17,8 @@ Core and builtins __hash__() function. Also, changed set.__contains__() to have identical logic. +- The set() builtin can now properly compute s-=s as an empty set. + - SF bug #1238681: freed pointer is used in longobject.c:long_pow(). - SF bug #1185883: Python's small-object memory allocator took over @@ -58,6 +60,8 @@ Extension Modules Library ------- +- The sets module can now properly compute s-=s and s^=s as an empty set. + - Patch #827386: Support absolute source paths in msvccompiler.py. - Fix a problem in Tkinter introduced by SF patch #869468: delete bogus |