summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com>2015-03-30 03:40:43 +0200
committerArfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com>2015-03-30 03:40:43 +0200
commita0ca443bdeb2413e03ecbd6d0f3a21d7951eecd4 (patch)
treee4b438cfff036f0881e38b1c3fc621f2a003ab4b
parent2964700fa6b808b19f0638d16e700f7ec37d3933 (diff)
downloadpython-setuptools-bitbucket-a0ca443bdeb2413e03ecbd6d0f3a21d7951eecd4.tar.gz
Fix some typos.
-rw-r--r--pkg_resources/__init__.py4
-rw-r--r--pkg_resources/_vendor/packaging/specifiers.py2
-rwxr-xr-xsetuptools/command/easy_install.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/pkg_resources/__init__.py b/pkg_resources/__init__.py
index a8a16942..f033c10e 100644
--- a/pkg_resources/__init__.py
+++ b/pkg_resources/__init__.py
@@ -2528,7 +2528,7 @@ class Distribution(object):
if not is_legacy:
return
- # While an empty version is techincally a legacy version and
+ # While an empty version is technically a legacy version and
# is not a valid PEP 440 version, it's also unlikely to
# actually come from someone and instead it is more likely that
# it comes from setuptools attempting to parse a filename and
@@ -2542,7 +2542,7 @@ class Distribution(object):
non PEP 440,
version. You may find odd behavior and sort order.
In particular it will be sorted as less than 0.0. It
- is recommend to migrate to PEP 440 compatible
+ is recommended to migrate to PEP 440 compatible
versions.
""").strip().replace('\n', ' ')
diff --git a/pkg_resources/_vendor/packaging/specifiers.py b/pkg_resources/_vendor/packaging/specifiers.py
index 9ad0a635..77516cf4 100644
--- a/pkg_resources/_vendor/packaging/specifiers.py
+++ b/pkg_resources/_vendor/packaging/specifiers.py
@@ -502,7 +502,7 @@ class Specifier(_IndividualSpecifier):
return False
# Ensure that we do not allow a local version of the version mentioned
- # in the specifier, which is techincally greater than, to match.
+ # in the specifier, which is technically greater than, to match.
if prospective.local is not None:
if Version(prospective.base_version) == Version(spec.base_version):
return False
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py
index f2bfa68d..74803b59 100755
--- a/setuptools/command/easy_install.py
+++ b/setuptools/command/easy_install.py
@@ -152,7 +152,7 @@ class easy_install(Command):
create_index = PackageIndex
def initialize_options(self):
- # the --user option seemst to be an opt-in one,
+ # the --user option seems to be an opt-in one,
# so the default should be False.
self.user = 0
self.zip_ok = self.local_snapshots_ok = None