py310.py 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  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. "imaplib",
  84. "imghdr",
  85. "imp",
  86. "importlib",
  87. "inspect",
  88. "io",
  89. "ipaddress",
  90. "itertools",
  91. "json",
  92. "keyword",
  93. "lib2to3",
  94. "linecache",
  95. "locale",
  96. "logging",
  97. "lzma",
  98. "mailbox",
  99. "mailcap",
  100. "marshal",
  101. "math",
  102. "mimetypes",
  103. "mmap",
  104. "modulefinder",
  105. "msilib",
  106. "msvcrt",
  107. "multiprocessing",
  108. "netrc",
  109. "nis",
  110. "nntplib",
  111. "ntpath",
  112. "numbers",
  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. "queue",
  137. "quopri",
  138. "random",
  139. "re",
  140. "readline",
  141. "reprlib",
  142. "resource",
  143. "rlcompleter",
  144. "runpy",
  145. "sched",
  146. "secrets",
  147. "select",
  148. "selectors",
  149. "shelve",
  150. "shlex",
  151. "shutil",
  152. "signal",
  153. "site",
  154. "smtpd",
  155. "smtplib",
  156. "sndhdr",
  157. "socket",
  158. "socketserver",
  159. "spwd",
  160. "sqlite3",
  161. "sre",
  162. "sre_compile",
  163. "sre_constants",
  164. "sre_parse",
  165. "ssl",
  166. "stat",
  167. "statistics",
  168. "string",
  169. "stringprep",
  170. "struct",
  171. "subprocess",
  172. "sunau",
  173. "symtable",
  174. "sys",
  175. "sysconfig",
  176. "syslog",
  177. "tabnanny",
  178. "tarfile",
  179. "telnetlib",
  180. "tempfile",
  181. "termios",
  182. "test",
  183. "textwrap",
  184. "threading",
  185. "time",
  186. "timeit",
  187. "tkinter",
  188. "token",
  189. "tokenize",
  190. "trace",
  191. "traceback",
  192. "tracemalloc",
  193. "tty",
  194. "turtle",
  195. "turtledemo",
  196. "types",
  197. "typing",
  198. "unicodedata",
  199. "unittest",
  200. "urllib",
  201. "uu",
  202. "uuid",
  203. "venv",
  204. "warnings",
  205. "wave",
  206. "weakref",
  207. "webbrowser",
  208. "winreg",
  209. "winsound",
  210. "wsgiref",
  211. "xdrlib",
  212. "xml",
  213. "xmlrpc",
  214. "zipapp",
  215. "zipfile",
  216. "zipimport",
  217. "zlib",
  218. "zoneinfo",
  219. }