diff options
author | Georg Brandl <georg@python.org> | 2009-03-15 21:32:06 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-03-15 21:32:06 (GMT) |
commit | 4c95e091d6bfb7b2686ebe2d715ae38f65d3eb8b (patch) | |
tree | 7a432684c6f7d3441b670b9ecd28c83504a9fa63 /Modules | |
parent | 1706c644ae437071f3a207f0fe59f9ae4e6404f4 (diff) | |
download | cpython-4c95e091d6bfb7b2686ebe2d715ae38f65d3eb8b.zip cpython-4c95e091d6bfb7b2686ebe2d715ae38f65d3eb8b.tar.gz cpython-4c95e091d6bfb7b2686ebe2d715ae38f65d3eb8b.tar.bz2 |
#5496: fix docstring of lookup().
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_codecsmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_codecsmodule.c b/Modules/_codecsmodule.c index 9a14700..6877238 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) |