From cd5da7d51b43474c2870f7f44c1a1048c9c3139d Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 1 Feb 2008 15:47:37 +0000 Subject: Make print docstring consistent with its docs. --- Python/bltinmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index a86bb9e..964fb32 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\ -- cgit v0.12