Commit bba4b397 authored by stepshal's avatar stepshal

Fix misspellings

parent ebf30b69
...@@ -129,7 +129,7 @@ v20.8.0 ...@@ -129,7 +129,7 @@ v20.8.0
v20.7.0 v20.7.0
------- -------
* Refactored extra enviroment marker processing * Refactored extra environment marker processing
in WorkingSet. in WorkingSet.
* Issue #533: Fixed intermittent test failures. * Issue #533: Fixed intermittent test failures.
* Issue #536: In msvc9_support, trap additional exceptions * Issue #536: In msvc9_support, trap additional exceptions
...@@ -216,7 +216,7 @@ v20.6.0 ...@@ -216,7 +216,7 @@ v20.6.0
20.2.1 20.2.1
------ ------
* Issue #499: Restore compatiblity for legacy versions * Issue #499: Restore compatibility for legacy versions
by bumping to packaging 16.4. by bumping to packaging 16.4.
20.2 20.2
......
...@@ -577,7 +577,7 @@ activated or deactivated. ...@@ -577,7 +577,7 @@ activated or deactivated.
As a result, if you are using EasyInstall to upgrade an existing package, or As a result, if you are using EasyInstall to upgrade an existing package, or
to install a package with the same name as an existing package, EasyInstall to install a package with the same name as an existing package, EasyInstall
will warn you of the conflict. (This is an improvement over ``setup.py will warn you of the conflict. (This is an improvement over ``setup.py
install``, becuase the ``distutils`` just install new packages on top of old install``, because the ``distutils`` just install new packages on top of old
ones, possibly combining two unrelated packages or leaving behind modules that ones, possibly combining two unrelated packages or leaving behind modules that
have been deleted in the newer version of the package.) have been deleted in the newer version of the package.)
...@@ -606,7 +606,7 @@ can be safely installed as a zipfile, and then acts on its analysis. (Previous ...@@ -606,7 +606,7 @@ can be safely installed as a zipfile, and then acts on its analysis. (Previous
versions would not install a package as a zipfile unless you used the versions would not install a package as a zipfile unless you used the
``--zip-ok`` option.) ``--zip-ok`` option.)
The current analysis approach is fairly conservative; it currenly looks for: The current analysis approach is fairly conservative; it currently looks for:
* Any use of the ``__file__`` or ``__path__`` variables (which should be * Any use of the ``__file__`` or ``__path__`` variables (which should be
replaced with ``pkg_resources`` API calls) replaced with ``pkg_resources`` API calls)
......
...@@ -1367,7 +1367,7 @@ def get_default_cache(): ...@@ -1367,7 +1367,7 @@ def get_default_cache():
return os.path.join(dirname, 'Python-Eggs') return os.path.join(dirname, 'Python-Eggs')
else: else:
raise RuntimeError( raise RuntimeError(
"Please set the PYTHON_EGG_CACHE enviroment variable" "Please set the PYTHON_EGG_CACHE environment variable"
) )
def safe_name(name): def safe_name(name):
......
...@@ -198,7 +198,7 @@ class _IndividualSpecifier(BaseSpecifier): ...@@ -198,7 +198,7 @@ class _IndividualSpecifier(BaseSpecifier):
(prereleases or self.prereleases)): (prereleases or self.prereleases)):
found_prereleases.append(version) found_prereleases.append(version)
# Either this is not a prerelease, or we should have been # Either this is not a prerelease, or we should have been
# accepting prereleases from the begining. # accepting prereleases from the beginning.
else: else:
yielded = True yielded = True
yield version yield version
......
...@@ -1112,7 +1112,7 @@ class ParserElement(object): ...@@ -1112,7 +1112,7 @@ class ParserElement(object):
(see L{I{parseWithTabs}<parseWithTabs>}) (see L{I{parseWithTabs}<parseWithTabs>})
- define your parse action using the full C{(s,loc,toks)} signature, and - define your parse action using the full C{(s,loc,toks)} signature, and
reference the input string using the parse action's C{s} argument reference the input string using the parse action's C{s} argument
- explictly expand the tabs in your input string before calling - explicitly expand the tabs in your input string before calling
C{parseString} C{parseString}
""" """
ParserElement.resetCache() ParserElement.resetCache()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment