py313.py 3.0 KB

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