From: Georg Brandl Date: Fri, 1 Feb 2008 15:47:37 +0000 (+0000) Subject: Make print docstring consistent with its docs. X-Git-Tag: v3.0a3~123 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cd5da7d51b43474c2870f7f44c1a1048c9c3139d;p=thirdparty%2FPython%2Fcpython.git Make print docstring consistent with its docs. --- diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index a86bb9ed7b7d..964fb320534a 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -1267,7 +1267,7 @@ builtin_print(PyObject *self, PyObject *args, PyObject *kwds) } 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\