From 4c95e091d6bfb7b2686ebe2d715ae38f65d3eb8b Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 15 Mar 2009 21:32:06 +0000 Subject: [PATCH] #5496: fix docstring of lookup(). --- Modules/_codecsmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_codecsmodule.c b/Modules/_codecsmodule.c index 9a1470021e2..68772380362 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)