Skip to content

Commit eec6d91

Browse files
committed
Add python 3.9
1 parent 1761e10 commit eec6d91

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Python Standard Library List
22
============================
33

4-
This package includes lists of all of the standard libraries for Python 2.6, 2.7, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, and 3.8 along with the code for scraping the official Python docs to get said lists.
4+
This package includes lists of all of the standard libraries for Python 2.6, 2.7, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, and 3.9 along with the code for scraping the official Python docs to get said lists.
55

66
Listing the modules in the standard library? Wait, why on Earth would you care about that?!
77
-------------------------------------------------------------------------------------------

stdlib_list/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from functools32 import lru_cache
1111

1212
long_versions = ["2.6.9", "2.7.9", "3.2.6", "3.3.6", "3.4.3", "3.5", "3.6",
13-
"3.7", "3.8"]
13+
"3.7", "3.8", "3.9"]
1414

1515
short_versions = [".".join(x.split(".")[:2]) for x in long_versions]
1616

stdlib_list/fetch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def fetch_list(version=None):
4646
:param str|None version: A specified version of Python. If not specified, then all
4747
available versions of Python will have their inventory objects fetched
4848
and parsed, and have their module names written to file.
49-
(one of ``"2.6"``, ``"2.7"``, ``"3.2"``, ``"3.3"``, ``"3.4"``, ``"3.5"``, ``"3.6"``, ``"3.7"``, ``"3.8"`` or ``None``)
49+
(one of ``"2.6"``, ``"2.7"``, ``"3.2"``, ``"3.3"``, ``"3.4"``, ``"3.5"``, ``"3.6"``, ``"3.7"``, ``"3.8"``, ``"3.9"`` or ``None``)
5050
5151
"""
5252

0 commit comments

Comments
 (0)