This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: bisect C replacement doesn't accept named args
Type: Stage:
Components: Library (Lib) Versions: Python 2.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: rhettinger Nosy List: drewp, rhettinger
Priority: normal Keywords:

Created on 2005-10-05 05:27 by drewp, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg26506 - (view) Author: Drew Perttula (drewp) Date: 2005-10-05 05:27
Code like "bisect.bisect(a,x,lo=y)" works in 2.3 but
not in 2.4 due to the new _bisect module not accepting
named arguments. 

_bisect (and all of the other C modules, for that
matter) should accept named arguments to their functions.
msg26507 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2005-10-05 11:49
Logged In: YES 
user_id=80475

Fixed.
See Modules/_bisectmodule.c 1.3 and 
msg26508 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2005-10-05 11:51
Logged In: YES 
user_id=80475

Fixed.  See Modules/_bisectmodule.c 1.3 and 1.2.4.1.
History
Date User Action Args
2022-04-11 14:56:13adminsetgithub: 42447
2005-10-05 05:27:36drewpcreate