summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-01-05 08:05:32 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-01-05 08:05:32 (GMT)
commit742bb6f9fda7043cc1ec0f1937b2dd1d0ecb6ab6 (patch)
tree4f869706f3bbb1262ca3c45e765b49858d9996c5 /Misc
parente1d4715a6fc6b4566a8afebcdd03dc8607021d3d (diff)
downloadcpython-742bb6f9fda7043cc1ec0f1937b2dd1d0ecb6ab6.zip
cpython-742bb6f9fda7043cc1ec0f1937b2dd1d0ecb6ab6.tar.gz
cpython-742bb6f9fda7043cc1ec0f1937b2dd1d0ecb6ab6.tar.bz2
Clarification of new bisect module functions.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 2 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d2dfbec..284b774 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -51,7 +51,8 @@ Standard library
and XXX_left methods differ in what happens when the new element
compares equal to one or more elements already in the list: the
XXX_left methods insert to the left, the XXX_right methods to the
- right.
+ right. Code that doesn't care where equal elements end up should
+ continue to use the old, short names ("bisect" and "insort").
Windows changes