From: Georg Brandl Date: Sun, 15 Mar 2009 21:32:06 +0000 (+0000) Subject: #5496: fix docstring of lookup(). X-Git-Tag: v2.7a1~1860 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4c95e091d6bfb7b2686ebe2d715ae38f65d3eb8b;p=thirdparty%2FPython%2Fcpython.git #5496: fix docstring of lookup(). --- diff --git a/Modules/_codecsmodule.c b/Modules/_codecsmodule.c index 9a1470021e21..687723803622 100644 --- a/Modules/_codecsmodule.c +++ b/Modules/_codecsmodule.c @@ -61,7 +61,7 @@ PyDoc_STRVAR(lookup__doc__, "lookup(encoding) -> CodecInfo\n\ \n\ Looks up a codec tuple in the Python codec registry and returns\n\ -a tuple of function (or a CodecInfo object)."); +a CodecInfo object."); static PyObject *codec_lookup(PyObject *self, PyObject *args)