summaryrefslogtreecommitdiff
path: root/Objects/unicodeobject.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-03-25 22:40:54 -0400
committerBenjamin Peterson <benjamin@python.org>2012-03-25 22:40:54 -0400
commita8755c586e6484093d59d6bd5adfffe4c0a5c2aa (patch)
tree7b301bb1cf99b9ec069942d5e9cff9b31f68eb53 /Objects/unicodeobject.c
parentee64b28cf44c14bfa4f7626357b8d99d2110e404 (diff)
downloadcpython-git-a8755c586e6484093d59d6bd5adfffe4c0a5c2aa.tar.gz
kill this terribly outdated comment
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r--Objects/unicodeobject.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index b70666106d..a5ffc56260 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -9208,10 +9208,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__},