Skip to content

Commit c4ccf8e

Browse files
committed
Run scripts/mkstdlibs.py with Sphinx 6
1 parent 92c8274 commit c4ccf8e

File tree

2 files changed

+223
-0
lines changed

2 files changed

+223
-0
lines changed

isort/stdlibs/py311.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
stdlib = {
99
"_ast",
1010
"_thread",
11+
"_tkinter",
1112
"abc",
1213
"aifc",
1314
"argparse",
@@ -153,6 +154,7 @@
153154
"shutil",
154155
"signal",
155156
"site",
157+
"sitecustomize",
156158
"smtpd",
157159
"smtplib",
158160
"sndhdr",
@@ -201,6 +203,7 @@
201203
"unicodedata",
202204
"unittest",
203205
"urllib",
206+
"usercustomize",
204207
"uu",
205208
"uuid",
206209
"venv",

isort/stdlibs/py312.py

Lines changed: 220 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,220 @@
1+
"""
2+
File contains the standard library of Python 3.12.
3+
4+
DO NOT EDIT. If the standard library changes, a new list should be created
5+
using the mkstdlibs.py script.
6+
"""
7+
8+
stdlib = {
9+
"_ast",
10+
"_thread",
11+
"_tkinter",
12+
"abc",
13+
"aifc",
14+
"argparse",
15+
"array",
16+
"ast",
17+
"asyncio",
18+
"atexit",
19+
"audioop",
20+
"base64",
21+
"bdb",
22+
"binascii",
23+
"bisect",
24+
"builtins",
25+
"bz2",
26+
"cProfile",
27+
"calendar",
28+
"cgi",
29+
"cgitb",
30+
"chunk",
31+
"cmath",
32+
"cmd",
33+
"code",
34+
"codecs",
35+
"codeop",
36+
"collections",
37+
"colorsys",
38+
"compileall",
39+
"concurrent",
40+
"configparser",
41+
"contextlib",
42+
"contextvars",
43+
"copy",
44+
"copyreg",
45+
"crypt",
46+
"csv",
47+
"ctypes",
48+
"curses",
49+
"dataclasses",
50+
"datetime",
51+
"dbm",
52+
"decimal",
53+
"difflib",
54+
"dis",
55+
"doctest",
56+
"email",
57+
"encodings",
58+
"ensurepip",
59+
"enum",
60+
"errno",
61+
"faulthandler",
62+
"fcntl",
63+
"filecmp",
64+
"fileinput",
65+
"fnmatch",
66+
"fractions",
67+
"ftplib",
68+
"functools",
69+
"gc",
70+
"getopt",
71+
"getpass",
72+
"gettext",
73+
"glob",
74+
"graphlib",
75+
"grp",
76+
"gzip",
77+
"hashlib",
78+
"heapq",
79+
"hmac",
80+
"html",
81+
"http",
82+
"idlelib",
83+
"imaplib",
84+
"imghdr",
85+
"importlib",
86+
"inspect",
87+
"io",
88+
"ipaddress",
89+
"itertools",
90+
"json",
91+
"keyword",
92+
"lib2to3",
93+
"linecache",
94+
"locale",
95+
"logging",
96+
"lzma",
97+
"mailbox",
98+
"mailcap",
99+
"marshal",
100+
"math",
101+
"mimetypes",
102+
"mmap",
103+
"modulefinder",
104+
"msilib",
105+
"msvcrt",
106+
"multiprocessing",
107+
"netrc",
108+
"nis",
109+
"nntplib",
110+
"ntpath",
111+
"numbers",
112+
"operator",
113+
"optparse",
114+
"os",
115+
"ossaudiodev",
116+
"pathlib",
117+
"pdb",
118+
"pickle",
119+
"pickletools",
120+
"pipes",
121+
"pkgutil",
122+
"platform",
123+
"plistlib",
124+
"poplib",
125+
"posix",
126+
"posixpath",
127+
"pprint",
128+
"profile",
129+
"pstats",
130+
"pty",
131+
"pwd",
132+
"py_compile",
133+
"pyclbr",
134+
"pydoc",
135+
"queue",
136+
"quopri",
137+
"random",
138+
"re",
139+
"readline",
140+
"reprlib",
141+
"resource",
142+
"rlcompleter",
143+
"runpy",
144+
"sched",
145+
"secrets",
146+
"select",
147+
"selectors",
148+
"shelve",
149+
"shlex",
150+
"shutil",
151+
"signal",
152+
"site",
153+
"sitecustomize",
154+
"smtplib",
155+
"sndhdr",
156+
"socket",
157+
"socketserver",
158+
"spwd",
159+
"sqlite3",
160+
"sre",
161+
"sre_compile",
162+
"sre_constants",
163+
"sre_parse",
164+
"ssl",
165+
"stat",
166+
"statistics",
167+
"string",
168+
"stringprep",
169+
"struct",
170+
"subprocess",
171+
"sunau",
172+
"symtable",
173+
"sys",
174+
"sysconfig",
175+
"syslog",
176+
"tabnanny",
177+
"tarfile",
178+
"telnetlib",
179+
"tempfile",
180+
"termios",
181+
"test",
182+
"textwrap",
183+
"threading",
184+
"time",
185+
"timeit",
186+
"tkinter",
187+
"token",
188+
"tokenize",
189+
"tomllib",
190+
"trace",
191+
"traceback",
192+
"tracemalloc",
193+
"tty",
194+
"turtle",
195+
"turtledemo",
196+
"types",
197+
"typing",
198+
"unicodedata",
199+
"unittest",
200+
"urllib",
201+
"usercustomize",
202+
"uu",
203+
"uuid",
204+
"venv",
205+
"warnings",
206+
"wave",
207+
"weakref",
208+
"webbrowser",
209+
"winreg",
210+
"winsound",
211+
"wsgiref",
212+
"xdrlib",
213+
"xml",
214+
"xmlrpc",
215+
"zipapp",
216+
"zipfile",
217+
"zipimport",
218+
"zlib",
219+
"zoneinfo",
220+
}

0 commit comments

Comments
 (0)