summaryrefslogtreecommitdiffstats
path: root/Objects/stringobject.c
diff options
context:
space:
mode:
authorFredrik Lundh <fredrik@pythonware.com>2006-05-26 09:46:59 (GMT)
committerFredrik Lundh <fredrik@pythonware.com>2006-05-26 09:46:59 (GMT)
commit450277fef50c213b14b88c4fe939bd32eeecee36 (patch)
treee94a377d67075581188015bc2e4d6a7a736553c5 /Objects/stringobject.c
parent0c93ff67097f3cb524ac6f7247bd29f487352471 (diff)
downloadcpython-450277fef50c213b14b88c4fe939bd32eeecee36.zip
cpython-450277fef50c213b14b88c4fe939bd32eeecee36.tar.gz
cpython-450277fef50c213b14b88c4fe939bd32eeecee36.tar.bz2
needforspeed: use METH_O for argument handling, which made partition some
~15% faster for the current tests (which is noticable faster than a corre- sponding find call). thanks to neal-who-never-sleeps for the tip.
Diffstat (limited to 'Objects/stringobject.c')
-rw-r--r--Objects/stringobject.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/Objects/stringobject.c b/Objects/stringobject.c
index 0e0af89..0aa1e5b3 100644
--- a/Objects/stringobject.c
+++ b/Objects/stringobject.c
@@ -1606,15 +1606,12 @@ the separator itself, and the part after it. If the separator is not\n\
found, returns S and two empty strings.");
static PyObject *
-string_partition(PyStringObject *self, PyObject *args)
+string_partition(PyStringObject *self, PyObject *sep_obj)
{
Py_ssize_t len = PyString_GET_SIZE(self), sep_len, pos;
const char *str = PyString_AS_STRING(self), *sep;
- PyObject *sep_obj;
PyObject * out;
- if (!PyArg_ParseTuple(args, "O:partition", &sep_obj))
- return NULL;
if (PyString_Check(sep_obj)) {
sep = PyString_AS_STRING(sep_obj);
sep_len = PyString_GET_SIZE(sep_obj);
@@ -3969,8 +3966,7 @@ string_methods[] = {
{"count", (PyCFunction)string_count, METH_VARARGS, count__doc__},
{"endswith", (PyCFunction)string_endswith, METH_VARARGS,
endswith__doc__},
- {"partition", (PyCFunction)string_partition, METH_VARARGS,
- partition__doc__},
+ {"partition", (PyCFunction)string_partition, METH_O, partition__doc__},
{"find", (PyCFunction)string_find, METH_VARARGS, find__doc__},
{"index", (PyCFunction)string_index, METH_VARARGS, index__doc__},
{"lstrip", (PyCFunction)string_lstrip, METH_VARARGS, lstrip__doc__},