diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2013-02-17 16:56:28 +0200 |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2013-02-17 16:56:28 +0200 |
commit | 597ba7e351eac57b6e7adc34b154285c5cc6fdc0 (patch) | |
tree | 7f7aac896e4e199709bba879398f069f0893f898 | |
parent | 1014b6c21cae26979d17adb6a282392aed88d0d3 (diff) | |
parent | a60de4f14f7349cd54e8020cdfafeb3c89561587 (diff) | |
download | cpython-git-597ba7e351eac57b6e7adc34b154285c5cc6fdc0.tar.gz |
Issue #17215: Fix documentation misprints (patch by July Tikhonov)
-rw-r--r-- | Doc/library/importlib.rst | 2 | ||||
-rw-r--r-- | Doc/library/io.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst index ee9045b446..0e1a654e7f 100644 --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -326,7 +326,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 diff --git a/Doc/library/io.rst b/Doc/library/io.rst index 98e03585c4..d30c5fde70 100644 --- a/Doc/library/io.rst +++ b/Doc/library/io.rst @@ -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. |