py314.py 3.1 KB

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