diff options
author | Jeroen Ruigrok van der Werven <asmodai@in-nomine.org> | 2010-07-13 15:08:30 (GMT) |
---|---|---|
committer | Jeroen Ruigrok van der Werven <asmodai@in-nomine.org> | 2010-07-13 15:08:30 (GMT) |
commit | 320477e4db8fb2484d920db2c888eab46eef7692 (patch) | |
tree | bc8ad864a3d0bb36c9acedf36efc79beda9e80c8 /Doc/library/os.rst | |
parent | 22cc6d5ba3af728615b764ccabf4c0d4ae92f282 (diff) | |
download | cpython-320477e4db8fb2484d920db2c888eab46eef7692.zip cpython-320477e4db8fb2484d920db2c888eab46eef7692.tar.gz cpython-320477e4db8fb2484d920db2c888eab46eef7692.tar.bz2 |
Merged revisions 82849 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r82849 | jeroen.ruigrok | 2010-07-13 16:47:01 +0200 (di, 13 jul 2010) | 2 lines
Fix documentation typo: wprite() -> write().
........
Diffstat (limited to 'Doc/library/os.rst')
-rw-r--r-- | Doc/library/os.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 959c18c..34f23f1 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -756,7 +756,7 @@ as internal buffering of data. This function is intended for low-level I/O. For normal usage, use the built-in function :func:`open`, which returns a "file object" with - :meth:`~file.read` and :meth:`~file.wprite` methods (and many more). To + :meth:`~file.read` and :meth:`~file.write` methods (and many more). To wrap a file descriptor in a "file object", use :func:`fdopen`. |