diff options
author | Éric Araujo <merwok@netwok.org> | 2011-06-01 14:41:11 +0200 |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-06-01 14:41:11 +0200 |
commit | 25d5737f1583fc3844fd27f37cacb673937f7af9 (patch) | |
tree | c0c2f44a107d3649cacce6719211bf2c6074508d /Lib/packaging/pypi/simple.py | |
parent | 1256a6864e4dc1728a6d7034d3f3dd322f87b02d (diff) | |
download | cpython-git-25d5737f1583fc3844fd27f37cacb673937f7af9.tar.gz |
Fix typos in class names
Diffstat (limited to 'Lib/packaging/pypi/simple.py')
-rw-r--r-- | Lib/packaging/pypi/simple.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/packaging/pypi/simple.py b/Lib/packaging/pypi/simple.py index 983d4773de..c492179874 100644 --- a/Lib/packaging/pypi/simple.py +++ b/Lib/packaging/pypi/simple.py @@ -1,6 +1,6 @@ """Spider using the screen-scraping "simple" PyPI API. -This module contains the class SimpleIndexCrawler, a simple spider that +This module contains the class Crawler, a simple spider that can be used to find and retrieve distributions from a project index (like the Python Package Index), using its so-called simple API (see reference implementation available at http://pypi.python.org/simple/). @@ -178,7 +178,7 @@ class Crawler(BaseClient): def get_releases(self, requirements, prefer_final=None, force_update=False): - """Search for releases and return a ReleaseList object containing + """Search for releases and return a ReleasesList object containing the results. """ predicate = get_version_predicate(requirements) |