[Python-checkins] r42805 - python/trunk/Python/sysmodule.c

brett.cannon python-checkins at python.org
Thu Mar 2 23:07:45 CET 2006


Author: brett.cannon
Date: Thu Mar  2 23:07:40 2006
New Revision: 42805

Modified:
   python/trunk/Python/sysmodule.c
Log:
Fix minor docstring typo.


Modified: python/trunk/Python/sysmodule.c
==============================================================================
--- python/trunk/Python/sysmodule.c	(original)
+++ python/trunk/Python/sysmodule.c	Thu Mar  2 23:07:40 2006
@@ -125,7 +125,7 @@
 PyDoc_STRVAR(displayhook_doc,
 "displayhook(object) -> None\n"
 "\n"
-"Print an object to sys.stdout and also save it in __builtin__._\n"
+"Print an object to sys.stdout and also save it in __builtin__.\n"
 );
 
 static PyObject *


More information about the Python-checkins mailing list