]> granicus.if.org Git - python/commitdiff
Use correct markup.
authorGeorg Brandl <georg@python.org>
Tue, 30 Oct 2007 17:51:18 +0000 (17:51 +0000)
committerGeorg Brandl <georg@python.org>
Tue, 30 Oct 2007 17:51:18 +0000 (17:51 +0000)
Doc/using/cmdline.rst

index efe2af69869b041f9a6ac00df565c965d8b915ab..8a4a9b7e5b70da065fcfe65c5063a38319d67094 100644 (file)
@@ -217,10 +217,10 @@ Miscellaneous options
    Force stdin, stdout and stderr to be totally unbuffered.  On systems where it
    matters, also put stdin, stdout and stderr in binary mode.
    
-   Note that there is internal buffering in :func:`file.readlines` and
+   Note that there is internal buffering in :meth:`file.readlines` and
    :ref:`bltin-file-objects` (``for line in sys.stdin``) which is not influenced
    by this option.  To work around this, you will want to use
-   :func:`file.readline` inside a ``while 1:`` loop.
+   :meth:`file.readline` inside a ``while 1:`` loop.
 
    See also :envvar:`PYTHONUNBUFFERED`.