py38.py 3.2 KB

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