diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-03-26 02:40:54 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-03-26 02:40:54 (GMT) |
commit | a8755c586e6484093d59d6bd5adfffe4c0a5c2aa (patch) | |
tree | 7b301bb1cf99b9ec069942d5e9cff9b31f68eb53 /Objects | |
parent | ee64b28cf44c14bfa4f7626357b8d99d2110e404 (diff) | |
download | cpython-a8755c586e6484093d59d6bd5adfffe4c0a5c2aa.zip cpython-a8755c586e6484093d59d6bd5adfffe4c0a5c2aa.tar.gz cpython-a8755c586e6484093d59d6bd5adfffe4c0a5c2aa.tar.bz2 |
kill this terribly outdated comment
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/unicodeobject.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index b706661..a5ffc56 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__}, |