Convert all print statements in the docs.
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst
index c2a0a6e..6f1aaff 100644
--- a/Doc/library/sys.rst
+++ b/Doc/library/sys.rst
@@ -495,7 +495,7 @@
File objects corresponding to the interpreter's standard input, output and error
streams. ``stdin`` is used for all interpreter input except for scripts.
- ``stdout`` is used for the output of :keyword:`print` and expression statements.
+ ``stdout`` is used for the output of :func:`print` and expression statements.
The interpreter's own prompts and (almost all of) its error messages go to
``stderr``. ``stdout`` and ``stderr`` needn't be built-in file objects: any
object is acceptable as long as it has a :meth:`write` method that takes a