[Python-3000-checkins] r60495 - python/branches/py3k/Python/bltinmodule.c

georg.brandl python-3000-checkins at python.org
Fri Feb 1 16:47:37 CET 2008


Author: georg.brandl
Date: Fri Feb  1 16:47:37 2008
New Revision: 60495

Modified:
   python/branches/py3k/Python/bltinmodule.c
Log:
Make print docstring consistent with its docs.


Modified: python/branches/py3k/Python/bltinmodule.c
==============================================================================
--- python/branches/py3k/Python/bltinmodule.c	(original)
+++ python/branches/py3k/Python/bltinmodule.c	Fri Feb  1 16:47:37 2008
@@ -1267,7 +1267,7 @@
 }
 
 PyDoc_STRVAR(print_doc,
-"print(value, ..., file=None, sep=' ', end='\\n')\n\
+"print(value, ..., sep=' ', end='\\n', file=sys.stdout)\n\
 \n\
 Prints the values to a stream, or to sys.stdout by default.\n\
 Optional keyword arguments:\n\


More information about the Python-3000-checkins mailing list