py312.py 3.3 KB

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