diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-01-05 08:05:32 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-01-05 08:05:32 (GMT) |
commit | 742bb6f9fda7043cc1ec0f1937b2dd1d0ecb6ab6 (patch) | |
tree | 4f869706f3bbb1262ca3c45e765b49858d9996c5 /Misc | |
parent | e1d4715a6fc6b4566a8afebcdd03dc8607021d3d (diff) | |
download | cpython-742bb6f9fda7043cc1ec0f1937b2dd1d0ecb6ab6.zip cpython-742bb6f9fda7043cc1ec0f1937b2dd1d0ecb6ab6.tar.gz cpython-742bb6f9fda7043cc1ec0f1937b2dd1d0ecb6ab6.tar.bz2 |
Clarification of new bisect module functions.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |