py39.py 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. """
  2. File contains the standard library of Python 3.9.
  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. "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. "formatter",
  68. "fractions",
  69. "ftplib",
  70. "functools",
  71. "gc",
  72. "genericpath",
  73. "getopt",
  74. "getpass",
  75. "gettext",
  76. "glob",
  77. "graphlib",
  78. "grp",
  79. "gzip",
  80. "hashlib",
  81. "heapq",
  82. "hmac",
  83. "html",
  84. "http",
  85. "idlelib",
  86. "imaplib",
  87. "imghdr",
  88. "imp",
  89. "importlib",
  90. "inspect",
  91. "io",
  92. "ipaddress",
  93. "itertools",
  94. "json",
  95. "keyword",
  96. "lib2to3",
  97. "linecache",
  98. "locale",
  99. "logging",
  100. "lzma",
  101. "mailbox",
  102. "mailcap",
  103. "marshal",
  104. "math",
  105. "mimetypes",
  106. "mmap",
  107. "modulefinder",
  108. "msilib",
  109. "msvcrt",
  110. "multiprocessing",
  111. "netrc",
  112. "nis",
  113. "nntplib",
  114. "nt",
  115. "ntpath",
  116. "nturl2path",
  117. "numbers",
  118. "opcode",
  119. "operator",
  120. "optparse",
  121. "os",
  122. "ossaudiodev",
  123. "parser",
  124. "pathlib",
  125. "pdb",
  126. "pickle",
  127. "pickletools",
  128. "pipes",
  129. "pkgutil",
  130. "platform",
  131. "plistlib",
  132. "poplib",
  133. "posix",
  134. "posixpath",
  135. "pprint",
  136. "profile",
  137. "pstats",
  138. "pty",
  139. "pwd",
  140. "py_compile",
  141. "pyclbr",
  142. "pydoc",
  143. "pydoc_data",
  144. "pyexpat",
  145. "queue",
  146. "quopri",
  147. "random",
  148. "re",
  149. "readline",
  150. "reprlib",
  151. "resource",
  152. "rlcompleter",
  153. "runpy",
  154. "sched",
  155. "secrets",
  156. "select",
  157. "selectors",
  158. "shelve",
  159. "shlex",
  160. "shutil",
  161. "signal",
  162. "site",
  163. "smtpd",
  164. "smtplib",
  165. "sndhdr",
  166. "socket",
  167. "socketserver",
  168. "spwd",
  169. "sqlite3",
  170. "sre",
  171. "sre_compile",
  172. "sre_constants",
  173. "sre_parse",
  174. "ssl",
  175. "stat",
  176. "statistics",
  177. "string",
  178. "stringprep",
  179. "struct",
  180. "subprocess",
  181. "sunau",
  182. "symbol",
  183. "symtable",
  184. "sys",
  185. "sysconfig",
  186. "syslog",
  187. "tabnanny",
  188. "tarfile",
  189. "telnetlib",
  190. "tempfile",
  191. "termios",
  192. "textwrap",
  193. "this",
  194. "threading",
  195. "time",
  196. "timeit",
  197. "tkinter",
  198. "token",
  199. "tokenize",
  200. "trace",
  201. "traceback",
  202. "tracemalloc",
  203. "tty",
  204. "turtle",
  205. "turtledemo",
  206. "types",
  207. "typing",
  208. "unicodedata",
  209. "unittest",
  210. "urllib",
  211. "uu",
  212. "uuid",
  213. "venv",
  214. "warnings",
  215. "wave",
  216. "weakref",
  217. "webbrowser",
  218. "winreg",
  219. "winsound",
  220. "wsgiref",
  221. "xdrlib",
  222. "xml",
  223. "xmlrpc",
  224. "xx",
  225. "xxlimited",
  226. "xxsubtype",
  227. "zipapp",
  228. "zipfile",
  229. "zipimport",
  230. "zlib",
  231. "zoneinfo",
  232. }