aboutsummaryrefslogtreecommitdiff
path: root/Modules/_bisectmodule.c
AgeCommit message (Expand)Author
2016-11-24Issue #28792: Remove aliases from _bisectVictor Stinner
2016-02-14The return type of a rich comparison is an intRaymond Hettinger
2013-11-07Issue #19514: Deduplicate some _Py_IDENTIFIER declarations.Martin v. Löwis
2012-05-16Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** 32)...Antoine Pitrou
2012-05-16Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** 32)...Antoine Pitrou
2012-04-15Issue #13496: Merge from 3.2Mark Dickinson
2012-04-15Issue 13496: Fix bisect.bisect overflow bug for large collections.Mark Dickinson
2011-10-14Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis
2011-10-09Add API for static strings, primarily good for identifiers.Martin v. Löwis
2010-09-01Fix line wrappingRaymond Hettinger
2010-05-09Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou
2008-10-11merge from trunkBenjamin Peterson
2008-07-31Merged revisions 65209-65216,65225-65226,65233,65239,65246-65247,65255-65256 ...Benjamin Peterson
2008-07-16Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,...Georg Brandl
2008-06-11Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis
2007-12-02Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes
2006-02-27More unconsting.Martin v. Löwis
2006-02-16Use Py_ssize_t for counts and sizes.Martin v. Löwis
2005-12-10Add const to several API functions that take char *.Jeremy Hylton
2005-10-05SF #1313496: bisect C replacement doesn't accept named argsRaymond Hettinger
2004-08-02Any call to insort_{left,right} with a non-list leaked a reference to NoneMichael W. Hudson
2004-01-05SF Patch #864863: Bisect C implementationRaymond Hettinger