[Python-checkins] r59509 - peps/trunk/pep-3116.txt

brett.cannon python-checkins at python.org
Fri Dec 14 23:51:58 CET 2007


Author: brett.cannon
Date: Fri Dec 14 23:51:58 2007
New Revision: 59509

Modified:
   peps/trunk/pep-3116.txt
Log:
Fix what appeared to be misused markup and one warning on markup.


Modified: peps/trunk/pep-3116.txt
==============================================================================
--- peps/trunk/pep-3116.txt	(original)
+++ peps/trunk/pep-3116.txt	Fri Dec 14 23:51:58 2007
@@ -339,8 +339,7 @@
 ``BufferedIOBase`` object.  Its initializer has the following
 signature:
 
-    ``.__init__(self, buffer, encoding=None, errors=None, newline=None,
-                line_buffering=False)``
+    ``.__init__(self, buffer, encoding=None, errors=None, newline=None, line_buffering=False)``
 
         ``buffer`` is a reference to the ``BufferedIOBase`` object to
         be wrapped with the ``TextIOWrapper``.
@@ -393,8 +392,8 @@
 
         * If translation is enabled, it happens regardless of which
           method is called for reading or writing.  For example,
-          {{{f.read()}}} will always produce the same result as
-          {{{''.join(f.readlines())}}}.
+          ``f.read()`` will always produce the same result as
+          ``''.join(f.readlines())``.
 
         * If universal newlines without translation are requested on
           input (i.e. ``newline=''``), if a system read operation


More information about the Python-checkins mailing list