summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-03-26 02:41:16 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-03-26 02:41:16 (GMT)
commitc067d6661f1c5fc772753a34946aa18829ad04c0 (patch)
tree26fdba2c8593a806580bc7d7ad3d6d8319c3503a /Objects
parent0340ea77d1c7443b6df5a1fdbf0c33110230a12e (diff)
parent533281dd4f979cf65d250e56a09ea94c364084dd (diff)
downloadcpython-c067d6661f1c5fc772753a34946aa18829ad04c0.zip
cpython-c067d6661f1c5fc772753a34946aa18829ad04c0.tar.gz
cpython-c067d6661f1c5fc772753a34946aa18829ad04c0.tar.bz2
merge 3.2
Diffstat (limited to 'Objects')
-rw-r--r--Objects/unicodeobject.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 5c10713..704de813 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -13173,10 +13173,6 @@ unicode_getnewargs(PyObject *v)
}
static PyMethodDef unicode_methods[] = {
-
- /* Order is according to common usage: often used methods should
- appear first, since lookup is done sequentially. */
-
{"encode", (PyCFunction) unicode_encode, METH_VARARGS | METH_KEYWORDS, encode__doc__},
{"replace", (PyCFunction) unicode_replace, METH_VARARGS, replace__doc__},
{"split", (PyCFunction) unicode_split, METH_VARARGS | METH_KEYWORDS, split__doc__},