summaryrefslogtreecommitdiffstats
path: root/Modules/_bisectmodule.c
Commit message (Expand)AuthorAgeFilesLines
* gh-104922: remove PY_SSIZE_T_CLEAN (#106315)Inada Naoki2023-07-021-1/+0
* gh-106084: Remove _PyObject_CallMethod() function (#106159)Victor Stinner2023-06-271-0/+5
* gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)Eric Snow2023-05-051-0/+1
* GH-102833: Mention the key function in the docstrings (GH-103009)Raymond Hettinger2023-03-251-4/+12
* gh-101965: Fix usage of Py_EnterRecursiveCall return value in _bisectmodule.c...Owain Davies2023-02-211-2/+2
* gh-96538: Fix refleak in _bisectmodule.c (gh-96619)Dennis Sweeney2022-09-061-0/+2
* gh-96538: Move some type-checking out of bisect.bisect() loops (GH-96539)Dennis Sweeney2022-09-051-16/+142
* gh-92839: fixed typo in _bisectmodule.c (line 131) (#92849)oda-gitso2022-05-281-2/+2
* gh-90699: Use module state to access insert str object. (GH-91693)Dong-hee Na2022-04-191-3/+49
* gh-90699: Remove usage of _Py_IDENTIFIER from bisect module. (GH-91522)Dong-hee Na2022-04-141-5/+2
* bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...Eric Snow2022-02-081-0/+1
* bpo-44854: Remove trailing whitespaces (GH-27689)Serhiy Storchaka2021-08-091-1/+1
* Update bisect docstrings (GH-26548)hrchu2021-06-061-6/+6
* bpo-4356: Add key function support to the bisect module (GH-20556)Raymond Hettinger2020-10-201-16/+64
* bpo-1635741: Port _bisect module to multi-phase init (GH-22415)Dong-hee Na2020-09-261-9/+5
* bpo-40665: Use Argument Clinic for the bisect module (GH-20163)Shantanu2020-05-181-131/+105
* bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749)Serhiy Storchaka2018-11-271-4/+4
* bpo-34925: Optimize common case for bisect() argument parsing (#9753)Raymond Hettinger2018-10-081-15/+39
* Issue #28792: Remove aliases from _bisectVictor Stinner2016-11-241-7/+0
* The return type of a rich comparison is an intRaymond Hettinger2016-02-141-2/+4
* Issue #19514: Deduplicate some _Py_IDENTIFIER declarations.Martin v. Löwis2013-11-071-3/+2
* Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** 32)...Antoine Pitrou2012-05-161-2/+2
|\
| * Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** 32)...Antoine Pitrou2012-05-161-1/+2
* | Issue #13496: Merge from 3.2Mark Dickinson2012-04-151-2/+8
|\ \ | |/
| * Issue 13496: Fix bisect.bisect overflow bug for large collections.Mark Dickinson2012-04-151-2/+8
* | Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-2/+2
* | Add API for static strings, primarily good for identifiers.Martin v. Löwis2011-10-091-2/+6
|/
* Fix line wrappingRaymond Hettinger2010-09-011-4/+2
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-151/+151
* merge from trunkBenjamin Peterson2008-10-111-2/+2
* Merged revisions 65209-65216,65225-65226,65233,65239,65246-65247,65255-65256 ...Benjamin Peterson2008-07-311-23/+23
* Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,...Georg Brandl2008-07-161-0/+8
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-4/+15
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-2/+2
* More unconsting.Martin v. Löwis2006-02-271-4/+4
* Use Py_ssize_t for counts and sizes.Martin v. Löwis2006-02-161-2/+2
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-5/+4
* SF #1313496: bisect C replacement doesn't accept named argsRaymond Hettinger2005-10-051-22/+26
* Any call to insort_{left,right} with a non-list leaked a reference to NoneMichael W. Hudson2004-08-021-6/+10
* SF Patch #864863: Bisect C implementationRaymond Hettinger2004-01-051-0/+228