py310.py 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. """
  2. File contains the standard library of Python 3.10.
  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. "_thread",
  9. "abc",
  10. "aifc",
  11. "argparse",
  12. "array",
  13. "ast",
  14. "asynchat",
  15. "asyncio",
  16. "asyncore",
  17. "atexit",
  18. "audioop",
  19. "base64",
  20. "bdb",
  21. "binascii",
  22. "binhex",
  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. "distutils",
  56. "doctest",
  57. "email",
  58. "encodings",
  59. "ensurepip",
  60. "enum",
  61. "errno",
  62. "faulthandler",
  63. "fcntl",
  64. "filecmp",
  65. "fileinput",
  66. "fnmatch",
  67. "fractions",
  68. "ftplib",
  69. "functools",
  70. "gc",
  71. "getopt",
  72. "getpass",
  73. "gettext",
  74. "glob",
  75. "graphlib",
  76. "grp",
  77. "gzip",
  78. "hashlib",
  79. "heapq",
  80. "hmac",
  81. "html",
  82. "http",
  83. "idlelib",
  84. "imaplib",
  85. "imghdr",
  86. "imp",
  87. "importlib",
  88. "inspect",
  89. "io",
  90. "ipaddress",
  91. "itertools",
  92. "json",
  93. "keyword",
  94. "lib2to3",
  95. "linecache",
  96. "locale",
  97. "logging",
  98. "lzma",
  99. "mailbox",
  100. "mailcap",
  101. "marshal",
  102. "math",
  103. "mimetypes",
  104. "mmap",
  105. "modulefinder",
  106. "msilib",
  107. "msvcrt",
  108. "multiprocessing",
  109. "netrc",
  110. "nis",
  111. "nntplib",
  112. "ntpath",
  113. "numbers",
  114. "operator",
  115. "optparse",
  116. "os",
  117. "ossaudiodev",
  118. "pathlib",
  119. "pdb",
  120. "pickle",
  121. "pickletools",
  122. "pipes",
  123. "pkgutil",
  124. "platform",
  125. "plistlib",
  126. "poplib",
  127. "posix",
  128. "posixpath",
  129. "pprint",
  130. "profile",
  131. "pstats",
  132. "pty",
  133. "pwd",
  134. "py_compile",
  135. "pyclbr",
  136. "pydoc",
  137. "queue",
  138. "quopri",
  139. "random",
  140. "re",
  141. "readline",
  142. "reprlib",
  143. "resource",
  144. "rlcompleter",
  145. "runpy",
  146. "sched",
  147. "secrets",
  148. "select",
  149. "selectors",
  150. "shelve",
  151. "shlex",
  152. "shutil",
  153. "signal",
  154. "site",
  155. "smtpd",
  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. "test",
  184. "textwrap",
  185. "threading",
  186. "time",
  187. "timeit",
  188. "tkinter",
  189. "token",
  190. "tokenize",
  191. "trace",
  192. "traceback",
  193. "tracemalloc",
  194. "tty",
  195. "turtle",
  196. "turtledemo",
  197. "types",
  198. "typing",
  199. "unicodedata",
  200. "unittest",
  201. "urllib",
  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. }