[Python-checkins] cpython (3.3): Issue #17215: Fix documentation misprints (patch by July Tikhonov)

andrew.svetlov python-checkins at python.org
Sun Feb 17 15:56:40 CET 2013


http://hg.python.org/cpython/rev/8c7719b06ba6
changeset:   82241:8c7719b06ba6
branch:      3.3
parent:      82239:4ab91904f232
user:        Andrew Svetlov <andrew.svetlov at gmail.com>
date:        Sun Feb 17 16:55:58 2013 +0200
summary:
  Issue #17215: Fix documentation misprints (patch by July Tikhonov)

files:
  Doc/library/importlib.rst |  2 +-
  Doc/library/io.rst        |  2 +-
  2 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst
--- a/Doc/library/importlib.rst
+++ b/Doc/library/importlib.rst
@@ -328,7 +328,7 @@
 .. class:: FileLoader(fullname, path)
 
    An abstract base class which inherits from :class:`ResourceLoader` and
-   :class:`ExecutionLoader`, providing concreate implementations of
+   :class:`ExecutionLoader`, providing concrete implementations of
    :meth:`ResourceLoader.get_data` and :meth:`ExecutionLoader.get_filename`.
 
    The *fullname* argument is a fully resolved name of the module the loader is
diff --git a/Doc/library/io.rst b/Doc/library/io.rst
--- a/Doc/library/io.rst
+++ b/Doc/library/io.rst
@@ -110,7 +110,7 @@
    :func:`os.stat`) if possible.
 
 
-.. function:: open(file, mode='r', buffering=-1, encoding=None, errors=None, newline=None, closefd=True)
+.. function:: open(file, mode='r', buffering=-1, encoding=None, errors=None, newline=None, closefd=True, opener=None)
 
    This is an alias for the builtin :func:`open` function.
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list