[Python-checkins] r80549 - python/trunk/Lib/_pyio.py

benjamin.peterson python-checkins at python.org
Tue Apr 27 23:19:06 CEST 2010


Author: benjamin.peterson
Date: Tue Apr 27 23:19:06 2010
New Revision: 80549

Log:
correct signature

Modified:
   python/trunk/Lib/_pyio.py

Modified: python/trunk/Lib/_pyio.py
==============================================================================
--- python/trunk/Lib/_pyio.py	(original)
+++ python/trunk/Lib/_pyio.py	Tue Apr 27 23:19:06 2010
@@ -229,7 +229,7 @@
     """
     def __get__(self, obj, typ):
         return (
-            "open(file, mode='r', buffering=None, encoding=None, "
+            "open(file, mode='r', buffering=-1, encoding=None, "
                  "errors=None, newline=None, closefd=True)\n\n" +
             open.__doc__)
 


More information about the Python-checkins mailing list