-
-
Notifications
You must be signed in to change notification settings - Fork 583
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2175 from hugovk/add-3.12
Add support for Python 3.12
- Loading branch information
Showing
8 changed files
with
248 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
from . import all as _all | ||
from . import py2, py3, py27, py36, py37, py38, py39, py310, py311 | ||
from . import py2, py3, py27, py36, py37, py38, py39, py310, py311, py312 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
from . import py36, py37, py38, py39, py310, py311 | ||
from . import py36, py37, py38, py39, py310, py311, py312 | ||
|
||
stdlib = py36.stdlib | py37.stdlib | py38.stdlib | py39.stdlib | py310.stdlib | py311.stdlib | ||
stdlib = ( | ||
py36.stdlib | ||
| py37.stdlib | ||
| py38.stdlib | ||
| py39.stdlib | ||
| py310.stdlib | ||
| py311.stdlib | ||
| py312.stdlib | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,220 @@ | ||
""" | ||
File contains the standard library of Python 3.12. | ||
DO NOT EDIT. If the standard library changes, a new list should be created | ||
using the mkstdlibs.py script. | ||
""" | ||
|
||
stdlib = { | ||
"_ast", | ||
"_thread", | ||
"_tkinter", | ||
"abc", | ||
"aifc", | ||
"argparse", | ||
"array", | ||
"ast", | ||
"asyncio", | ||
"atexit", | ||
"audioop", | ||
"base64", | ||
"bdb", | ||
"binascii", | ||
"bisect", | ||
"builtins", | ||
"bz2", | ||
"cProfile", | ||
"calendar", | ||
"cgi", | ||
"cgitb", | ||
"chunk", | ||
"cmath", | ||
"cmd", | ||
"code", | ||
"codecs", | ||
"codeop", | ||
"collections", | ||
"colorsys", | ||
"compileall", | ||
"concurrent", | ||
"configparser", | ||
"contextlib", | ||
"contextvars", | ||
"copy", | ||
"copyreg", | ||
"crypt", | ||
"csv", | ||
"ctypes", | ||
"curses", | ||
"dataclasses", | ||
"datetime", | ||
"dbm", | ||
"decimal", | ||
"difflib", | ||
"dis", | ||
"doctest", | ||
"email", | ||
"encodings", | ||
"ensurepip", | ||
"enum", | ||
"errno", | ||
"faulthandler", | ||
"fcntl", | ||
"filecmp", | ||
"fileinput", | ||
"fnmatch", | ||
"fractions", | ||
"ftplib", | ||
"functools", | ||
"gc", | ||
"getopt", | ||
"getpass", | ||
"gettext", | ||
"glob", | ||
"graphlib", | ||
"grp", | ||
"gzip", | ||
"hashlib", | ||
"heapq", | ||
"hmac", | ||
"html", | ||
"http", | ||
"idlelib", | ||
"imaplib", | ||
"imghdr", | ||
"importlib", | ||
"inspect", | ||
"io", | ||
"ipaddress", | ||
"itertools", | ||
"json", | ||
"keyword", | ||
"lib2to3", | ||
"linecache", | ||
"locale", | ||
"logging", | ||
"lzma", | ||
"mailbox", | ||
"mailcap", | ||
"marshal", | ||
"math", | ||
"mimetypes", | ||
"mmap", | ||
"modulefinder", | ||
"msilib", | ||
"msvcrt", | ||
"multiprocessing", | ||
"netrc", | ||
"nis", | ||
"nntplib", | ||
"ntpath", | ||
"numbers", | ||
"operator", | ||
"optparse", | ||
"os", | ||
"ossaudiodev", | ||
"pathlib", | ||
"pdb", | ||
"pickle", | ||
"pickletools", | ||
"pipes", | ||
"pkgutil", | ||
"platform", | ||
"plistlib", | ||
"poplib", | ||
"posix", | ||
"posixpath", | ||
"pprint", | ||
"profile", | ||
"pstats", | ||
"pty", | ||
"pwd", | ||
"py_compile", | ||
"pyclbr", | ||
"pydoc", | ||
"queue", | ||
"quopri", | ||
"random", | ||
"re", | ||
"readline", | ||
"reprlib", | ||
"resource", | ||
"rlcompleter", | ||
"runpy", | ||
"sched", | ||
"secrets", | ||
"select", | ||
"selectors", | ||
"shelve", | ||
"shlex", | ||
"shutil", | ||
"signal", | ||
"site", | ||
"sitecustomize", | ||
"smtplib", | ||
"sndhdr", | ||
"socket", | ||
"socketserver", | ||
"spwd", | ||
"sqlite3", | ||
"sre", | ||
"sre_compile", | ||
"sre_constants", | ||
"sre_parse", | ||
"ssl", | ||
"stat", | ||
"statistics", | ||
"string", | ||
"stringprep", | ||
"struct", | ||
"subprocess", | ||
"sunau", | ||
"symtable", | ||
"sys", | ||
"sysconfig", | ||
"syslog", | ||
"tabnanny", | ||
"tarfile", | ||
"telnetlib", | ||
"tempfile", | ||
"termios", | ||
"test", | ||
"textwrap", | ||
"threading", | ||
"time", | ||
"timeit", | ||
"tkinter", | ||
"token", | ||
"tokenize", | ||
"tomllib", | ||
"trace", | ||
"traceback", | ||
"tracemalloc", | ||
"tty", | ||
"turtle", | ||
"turtledemo", | ||
"types", | ||
"typing", | ||
"unicodedata", | ||
"unittest", | ||
"urllib", | ||
"usercustomize", | ||
"uu", | ||
"uuid", | ||
"venv", | ||
"warnings", | ||
"wave", | ||
"weakref", | ||
"webbrowser", | ||
"winreg", | ||
"winsound", | ||
"wsgiref", | ||
"xdrlib", | ||
"xml", | ||
"xmlrpc", | ||
"zipapp", | ||
"zipfile", | ||
"zipimport", | ||
"zlib", | ||
"zoneinfo", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters