[Python-checkins] r82852 - in python/branches/release27-maint: Doc/library/os.rst

jeroen.ruigrok python-checkins at python.org
Tue Jul 13 17:08:30 CEST 2010


Author: jeroen.ruigrok
Date: Tue Jul 13 17:08:30 2010
New Revision: 82852

Log:
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().
........


Modified:
   python/branches/release27-maint/   (props changed)
   python/branches/release27-maint/Doc/library/os.rst

Modified: python/branches/release27-maint/Doc/library/os.rst
==============================================================================
--- python/branches/release27-maint/Doc/library/os.rst	(original)
+++ python/branches/release27-maint/Doc/library/os.rst	Tue Jul 13 17:08:30 2010
@@ -756,7 +756,7 @@
 
       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`.
 
 


More information about the Python-checkins mailing list