py39.py 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  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. "_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. "formatter",
  68. "fractions",
  69. "ftplib",
  70. "functools",
  71. "gc",
  72. "getopt",
  73. "getpass",
  74. "gettext",
  75. "glob",
  76. "graphlib",
  77. "grp",
  78. "gzip",
  79. "hashlib",
  80. "heapq",
  81. "hmac",
  82. "html",
  83. "http",
  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. "parser",
  119. "pathlib",
  120. "pdb",
  121. "pickle",
  122. "pickletools",
  123. "pipes",
  124. "pkgutil",
  125. "platform",
  126. "plistlib",
  127. "poplib",
  128. "posix",
  129. "posixpath",
  130. "pprint",
  131. "profile",
  132. "pstats",
  133. "pty",
  134. "pwd",
  135. "py_compile",
  136. "pyclbr",
  137. "pydoc",
  138. "queue",
  139. "quopri",
  140. "random",
  141. "re",
  142. "readline",
  143. "reprlib",
  144. "resource",
  145. "rlcompleter",
  146. "runpy",
  147. "sched",
  148. "secrets",
  149. "select",
  150. "selectors",
  151. "shelve",
  152. "shlex",
  153. "shutil",
  154. "signal",
  155. "site",
  156. "smtpd",
  157. "smtplib",
  158. "sndhdr",
  159. "socket",
  160. "socketserver",
  161. "spwd",
  162. "sqlite3",
  163. "sre",
  164. "sre_compile",
  165. "sre_constants",
  166. "sre_parse",
  167. "ssl",
  168. "stat",
  169. "statistics",
  170. "string",
  171. "stringprep",
  172. "struct",
  173. "subprocess",
  174. "sunau",
  175. "symbol",
  176. "symtable",
  177. "sys",
  178. "sysconfig",
  179. "syslog",
  180. "tabnanny",
  181. "tarfile",
  182. "telnetlib",
  183. "tempfile",
  184. "termios",
  185. "test",
  186. "textwrap",
  187. "threading",
  188. "time",
  189. "timeit",
  190. "tkinter",
  191. "token",
  192. "tokenize",
  193. "trace",
  194. "traceback",
  195. "tracemalloc",
  196. "tty",
  197. "turtle",
  198. "turtledemo",
  199. "types",
  200. "typing",
  201. "unicodedata",
  202. "unittest",
  203. "urllib",
  204. "uu",
  205. "uuid",
  206. "venv",
  207. "warnings",
  208. "wave",
  209. "weakref",
  210. "webbrowser",
  211. "winreg",
  212. "winsound",
  213. "wsgiref",
  214. "xdrlib",
  215. "xml",
  216. "xmlrpc",
  217. "zipapp",
  218. "zipfile",
  219. "zipimport",
  220. "zlib",
  221. "zoneinfo",
  222. }