mirror of https://github.com/python/cpython
Doc markup fixes.
This commit is contained in:
parent
8608d26e81
commit
0f5bff24ab
|
@ -723,7 +723,7 @@ find and load modules.
|
||||||
finders stored in :attr:`sys.path_importer_cache`.
|
finders stored in :attr:`sys.path_importer_cache`.
|
||||||
|
|
||||||
.. versionchanged:: 3.4
|
.. versionchanged:: 3.4
|
||||||
Calls objects in :data:sys.path_hooks with the current working directory
|
Calls objects in :data:`sys.path_hooks` with the current working directory
|
||||||
for ``''`` (i.e. the empty string).
|
for ``''`` (i.e. the empty string).
|
||||||
|
|
||||||
|
|
||||||
|
@ -752,7 +752,7 @@ find and load modules.
|
||||||
|
|
||||||
.. versionadded:: 3.3
|
.. versionadded:: 3.3
|
||||||
|
|
||||||
.. versionchange:: 3.4
|
.. versionchanged:: 3.4
|
||||||
The empty string is no longer special-cased to be changed into ``'.'``.
|
The empty string is no longer special-cased to be changed into ``'.'``.
|
||||||
|
|
||||||
.. attribute:: path
|
.. attribute:: path
|
||||||
|
|
|
@ -675,7 +675,7 @@ that may require changes to your code.
|
||||||
:c:func:`PyMem_RawRealloc`, or *NULL* if an error occurred, instead of a
|
:c:func:`PyMem_RawRealloc`, or *NULL* if an error occurred, instead of a
|
||||||
string allocated by :c:func:`PyMem_Malloc` or :c:func:`PyMem_Realloc`.
|
string allocated by :c:func:`PyMem_Malloc` or :c:func:`PyMem_Realloc`.
|
||||||
|
|
||||||
* :cls:`importlib.machinery.PathFinder` now passes on the current working
|
* :class:`importlib.machinery.PathFinder` now passes on the current working
|
||||||
directory to objects in :data:`sys.path_hooks` for the empty string. This
|
directory to objects in :data:`sys.path_hooks` for the empty string. This
|
||||||
results in :data:`sys.path_importer_cache` never containing ``''``, thus
|
results in :data:`sys.path_importer_cache` never containing ``''``, thus
|
||||||
iterating through :data:`sys.path_importer_cache` based on :data:`sys.path`
|
iterating through :data:`sys.path_importer_cache` based on :data:`sys.path`
|
||||||
|
@ -684,5 +684,5 @@ that may require changes to your code.
|
||||||
``-m`` with the interpreter (this does not influence when the path to a file
|
``-m`` with the interpreter (this does not influence when the path to a file
|
||||||
is specified on the command-line).
|
is specified on the command-line).
|
||||||
|
|
||||||
* :cls:`importlib.machinery.FileFinder` no longer special-cases the empty string
|
* :class:`importlib.machinery.FileFinder` no longer special-cases the empty string
|
||||||
to be changed to ``'.'``.
|
to be changed to ``'.'``.
|
||||||
|
|
Loading…
Reference in New Issue