Kaydet (Commit) c3be11aa authored tarafından Benjamin Peterson's avatar Benjamin Peterson

Merged revisions 80548-80549 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80548 | benjamin.peterson | 2010-04-27 16:18:30 -0500 (Tue, 27 Apr 2010) | 1 line

  condense import
........
  r80549 | benjamin.peterson | 2010-04-27 16:19:06 -0500 (Tue, 27 Apr 2010) | 1 line

  correct signature
........
üst ad142d30
...@@ -13,8 +13,7 @@ except ImportError: ...@@ -13,8 +13,7 @@ except ImportError:
from _dummy_thread import allocate_lock as Lock from _dummy_thread import allocate_lock as Lock
import io import io
from io import __all__ from io import (__all__, SEEK_SET, SEEK_CUR, SEEK_END)
from io import SEEK_SET, SEEK_CUR, SEEK_END
# open() uses st_blksize whenever we can # open() uses st_blksize whenever we can
DEFAULT_BUFFER_SIZE = 8 * 1024 # bytes DEFAULT_BUFFER_SIZE = 8 * 1024 # bytes
...@@ -226,7 +225,7 @@ class DocDescriptor: ...@@ -226,7 +225,7 @@ class DocDescriptor:
""" """
def __get__(self, obj, typ): def __get__(self, obj, typ):
return ( 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" + "errors=None, newline=None, closefd=True)\n\n" +
open.__doc__) open.__doc__)
......
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