]> granicus.if.org Git - python/commitdiff
Issue #17215: Fix documentation misprints (patch by July Tikhonov)
authorAndrew Svetlov <andrew.svetlov@gmail.com>
Sun, 17 Feb 2013 14:55:58 +0000 (16:55 +0200)
committerAndrew Svetlov <andrew.svetlov@gmail.com>
Sun, 17 Feb 2013 14:55:58 +0000 (16:55 +0200)
Doc/library/importlib.rst
Doc/library/io.rst

index 083656ebf252ce13503b876181bd355492d345a7..9120671a0369209409d32eb9e8386eaddf0c255f 100644 (file)
@@ -328,7 +328,7 @@ ABC hierarchy::
 .. 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
index 98e03585c46ea7c3ffd33846b753f0ce627c4eef..d30c5fde7095a02cc075eebc5b91a522c2f1e986 100644 (file)
@@ -110,7 +110,7 @@ High-level Module Interface
    :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.