Commit cd5da7d5 authored by Georg Brandl's avatar Georg Brandl

Make print docstring consistent with its docs.

parent f6945183
...@@ -1267,7 +1267,7 @@ builtin_print(PyObject *self, PyObject *args, PyObject *kwds) ...@@ -1267,7 +1267,7 @@ builtin_print(PyObject *self, PyObject *args, PyObject *kwds)
} }
PyDoc_STRVAR(print_doc, PyDoc_STRVAR(print_doc,
"print(value, ..., file=None, sep=' ', end='\\n')\n\ "print(value, ..., sep=' ', end='\\n', file=sys.stdout)\n\
\n\ \n\
Prints the values to a stream, or to sys.stdout by default.\n\ Prints the values to a stream, or to sys.stdout by default.\n\
Optional keyword arguments:\n\ Optional keyword arguments:\n\
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment