[Python-checkins] r70386 - python/trunk/Modules/_codecsmodule.c

georg.brandl python-checkins at python.org
Sun Mar 15 22:32:07 CET 2009


Author: georg.brandl
Date: Sun Mar 15 22:32:06 2009
New Revision: 70386

Log:
#5496: fix docstring of lookup().

Modified:
   python/trunk/Modules/_codecsmodule.c

Modified: python/trunk/Modules/_codecsmodule.c
==============================================================================
--- python/trunk/Modules/_codecsmodule.c	(original)
+++ python/trunk/Modules/_codecsmodule.c	Sun Mar 15 22:32:06 2009
@@ -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)


More information about the Python-checkins mailing list