mirror of
https://github.com/python/cpython.git
synced 2025-09-21 16:10:33 +00:00
Fix typos in class names
This commit is contained in:
parent
1256a6864e
commit
25d5737f15
2 changed files with 6 additions and 6 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue