summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-03-26 02:40:54 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-03-26 02:40:54 (GMT)
commite8ecc73844f1764d2c3804f076453c4c97064383 (patch)
treebe98254042c915af13a2cafbc6406b1e371a3f81 /Objects
parent99c1f594b33e4dd98a573fad7a4062934a782162 (diff)
downloadcpython-e8ecc73844f1764d2c3804f076453c4c97064383.zip
cpython-e8ecc73844f1764d2c3804f076453c4c97064383.tar.gz
cpython-e8ecc73844f1764d2c3804f076453c4c97064383.tar.bz2
kill this terribly outdated comment
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 4fb1aed..0ee61c9 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -7795,10 +7795,6 @@ unicode_getnewargs(PyUnicodeObject *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, split__doc__},