[issue1176] str.split() takes no keyword arguments (Should this be expected?)

Brett Cannon report at bugs.python.org
Wed Sep 19 04:28:12 CEST 2007


Brett Cannon added the comment:

This is expected as str.split() is implemented in C and C code only has
keyword arguments if someone puts in the time and effort to support
them.  Support could be added if so desired.  But it does slow down
argument passing.  If you look you will notice that none of str's
methods have keyword support.

Changing this to an rfe.

----------
nosy: +brett.cannon
priority: normal -> low
type: behavior -> rfe

__________________________________
Tracker <report at bugs.python.org>
<http://bugs.python.org/issue1176>
__________________________________


More information about the Python-bugs-list mailing list