commit | 4c95e091d6bfb7b2686ebe2d715ae38f65d3eb8b | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Sun Mar 15 21:32:06 2009 +0000 |
committer | Georg Brandl <georg@python.org> | Sun Mar 15 21:32:06 2009 +0000 |
tree | 7a432684c6f7d3441b670b9ecd28c83504a9fa63 | |
parent | 1706c644ae437071f3a207f0fe59f9ae4e6404f4 [diff] [blame] |
#5496: fix docstring of lookup().
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 @@ "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)