diff options
author | Stéphane Wirtel <stephane@wirtel.be> | 2018-10-06 14:35:53 (GMT) |
---|---|---|
committer | Julien Palard <julien@palard.fr> | 2018-10-06 14:35:53 (GMT) |
commit | 683281f536981da395575b5a07d6761118259fd2 (patch) | |
tree | a74a3846a6b688094f8faed929d179de1a35e0a0 /Doc/whatsnew/3.3.rst | |
parent | ae62f015240c9162773341a9922794e6b960779d (diff) | |
download | cpython-683281f536981da395575b5a07d6761118259fd2.zip cpython-683281f536981da395575b5a07d6761118259fd2.tar.gz cpython-683281f536981da395575b5a07d6761118259fd2.tar.bz2 |
bpo-34906: Doc: Fix typos (2) (GH-9735)
Fix typos
Diffstat (limited to 'Doc/whatsnew/3.3.rst')
-rw-r--r-- | Doc/whatsnew/3.3.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index 0575ac9..8862b37 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -303,7 +303,7 @@ The launcher can also be used explicitly from the command line as the ``py`` application. Running ``py`` follows the same version selection rules as implicitly launching scripts, but a more specific version can be selected by passing appropriate arguments (such as ``-3`` to request Python 3 when -Python 2 is also installed, or ``-2.6`` to specifclly request an earlier +Python 2 is also installed, or ``-2.6`` to specifically request an earlier Python version when a more recent version is installed). In addition to the launcher, the Windows installer now includes an @@ -2386,7 +2386,7 @@ Porting Python code finder, you will need to remove keys paired with values of ``None`` **and** :class:`imp.NullImporter` to be backwards-compatible. This will lead to extra overhead on older versions of Python that re-insert ``None`` into - :attr:`sys.path_importer_cache` where it repesents the use of implicit + :attr:`sys.path_importer_cache` where it represents the use of implicit finders, but semantically it should not change anything. * :class:`importlib.abc.Finder` no longer specifies a `find_module()` abstract |