diff options
author | Skip Montanaro <skip@pobox.com> | 2003-01-02 20:51:08 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2003-01-02 20:51:08 (GMT) |
commit | 4abd5f0fce54d32fbe01207e505047bd82ff9ca3 (patch) | |
tree | 7c94a45859968c9e92cf2c5970ee2d4071a9b7a8 /Misc/NEWS | |
parent | fe8496ca03e93b74fe007de50f0e05347a772a60 (diff) | |
download | cpython-4abd5f0fce54d32fbe01207e505047bd82ff9ca3.zip cpython-4abd5f0fce54d32fbe01207e505047bd82ff9ca3.tar.gz cpython-4abd5f0fce54d32fbe01207e505047bd82ff9ca3.tar.bz2 |
Allow list sort's comparison function to explicitly be None. See SF patch
661092.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -12,6 +12,10 @@ What's New in Python 2.3 alpha 2? Core and builtins ----------------- +- List objects' sort() method now accepts None as the comparison function. + Passing None is semantically identical to calling sort() with no + arguments. + Extension modules ----------------- |