From 510679d62d0eb0aa34d896e25c8b6eb0fccdd7c6 Mon Sep 17 00:00:00 2001 From: John Vandenberg Date: Sat, 21 Dec 2019 14:29:29 +0700 Subject: [PATCH 1/4] .travis.tml: Remove before_install These packages are not needed to run tests, and they polute the testbed. --- .travis.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index e8c9c01..08ba7db 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,9 +10,6 @@ python: - 3.7 - 3.8 -before_install: - - pip install -r requirements-dev.txt - install: - python setup.py sdist && version=$(python setup.py --version) && pushd dist && pip install stdlib-list-${version}.tar.gz && popd From d38723086860698cbfed305f76792c2793ca98b9 Mon Sep 17 00:00:00 2001 From: John Vandenberg Date: Sat, 21 Dec 2019 11:56:49 +0700 Subject: [PATCH 2/4] Create test suite --- .travis.yml | 3 +- setup.py | 2 +- tests/__init__.py | 0 tests/__main__.py | 7 ++ tests/test_basic.py | 99 +++++++++++++++++++++++ tests/test_platform.py | 174 +++++++++++++++++++++++++++++++++++++++++ 6 files changed, 282 insertions(+), 3 deletions(-) create mode 100644 tests/__init__.py create mode 100644 tests/__main__.py create mode 100644 tests/test_basic.py create mode 100644 tests/test_platform.py diff --git a/.travis.yml b/.travis.yml index 08ba7db..853cccf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,8 +14,7 @@ install: - python setup.py sdist && version=$(python setup.py --version) && pushd dist && pip install stdlib-list-${version}.tar.gz && popd script: - # FIXME: add some real test. - - python -c "import stdlib_list; print(stdlib_list.stdlib_list('$TRAVIS_PYTHON_VERSION'))" + - python -m tests deploy: skip_cleanup: true diff --git a/setup.py b/setup.py index b0cdd22..27b6c55 100644 --- a/setup.py +++ b/setup.py @@ -24,6 +24,6 @@ def read(*parts): long_description="{}".format(read("README.md")), long_description_content_type="text/markdown", include_package_data=True, - packages=find_packages(), + packages=find_packages(exclude=["tests", "tests.*"]), cmdclass=versioneer.get_cmdclass(), ) diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/__main__.py b/tests/__main__.py new file mode 100644 index 0000000..9fea50d --- /dev/null +++ b/tests/__main__.py @@ -0,0 +1,7 @@ +import unittest + +from tests.test_basic import * +from tests.test_platform import * + +if __name__ == "__main__": + unittest.main() diff --git a/tests/test_basic.py b/tests/test_basic.py new file mode 100644 index 0000000..257f04b --- /dev/null +++ b/tests/test_basic.py @@ -0,0 +1,99 @@ +import sys +import unittest + +import stdlib_list + +PY2 = sys.version_info[0] == 2 + + +class CurrentVersionBase(unittest.TestCase): + def setUp(self): + self.list = stdlib_list.stdlib_list(sys.version[:3]) + + +class TestCurrentVersion(CurrentVersionBase): + def test_string(self): + self.assertIn("string", self.list) + + def test_list_is_sorted(self): + self.assertEqual(sorted(self.list), self.list) + + def test_builtin_modules(self): + """Check all top level stdlib packages are recognised.""" + unknown_builtins = set() + for module_name in sys.builtin_module_names: + if module_name not in self.list: + unknown_builtins.add(module_name) + + self.assertFalse(sorted(unknown_builtins)) + + +class TestSysModules(CurrentVersionBase): + + # This relies on invocation in a clean python environment using unittest + # not using pytest. + + ignore_list = ["stdlib_list", "functools32", "tests", "_virtualenv_distutils"] + + def setUp(self): + super(TestSysModules, self).setUp() + self.maxDiff = None + + def test_preloaded_packages(self): + """Check all top level stdlib packages are recognised.""" + not_stdlib = set() + for module_name in sys.modules: + pkg, _, module = module_name.partition(".") + + # https://github.com/jackmaney/python-stdlib-list/issues/29 + if pkg.startswith("_sysconfigdata_"): + continue + + if pkg in self.ignore_list: + continue + + # Avoid duplicating errors covered by other tests + if pkg in sys.builtin_module_names: + continue + + if pkg not in self.list: + not_stdlib.add(pkg) + + self.assertFalse(sorted(not_stdlib)) + + def test_preloaded_modules(self): + """Check all stdlib modules are recognised.""" + not_stdlib = set() + for module_name in sys.modules: + pkg, _, module = module_name.partition(".") + + # https://github.com/jackmaney/python-stdlib-list/issues/29 + if pkg.startswith("_sysconfigdata_"): + continue + + if pkg in self.ignore_list: + continue + + # Avoid duplicating errors covered by other tests + if module_name in sys.builtin_module_names: + continue + + if PY2: + # Python 2.7 creates sub-modules for imports + if pkg in self.list and module in self.list: + continue + + # Python 2.7 deprecation solution for old names + if pkg == "email": + mod = sys.modules[module_name] + if mod.__class__.__name__ == "LazyImporter": + continue + + if module_name not in self.list: + not_stdlib.add(module_name) + + self.assertFalse(sorted(not_stdlib)) + + +if __name__ == "__main__": + unittest.main() diff --git a/tests/test_platform.py b/tests/test_platform.py new file mode 100644 index 0000000..226396a --- /dev/null +++ b/tests/test_platform.py @@ -0,0 +1,174 @@ +import difflib +import os +import os.path +import sys +import unittest +from distutils.sysconfig import get_python_lib +from sysconfig import get_config_var + +import stdlib_list + +try: + sys.base_prefix + has_base_prefix = sys.base_prefix != sys.prefix +except AttributeError: + has_base_prefix = False + +shlib_ext = get_config_var("SHLIB_SUFFIX") or get_config_var("SO") + +tk_libs = get_config_var("TKPATH") + + +class UnifiedDiffAssertionError(AssertionError): + def __init__(self, expected, got, msg="Differences"): + super(UnifiedDiffAssertionError, self).__init__(self) + filename = "stdlib_list/lists/{}.txt".format(sys.version[:3]) + diff = difflib.unified_diff( + expected, got, lineterm="", fromfile="a/" + filename, tofile="b/" + filename + ) + self.description = "{name}\n{diff}".format(name=msg, diff="\n".join(diff)) + + def __str__(self): + return self.description + + +class CurrentPlatformBase(object): + + dir = None + ignore_test = False + + def setUp(self): + self.list = stdlib_list.stdlib_list(sys.version[:3]) + if self.dir: + self.assertTrue(os.path.isdir(self.dir)) + + def _collect_shared(self, name): + # stdlib extensions are not in subdirectories + if "/" in name: + return None + + return name.split(".", 1)[0] + + def _collect_file(self, name): + if name.endswith(shlib_ext): + return self._collect_shared(name) + + if not name.endswith(".py"): + return None + + # This excludes `_sysconfigdata_m_linux_x86_64-linux-gnu` + # https://github.com/jackmaney/python-stdlib-list/issues/29 + if "-" in name: + return None + + # Ignore this oddball stdlib test.test_frozen helper + if name == "__phello__.foo.py": + return None + + if name.endswith("/__init__.py"): + return name[:-12].replace("/", ".") + + # Strip .py and replace '/' + return name[:-3].replace("/", ".") + + def _collect_all(self, base): + base = base + "/" if not base.endswith("/") else base + base_len = len(base) + modules = [] + + for root, dirs, files in os.walk(base): + for filename in files: + relative_base = root[base_len:] + relative_path = os.path.join(relative_base, filename) + module_name = self._collect_file(relative_path) + if module_name: + modules.append(module_name) + + # In-place filtering of traversal, removing invalid module names + # and cache directories + for dir in dirs: + if "-" in dir: + dirs.remove(dir) + if "__pycache__" in dirs: + dirs.remove("__pycache__") + + if self.ignore_test and "test" in dirs: + dirs.remove("test") + + # openSUSE custom module added to stdlib directory + if "_import_failed" in dirs: + dirs.remove("_import_failed") + + return modules + + def assertNoDiff(self, base, new): + if base == new: + self.assertEqual(base, new) + else: + raise UnifiedDiffAssertionError(got=sorted(new), expected=sorted(base)) + + def test_dir(self): + needed = set(self.list) + items = self._collect_all(self.dir) + for item in items: + if item not in self.list: + needed.add(item) + + self.assertNoDiff(set(self.list), needed) + + +class TestPureLibDir(CurrentPlatformBase, unittest.TestCase): + def setUp(self): + self.dir = get_python_lib(standard_lib=True, plat_specific=False) + super(TestPureLibDir, self).setUp() + + +class TestPlatLibDir(CurrentPlatformBase, unittest.TestCase): + def setUp(self): + self.dir = get_python_lib(standard_lib=True, plat_specific=True) + super(TestPlatLibDir, self).setUp() + + +class TestSharedDir(CurrentPlatformBase, unittest.TestCase): + def setUp(self): + self.dir = get_config_var("DESTSHARED") + super(TestSharedDir, self).setUp() + + +if has_base_prefix: + + class TestBasePureLibDir(CurrentPlatformBase, unittest.TestCase): + def setUp(self): + base = sys.base_prefix + self.dir = get_python_lib( + standard_lib=True, plat_specific=False, prefix=base + ) + super(TestBasePureLibDir, self).setUp() + + class TestBasePlatLibDir(CurrentPlatformBase, unittest.TestCase): + def setUp(self): + base = sys.base_prefix + self.dir = get_python_lib( + standard_lib=True, plat_specific=True, prefix=base + ) + super(TestBasePlatLibDir, self).setUp() + + +if tk_libs: + tk_libs = tk_libs.strip(os.pathsep) + + class TestTkDir(CurrentPlatformBase, unittest.TestCase): + + # Python 2.7 tk-libs includes a `test` package, however it is + # added to sys.path by test.test_tk as a top level directory + # so test.widget_tests becomes module name `widget_tests` + ignore_test = True + + def setUp(self): + base = get_python_lib(standard_lib=True, plat_specific=False) + self.dir = os.path.join(base, tk_libs) + super(TestTkDir, self).setUp() + + +if __name__ == "__main__": + unittest.main() From 457a54171b3c551049618b49665ece1cb805ff83 Mon Sep 17 00:00:00 2001 From: John Vandenberg Date: Sat, 21 Dec 2019 15:19:03 +0700 Subject: [PATCH 3/4] Update lists --- stdlib_list/lists/2.7.txt | 1119 ++++++++++++++++++++++++++++ stdlib_list/lists/3.2.txt | 3 + stdlib_list/lists/3.3.txt | 3 + stdlib_list/lists/3.4.txt | 1250 ++++++++++++++++++++++++++++++++ stdlib_list/lists/3.5.txt | 1306 +++++++++++++++++++++++++++++++++ stdlib_list/lists/3.6.txt | 1361 +++++++++++++++++++++++++++++++++++ stdlib_list/lists/3.7.txt | 1406 ++++++++++++++++++++++++++++++++++++ stdlib_list/lists/3.8.txt | 1441 +++++++++++++++++++++++++++++++++++++ 8 files changed, 7889 insertions(+) diff --git a/stdlib_list/lists/2.7.txt b/stdlib_list/lists/2.7.txt index f63a6d3..7a6b0ce 100644 --- a/stdlib_list/lists/2.7.txt +++ b/stdlib_list/lists/2.7.txt @@ -2,6 +2,7 @@ AL BaseHTTPServer Bastion CGIHTTPServer +Canvas Carbon.AE Carbon.AH Carbon.App @@ -64,9 +65,12 @@ ColorPicker ConfigParser Cookie DEVICE +Dialog DocXMLRPCServer EasyDialogs FL +FileDialog +FixTk FrameWork GL HTMLParser @@ -78,19 +82,73 @@ PixMapWrapper Queue SUNAUDIODEV ScrolledText +SimpleDialog SimpleHTTPServer SimpleXMLRPCServer SocketServer StringIO Tix +Tkconstants +Tkdnd Tkinter UserDict UserList UserString W +_LWPCookieJar +_MozillaCookieJar __builtin__ __future__ __main__ +_abcoll +_ast +_bisect +_bsddb +_codecs +_codecs_cn +_codecs_hk +_codecs_iso2022 +_codecs_jp +_codecs_kr +_codecs_tw +_collections +_csv +_ctypes +_ctypes_test +_curses +_curses_panel +_elementtree +_functools +_hashlib +_heapq +_hotshot +_io +_json +_locale +_lsprof +_md5 +_multibytecodec +_multiprocessing +_osx_support +_pyio +_random +_sha +_sha256 +_sha512 +_socket +_sqlite3 +_sre +_ssl +_strptime +_struct +_symtable +_sysconfigdata +_testcapi +_threading_local +_tkinter +_warnings +_weakref +_weakrefset _winreg abc aepack @@ -98,6 +156,7 @@ aetools aetypes aifc al +antigravity anydbm applesingle argparse @@ -106,6 +165,7 @@ ast asynchat asyncore atexit +audiodev audioop autoGIL base64 @@ -114,6 +174,37 @@ binascii binhex bisect bsddb +bsddb.db +bsddb.dbobj +bsddb.dbrecio +bsddb.dbshelve +bsddb.dbtables +bsddb.dbutils +bsddb.test +bsddb.test.test_all +bsddb.test.test_associate +bsddb.test.test_basics +bsddb.test.test_compare +bsddb.test.test_compat +bsddb.test.test_cursor_pget_bug +bsddb.test.test_db +bsddb.test.test_dbenv +bsddb.test.test_dbobj +bsddb.test.test_dbshelve +bsddb.test.test_dbtables +bsddb.test.test_distributed_transactions +bsddb.test.test_early_close +bsddb.test.test_fileid +bsddb.test.test_get_none +bsddb.test.test_join +bsddb.test.test_lock +bsddb.test.test_misc +bsddb.test.test_pickle +bsddb.test.test_queue +bsddb.test.test_recno +bsddb.test.test_replication +bsddb.test.test_sequence +bsddb.test.test_thread buildtools bz2 cPickle @@ -136,6 +227,14 @@ commands compileall compiler compiler.ast +compiler.consts +compiler.future +compiler.misc +compiler.pyassem +compiler.pycodegen +compiler.symbols +compiler.syntax +compiler.transformer compiler.visitor contextlib cookielib @@ -144,10 +243,71 @@ copy_reg crypt csv ctypes +ctypes._endian +ctypes.macholib +ctypes.macholib.dyld +ctypes.macholib.dylib +ctypes.macholib.framework +ctypes.test +ctypes.test.runtests +ctypes.test.test_anon +ctypes.test.test_array_in_pointer +ctypes.test.test_arrays +ctypes.test.test_as_parameter +ctypes.test.test_bitfields +ctypes.test.test_buffers +ctypes.test.test_byteswap +ctypes.test.test_callbacks +ctypes.test.test_cast +ctypes.test.test_cfuncs +ctypes.test.test_checkretval +ctypes.test.test_delattr +ctypes.test.test_errno +ctypes.test.test_find +ctypes.test.test_frombuffer +ctypes.test.test_funcptr +ctypes.test.test_functions +ctypes.test.test_incomplete +ctypes.test.test_init +ctypes.test.test_internals +ctypes.test.test_keeprefs +ctypes.test.test_libc +ctypes.test.test_loading +ctypes.test.test_macholib +ctypes.test.test_memfunctions +ctypes.test.test_numbers +ctypes.test.test_objects +ctypes.test.test_parameters +ctypes.test.test_pep3118 +ctypes.test.test_pickling +ctypes.test.test_pointers +ctypes.test.test_prototypes +ctypes.test.test_python_api +ctypes.test.test_random_things +ctypes.test.test_refcounts +ctypes.test.test_repr +ctypes.test.test_returnfuncptrs +ctypes.test.test_simplesubclasses +ctypes.test.test_sizes +ctypes.test.test_slicing +ctypes.test.test_stringptr +ctypes.test.test_strings +ctypes.test.test_struct_fields +ctypes.test.test_structures +ctypes.test.test_unaligned_structures +ctypes.test.test_unicode +ctypes.test.test_values +ctypes.test.test_varsize_struct +ctypes.test.test_win32 +ctypes.test.test_wintypes +ctypes.util +ctypes.wintypes curses curses.ascii +curses.has_key curses.panel curses.textpad +curses.wrapper datetime dbhash dbm @@ -177,11 +337,14 @@ distutils.command.clean distutils.command.config distutils.command.install distutils.command.install_data +distutils.command.install_egg_info distutils.command.install_headers distutils.command.install_lib distutils.command.install_scripts distutils.command.register distutils.command.sdist +distutils.command.upload +distutils.config distutils.core distutils.cygwinccompiler distutils.debug @@ -195,32 +358,218 @@ distutils.fancy_getopt distutils.file_util distutils.filelist distutils.log +distutils.msvc9compiler distutils.msvccompiler distutils.spawn distutils.sysconfig +distutils.tests +distutils.tests.setuptools_build_ext +distutils.tests.setuptools_extension +distutils.tests.support +distutils.tests.test_archive_util +distutils.tests.test_bdist +distutils.tests.test_bdist_dumb +distutils.tests.test_bdist_msi +distutils.tests.test_bdist_rpm +distutils.tests.test_bdist_wininst +distutils.tests.test_build +distutils.tests.test_build_clib +distutils.tests.test_build_ext +distutils.tests.test_build_py +distutils.tests.test_build_scripts +distutils.tests.test_ccompiler +distutils.tests.test_check +distutils.tests.test_clean +distutils.tests.test_cmd +distutils.tests.test_config +distutils.tests.test_config_cmd +distutils.tests.test_core +distutils.tests.test_dep_util +distutils.tests.test_dir_util +distutils.tests.test_dist +distutils.tests.test_file_util +distutils.tests.test_filelist +distutils.tests.test_install +distutils.tests.test_install_data +distutils.tests.test_install_headers +distutils.tests.test_install_lib +distutils.tests.test_install_scripts +distutils.tests.test_msvc9compiler +distutils.tests.test_register +distutils.tests.test_sdist +distutils.tests.test_spawn +distutils.tests.test_sysconfig +distutils.tests.test_text_file +distutils.tests.test_unixccompiler +distutils.tests.test_upload +distutils.tests.test_util +distutils.tests.test_version +distutils.tests.test_versionpredicate distutils.text_file distutils.unixccompiler distutils.util distutils.version +distutils.versionpredicate dl doctest dumbdbm dummy_thread dummy_threading email +email._parseaddr +email.base64mime email.charset email.encoders email.errors +email.feedparser email.generator email.header email.iterators email.message email.mime +email.mime.application +email.mime.audio +email.mime.base +email.mime.image +email.mime.message +email.mime.multipart +email.mime.nonmultipart +email.mime.text email.parser +email.quoprimime +email.test +email.test.test_email +email.test.test_email_codecs +email.test.test_email_codecs_renamed +email.test.test_email_renamed +email.test.test_email_torture email.utils +encodings +encodings.__builtin__ +encodings.aliases +encodings.ascii +encodings.base64_codec +encodings.big5 +encodings.big5hkscs +encodings.bz2_codec +encodings.charmap +encodings.codecs +encodings.cp037 +encodings.cp1006 +encodings.cp1026 +encodings.cp1140 +encodings.cp1250 +encodings.cp1251 +encodings.cp1252 +encodings.cp1253 +encodings.cp1254 +encodings.cp1255 +encodings.cp1256 +encodings.cp1257 +encodings.cp1258 +encodings.cp424 +encodings.cp437 +encodings.cp500 +encodings.cp720 +encodings.cp737 +encodings.cp775 +encodings.cp850 +encodings.cp852 +encodings.cp855 +encodings.cp856 +encodings.cp857 +encodings.cp858 +encodings.cp860 +encodings.cp861 +encodings.cp862 +encodings.cp863 +encodings.cp864 +encodings.cp865 +encodings.cp866 +encodings.cp869 +encodings.cp874 +encodings.cp875 +encodings.cp932 +encodings.cp949 +encodings.cp950 +encodings.encodings +encodings.euc_jis_2004 +encodings.euc_jisx0213 +encodings.euc_jp +encodings.euc_kr +encodings.gb18030 +encodings.gb2312 +encodings.gbk +encodings.hex_codec +encodings.hp_roman8 +encodings.hz encodings.idna +encodings.iso2022_jp +encodings.iso2022_jp_1 +encodings.iso2022_jp_2 +encodings.iso2022_jp_2004 +encodings.iso2022_jp_3 +encodings.iso2022_jp_ext +encodings.iso2022_kr +encodings.iso8859_1 +encodings.iso8859_10 +encodings.iso8859_11 +encodings.iso8859_13 +encodings.iso8859_14 +encodings.iso8859_15 +encodings.iso8859_16 +encodings.iso8859_2 +encodings.iso8859_3 +encodings.iso8859_4 +encodings.iso8859_5 +encodings.iso8859_6 +encodings.iso8859_7 +encodings.iso8859_8 +encodings.iso8859_9 +encodings.johab +encodings.koi8_r +encodings.koi8_u +encodings.latin_1 +encodings.mac_arabic +encodings.mac_centeuro +encodings.mac_croatian +encodings.mac_cyrillic +encodings.mac_farsi +encodings.mac_greek +encodings.mac_iceland +encodings.mac_latin2 +encodings.mac_roman +encodings.mac_romanian +encodings.mac_turkish +encodings.mbcs +encodings.palmos +encodings.ptcp154 +encodings.punycode +encodings.quopri_codec +encodings.raw_unicode_escape +encodings.rot_13 +encodings.shift_jis +encodings.shift_jis_2004 +encodings.shift_jisx0213 +encodings.string_escape +encodings.tis_620 +encodings.undefined +encodings.unicode_escape +encodings.unicode_internal +encodings.utf_16 +encodings.utf_16_be +encodings.utf_16_le +encodings.utf_32 +encodings.utf_32_be +encodings.utf_32_le +encodings.utf_7 +encodings.utf_8 encodings.utf_8_sig +encodings.uu_codec +encodings.zlib_codec ensurepip +ensurepip.__main__ +ensurepip._uninstall errno exceptions fcntl @@ -240,6 +589,7 @@ functools future_builtins gc gdbm +genericpath gensuitemodule getopt getpass @@ -252,12 +602,100 @@ hashlib heapq hmac hotshot +hotshot.log hotshot.stats +hotshot.stones htmlentitydefs htmllib httplib ic icopen +idlelib +idlelib.AutoComplete +idlelib.AutoCompleteWindow +idlelib.AutoExpand +idlelib.Bindings +idlelib.CallTipWindow +idlelib.CallTips +idlelib.ClassBrowser +idlelib.CodeContext +idlelib.ColorDelegator +idlelib.Debugger +idlelib.Delegator +idlelib.EditorWindow +idlelib.FileList +idlelib.FormatParagraph +idlelib.GrepDialog +idlelib.HyperParser +idlelib.IOBinding +idlelib.IdleHistory +idlelib.MultiCall +idlelib.MultiStatusBar +idlelib.ObjectBrowser +idlelib.OutputWindow +idlelib.ParenMatch +idlelib.PathBrowser +idlelib.Percolator +idlelib.PyParse +idlelib.PyShell +idlelib.RemoteDebugger +idlelib.RemoteObjectBrowser +idlelib.ReplaceDialog +idlelib.RstripExtension +idlelib.ScriptBinding +idlelib.ScrolledList +idlelib.SearchDialog +idlelib.SearchDialogBase +idlelib.SearchEngine +idlelib.StackViewer +idlelib.ToolTip +idlelib.TreeWidget +idlelib.UndoDelegator +idlelib.WidgetRedirector +idlelib.WindowList +idlelib.ZoomHeight +idlelib.aboutDialog +idlelib.configDialog +idlelib.configHandler +idlelib.configHelpSourceEdit +idlelib.configSectionNameDialog +idlelib.dynOptionMenuWidget +idlelib.help +idlelib.idle +idlelib.idle_test +idlelib.idle_test.htest +idlelib.idle_test.mock_idle +idlelib.idle_test.mock_tk +idlelib.idle_test.test_autocomplete +idlelib.idle_test.test_autoexpand +idlelib.idle_test.test_calltips +idlelib.idle_test.test_config_name +idlelib.idle_test.test_configdialog +idlelib.idle_test.test_delegator +idlelib.idle_test.test_editmenu +idlelib.idle_test.test_formatparagraph +idlelib.idle_test.test_grep +idlelib.idle_test.test_helpabout +idlelib.idle_test.test_hyperparser +idlelib.idle_test.test_idlehistory +idlelib.idle_test.test_io +idlelib.idle_test.test_parenmatch +idlelib.idle_test.test_pathbrowser +idlelib.idle_test.test_rstrip +idlelib.idle_test.test_searchdialogbase +idlelib.idle_test.test_searchengine +idlelib.idle_test.test_text +idlelib.idle_test.test_textview +idlelib.idle_test.test_warning +idlelib.idle_test.test_widgetredir +idlelib.idlever +idlelib.keybindingDialog +idlelib.macosxSupport +idlelib.rpc +idlelib.run +idlelib.tabbedpages +idlelib.textView +ihooks imageop imaplib imgfile @@ -270,9 +708,134 @@ io itertools jpeg json +json._json +json.decoder +json.encoder +json.json +json.re +json.scanner +json.struct +json.sys +json.tests +json.tests.test_check_circular +json.tests.test_decode +json.tests.test_default +json.tests.test_dump +json.tests.test_encode_basestring_ascii +json.tests.test_fail +json.tests.test_float +json.tests.test_indent +json.tests.test_pass1 +json.tests.test_pass2 +json.tests.test_pass3 +json.tests.test_recursion +json.tests.test_scanstring +json.tests.test_separators +json.tests.test_speedups +json.tests.test_tool +json.tests.test_unicode +json.tool keyword lib2to3 +lib2to3.__main__ +lib2to3.btm_matcher +lib2to3.btm_utils +lib2to3.fixer_base +lib2to3.fixer_util +lib2to3.fixes +lib2to3.fixes.fix_apply +lib2to3.fixes.fix_asserts +lib2to3.fixes.fix_basestring +lib2to3.fixes.fix_buffer +lib2to3.fixes.fix_dict +lib2to3.fixes.fix_except +lib2to3.fixes.fix_exec +lib2to3.fixes.fix_execfile +lib2to3.fixes.fix_exitfunc +lib2to3.fixes.fix_filter +lib2to3.fixes.fix_funcattrs +lib2to3.fixes.fix_future +lib2to3.fixes.fix_getcwdu +lib2to3.fixes.fix_has_key +lib2to3.fixes.fix_idioms +lib2to3.fixes.fix_import +lib2to3.fixes.fix_imports +lib2to3.fixes.fix_imports2 +lib2to3.fixes.fix_input +lib2to3.fixes.fix_intern +lib2to3.fixes.fix_isinstance +lib2to3.fixes.fix_itertools +lib2to3.fixes.fix_itertools_imports +lib2to3.fixes.fix_long +lib2to3.fixes.fix_map +lib2to3.fixes.fix_metaclass +lib2to3.fixes.fix_methodattrs +lib2to3.fixes.fix_ne +lib2to3.fixes.fix_next +lib2to3.fixes.fix_nonzero +lib2to3.fixes.fix_numliterals +lib2to3.fixes.fix_operator +lib2to3.fixes.fix_paren +lib2to3.fixes.fix_print +lib2to3.fixes.fix_raise +lib2to3.fixes.fix_raw_input +lib2to3.fixes.fix_reduce +lib2to3.fixes.fix_renames +lib2to3.fixes.fix_repr +lib2to3.fixes.fix_set_literal +lib2to3.fixes.fix_standarderror +lib2to3.fixes.fix_sys_exc +lib2to3.fixes.fix_throw +lib2to3.fixes.fix_tuple_params +lib2to3.fixes.fix_types +lib2to3.fixes.fix_unicode +lib2to3.fixes.fix_urllib +lib2to3.fixes.fix_ws_comma +lib2to3.fixes.fix_xrange +lib2to3.fixes.fix_xreadlines +lib2to3.fixes.fix_zip +lib2to3.main +lib2to3.patcomp +lib2to3.pgen2 +lib2to3.pgen2.conv +lib2to3.pgen2.driver +lib2to3.pgen2.grammar +lib2to3.pgen2.literals +lib2to3.pgen2.parse +lib2to3.pgen2.pgen +lib2to3.pgen2.token +lib2to3.pgen2.tokenize +lib2to3.pygram +lib2to3.pytree +lib2to3.refactor +lib2to3.tests +lib2to3.tests.data.bom +lib2to3.tests.data.crlf +lib2to3.tests.data.different_encoding +lib2to3.tests.data.false_encoding +lib2to3.tests.data.fixers.bad_order +lib2to3.tests.data.fixers.myfixes +lib2to3.tests.data.fixers.myfixes.fix_explicit +lib2to3.tests.data.fixers.myfixes.fix_first +lib2to3.tests.data.fixers.myfixes.fix_last +lib2to3.tests.data.fixers.myfixes.fix_parrot +lib2to3.tests.data.fixers.myfixes.fix_preorder +lib2to3.tests.data.fixers.no_fixer_cls +lib2to3.tests.data.fixers.parrot_example +lib2to3.tests.data.infinite_recursion +lib2to3.tests.data.py2_test_grammar +lib2to3.tests.data.py3_test_grammar +lib2to3.tests.pytree_idempotency +lib2to3.tests.support +lib2to3.tests.test_all_fixers +lib2to3.tests.test_fixers +lib2to3.tests.test_main +lib2to3.tests.test_parser +lib2to3.tests.test_pytree +lib2to3.tests.test_refactor +lib2to3.tests.test_util linecache +linuxaudiodev locale logging logging.config @@ -281,8 +844,10 @@ macerrors macostools macpath macresource +macurl2path mailbox mailcap +markupbase marshal math md5 @@ -298,19 +863,31 @@ multifile multiprocessing multiprocessing.connection multiprocessing.dummy +multiprocessing.dummy.connection +multiprocessing.forking +multiprocessing.heap multiprocessing.managers multiprocessing.pool +multiprocessing.process +multiprocessing.queues +multiprocessing.reduction multiprocessing.sharedctypes +multiprocessing.synchronize +multiprocessing.util mutex netrc new nis nntplib +ntpath +nturl2path numbers +opcode operator optparse os os.path +os2emxpath ossaudiodev parser pdb @@ -324,6 +901,7 @@ popen2 poplib posix posixfile +posixpath pprint profile pstats @@ -332,10 +910,14 @@ pwd py_compile pyclbr pydoc +pydoc_data +pydoc_data.topics +pyexpat quopri random re readline +repr resource rexec rfc822 @@ -358,14 +940,33 @@ sndhdr socket spwd sqlite3 +sqlite3.dbapi2 +sqlite3.dump +sqlite3.test +sqlite3.test.dbapi +sqlite3.test.dump +sqlite3.test.factory +sqlite3.test.hooks +sqlite3.test.py25tests +sqlite3.test.regression +sqlite3.test.transactions +sqlite3.test.types +sqlite3.test.userfunctions +sre +sre_compile +sre_constants +sre_parse ssl stat statvfs string +stringold stringprep +strop struct subprocess sunau +sunaudio sunaudiodev symbol symtable @@ -378,12 +979,492 @@ telnetlib tempfile termios test +test.__main__ +test._mock_backport +test.audiotests +test.autotest +test.bad_coding +test.bad_coding2 +test.bad_coding3 +test.badsyntax_future3 +test.badsyntax_future4 +test.badsyntax_future5 +test.badsyntax_future6 +test.badsyntax_future7 +test.badsyntax_future8 +test.badsyntax_future9 +test.badsyntax_nocaret +test.bisect +test.bisect_cmd +test.curses_tests +test.doctest_aliases +test.double_const +test.fork_wait +test.gdb_sample +test.infinite_reload +test.inspect_fodder +test.inspect_fodder2 +test.list_tests +test.lock_tests +test.make_ssl_certs +test.mapping_tests +test.mp_fork_bomb +test.multibytecodec_support +test.outstanding_bugs +test.pickletester +test.profilee +test.pyclbr_input +test.pydoc_mod +test.pydocfodder +test.pystone +test.pythoninfo +test.re_tests +test.regrtest +test.relimport +test.reperf +test.sample_doctest +test.sample_doctest_no_docstrings +test.sample_doctest_no_doctests +test.script_helper +test.seq_tests +test.sortperf +test.ssl_servers +test.ssltests +test.string_tests +test.subprocessdata.sigchild_ignore +test.support +test.support.script_helper +test.symlink_support +test.test_MimeWriter +test.test_SimpleHTTPServer +test.test_StringIO +test.test___all__ +test.test___future__ +test.test__locale +test.test__osx_support +test.test_abc +test.test_abstract_numbers +test.test_aepack +test.test_aifc +test.test_al +test.test_anydbm +test.test_applesingle +test.test_argparse +test.test_array +test.test_ascii_formatd +test.test_ast +test.test_asynchat +test.test_asyncore +test.test_atexit +test.test_audioop +test.test_augassign +test.test_base64 +test.test_bastion +test.test_bdb +test.test_bigaddrspace +test.test_bigmem +test.test_binascii +test.test_binhex +test.test_binop +test.test_bisect +test.test_bool +test.test_bsddb +test.test_bsddb185 +test.test_bsddb3 +test.test_buffer +test.test_bufio +test.test_builtin +test.test_bytes +test.test_bz2 +test.test_calendar +test.test_call +test.test_capi +test.test_cd +test.test_cfgparser +test.test_cgi +test.test_charmapcodec +test.test_cl +test.test_class +test.test_cmath +test.test_cmd +test.test_cmd_line +test.test_cmd_line_script +test.test_code +test.test_codeccallbacks +test.test_codecencodings_cn +test.test_codecencodings_hk +test.test_codecencodings_iso2022 +test.test_codecencodings_jp +test.test_codecencodings_kr +test.test_codecencodings_tw +test.test_codecmaps_cn +test.test_codecmaps_hk +test.test_codecmaps_jp +test.test_codecmaps_kr +test.test_codecmaps_tw +test.test_codecs +test.test_codeop +test.test_coercion +test.test_collections +test.test_colorsys +test.test_commands +test.test_compare +test.test_compile +test.test_compileall +test.test_compiler +test.test_complex +test.test_complex_args +test.test_contains +test.test_contextlib +test.test_cookie +test.test_cookielib +test.test_copy +test.test_copy_reg +test.test_cpickle +test.test_cprofile +test.test_crypt +test.test_csv +test.test_ctypes +test.test_curses +test.test_datetime +test.test_dbm +test.test_decimal +test.test_decorators +test.test_defaultdict +test.test_deque +test.test_descr +test.test_descrtut +test.test_dict +test.test_dictcomps +test.test_dictviews +test.test_difflib +test.test_dircache +test.test_dis +test.test_distutils +test.test_dl +test.test_doctest +test.test_doctest2 +test.test_docxmlrpc +test.test_dumbdbm +test.test_dummy_thread +test.test_dummy_threading +test.test_email +test.test_email_codecs +test.test_email_renamed +test.test_ensurepip +test.test_enumerate +test.test_eof +test.test_epoll +test.test_errno +test.test_exception_variations +test.test_exceptions +test.test_extcall +test.test_fcntl +test.test_file +test.test_file2k +test.test_file_eintr +test.test_filecmp +test.test_fileinput +test.test_fileio +test.test_float +test.test_fnmatch +test.test_fork1 +test.test_format +test.test_fpformat +test.test_fractions +test.test_frozen +test.test_ftplib +test.test_funcattrs +test.test_functools +test.test_future +test.test_future1 +test.test_future2 +test.test_future3 +test.test_future4 +test.test_future5 +test.test_future_builtins +test.test_gc +test.test_gdb +test.test_gdbm +test.test_generators +test.test_genericpath +test.test_genexps +test.test_getargs +test.test_getargs2 +test.test_getopt +test.test_gettext +test.test_gl +test.test_glob +test.test_global +test.test_grammar +test.test_grp +test.test_gzip +test.test_hash +test.test_hashlib +test.test_heapq +test.test_hmac +test.test_hotshot +test.test_htmllib +test.test_htmlparser +test.test_httplib +test.test_httpservers +test.test_idle +test.test_imageop +test.test_imaplib +test.test_imgfile +test.test_imghdr +test.test_imp +test.test_import +test.test_import_magic +test.test_importhooks +test.test_importlib +test.test_index +test.test_inspect +test.test_int +test.test_int_literal +test.test_io +test.test_ioctl +test.test_isinstance +test.test_iter +test.test_iterlen +test.test_itertools +test.test_json +test.test_kqueue +test.test_largefile +test.test_lib2to3 +test.test_linecache +test.test_linuxaudiodev +test.test_list +test.test_locale +test.test_logging +test.test_long +test.test_long_future +test.test_longexp +test.test_macos +test.test_macostools +test.test_macpath +test.test_macurl2path +test.test_mailbox +test.test_marshal +test.test_math +test.test_md5 +test.test_memoryio +test.test_memoryview +test.test_mhlib +test.test_mimetools +test.test_mimetypes +test.test_minidom +test.test_mmap +test.test_module +test.test_modulefinder +test.test_msilib +test.test_multibytecodec +test.test_multifile +test.test_multiprocessing +test.test_mutants +test.test_mutex +test.test_netrc +test.test_new +test.test_nis +test.test_nntplib +test.test_normalization +test.test_ntpath +test.test_old_mailbox +test.test_opcodes +test.test_openpty +test.test_operator +test.test_optparse +test.test_ordered_dict +test.test_os +test.test_ossaudiodev +test.test_parser +test.test_pdb +test.test_peepholer +test.test_pep247 +test.test_pep277 +test.test_pep352 +test.test_pickle +test.test_pickletools +test.test_pipes +test.test_pkg +test.test_pkgimport +test.test_pkgutil +test.test_platform +test.test_plistlib +test.test_poll +test.test_popen +test.test_popen2 +test.test_poplib +test.test_posix +test.test_posixpath +test.test_pow +test.test_pprint +test.test_print +test.test_profile +test.test_property +test.test_pstats +test.test_pty +test.test_pwd +test.test_py3kwarn +test.test_py_compile +test.test_pyclbr +test.test_pydoc +test.test_pyexpat +test.test_queue +test.test_quopri +test.test_random +test.test_re +test.test_readline +test.test_regrtest +test.test_repr +test.test_resource +test.test_rfc822 +test.test_richcmp +test.test_rlcompleter +test.test_robotparser +test.test_runpy +test.test_sax +test.test_scope +test.test_scriptpackages +test.test_select +test.test_set +test.test_setcomps +test.test_sets +test.test_sgmllib +test.test_sha +test.test_shelve +test.test_shlex +test.test_shutil +test.test_signal +test.test_site +test.test_slice +test.test_smtplib +test.test_smtpnet +test.test_socket +test.test_socketserver +test.test_softspace +test.test_sort +test.test_source_encoding +test.test_spwd +test.test_sqlite +test.test_ssl +test.test_startfile +test.test_stat +test.test_str +test.test_strftime +test.test_string +test.test_stringprep +test.test_strop +test.test_strptime +test.test_strtod +test.test_struct +test.test_structmembers +test.test_structseq +test.test_subprocess +test.test_sunau +test.test_sunaudiodev +test.test_sundry test.test_support +test.test_symtable +test.test_syntax +test.test_sys +test.test_sys_setprofile +test.test_sys_settrace +test.test_sysconfig +test.test_tarfile +test.test_tcl +test.test_telnetlib +test.test_tempfile +test.test_test_support +test.test_textwrap +test.test_thread +test.test_threaded_import +test.test_threadedtempfile +test.test_threading +test.test_threading_local +test.test_threadsignals +test.test_time +test.test_timeit +test.test_timeout +test.test_tk +test.test_tokenize +test.test_tools +test.test_trace +test.test_traceback +test.test_transformer +test.test_ttk_guionly +test.test_ttk_textonly +test.test_tuple +test.test_turtle +test.test_typechecks +test.test_types +test.test_ucn +test.test_unary +test.test_undocumented_details +test.test_unicode +test.test_unicode_file +test.test_unicodedata +test.test_unittest +test.test_univnewlines +test.test_univnewlines2k +test.test_unpack +test.test_urllib +test.test_urllib2 +test.test_urllib2_localnet +test.test_urllib2net +test.test_urllibnet +test.test_urlparse +test.test_userdict +test.test_userlist +test.test_userstring +test.test_uu +test.test_uuid +test.test_wait3 +test.test_wait4 +test.test_warnings +test.test_wave +test.test_weakref +test.test_weakset +test.test_whichdb +test.test_winreg +test.test_winsound +test.test_with +test.test_wsgiref +test.test_xdrlib +test.test_xml_etree +test.test_xml_etree_c +test.test_xmllib +test.test_xmlrpc +test.test_xpickle +test.test_xrange +test.test_zipfile +test.test_zipfile64 +test.test_zipimport +test.test_zipimport_support +test.test_zlib +test.testall +test.testcodec +test.tf_inherit_check +test.threaded_import_hangers +test.time_hashlib +test.tracedmodules +test.tracedmodules.testmod +test.warning_tests +test.win_console_handler +test.xmltests textwrap +this thread threading time timeit +tkColorChooser +tkCommonDialog +tkFileDialog +tkFont +tkMessageBox +tkSimpleDialog +toaiff token tokenize trace @@ -394,6 +1475,30 @@ turtle types unicodedata unittest +unittest.__main__ +unittest.case +unittest.loader +unittest.main +unittest.result +unittest.runner +unittest.signals +unittest.suite +unittest.test +unittest.test.dummy +unittest.test.support +unittest.test.test_assertions +unittest.test.test_break +unittest.test.test_case +unittest.test.test_discovery +unittest.test.test_functiontestcase +unittest.test.test_loader +unittest.test.test_program +unittest.test.test_result +unittest.test.test_runner +unittest.test.test_setups +unittest.test.test_skipping +unittest.test.test_suite +unittest.util urllib urllib2 urlparse @@ -416,15 +1521,29 @@ wsgiref.validate xdrlib xml xml.dom +xml.dom.NodeFilter +xml.dom.domreg +xml.dom.expatbuilder +xml.dom.minicompat xml.dom.minidom xml.dom.pulldom +xml.dom.xmlbuilder +xml.etree +xml.etree.ElementInclude +xml.etree.ElementPath xml.etree.ElementTree +xml.etree.cElementTree +xml.parsers xml.parsers.expat xml.sax +xml.sax._exceptions +xml.sax.expatreader xml.sax.handler xml.sax.saxutils xml.sax.xmlreader +xmllib xmlrpclib +xxsubtype zipfile zipimport zlib diff --git a/stdlib_list/lists/3.2.txt b/stdlib_list/lists/3.2.txt index cf3152a..55eacae 100644 --- a/stdlib_list/lists/3.2.txt +++ b/stdlib_list/lists/3.2.txt @@ -1,6 +1,7 @@ __future__ __main__ _dummy_thread +_struct _thread abc aifc @@ -111,6 +112,7 @@ email.message email.mime email.parser email.utils +encodings encodings.idna encodings.mbcs encodings.utf_8_sig @@ -194,6 +196,7 @@ platform plistlib poplib posix +posixpath pprint profile pstats diff --git a/stdlib_list/lists/3.3.txt b/stdlib_list/lists/3.3.txt index c480ee3..5b720a8 100644 --- a/stdlib_list/lists/3.3.txt +++ b/stdlib_list/lists/3.3.txt @@ -1,6 +1,7 @@ __future__ __main__ _dummy_thread +_struct _thread abc aifc @@ -114,6 +115,7 @@ email.mime email.parser email.policy email.utils +encodings encodings.idna encodings.mbcs encodings.utf_8_sig @@ -200,6 +202,7 @@ platform plistlib poplib posix +posixpath pprint profile pstats diff --git a/stdlib_list/lists/3.4.txt b/stdlib_list/lists/3.4.txt index 9728674..d618211 100644 --- a/stdlib_list/lists/3.4.txt +++ b/stdlib_list/lists/3.4.txt @@ -1,14 +1,106 @@ __future__ __main__ +_ast +_bisect +_bootlocale +_bz2 +_codecs +_codecs_cn +_codecs_hk +_codecs_iso2022 +_codecs_jp +_codecs_kr +_codecs_tw +_collections +_collections_abc +_compat_pickle +_crypt +_csv +_ctypes +_ctypes_test +_curses +_curses_panel +_datetime +_dbm +_decimal _dummy_thread +_elementtree +_frozen_importlib +_functools +_gdbm +_hashlib +_heapq +_imp +_io +_json +_locale +_lsprof +_lzma +_markupbase +_md5 +_multibytecodec +_multiprocessing +_opcode +_operator +_osx_support +_pickle +_posixsubprocess +_pyio +_random +_sha1 +_sha256 +_sha512 +_sitebuiltins +_socket +_sqlite3 +_sre +_ssl +_stat +_string +_strptime +_struct +_symtable +_sysconfigdata +_testbuffer +_testcapi +_testimportmultiple _thread +_threading_local +_tkinter +_tracemalloc +_warnings +_weakref +_weakrefset abc aifc +antigravity argparse array ast asynchat asyncio +asyncio.base_events +asyncio.base_subprocess +asyncio.compat +asyncio.constants +asyncio.coroutines +asyncio.events +asyncio.futures +asyncio.locks +asyncio.log +asyncio.proactor_events +asyncio.protocols +asyncio.queues +asyncio.selector_events +asyncio.sslproto +asyncio.streams +asyncio.subprocess +asyncio.tasks +asyncio.test_utils +asyncio.transports +asyncio.unix_events +asyncio.windows_events +asyncio.windows_utils asyncore atexit audioop @@ -30,10 +122,15 @@ code codecs codeop collections +collections.__main__ collections.abc colorsys compileall +concurrent concurrent.futures +concurrent.futures._base +concurrent.futures.process +concurrent.futures.thread configparser contextlib copy @@ -41,8 +138,69 @@ copyreg crypt csv ctypes +ctypes._endian +ctypes.macholib +ctypes.macholib.dyld +ctypes.macholib.dylib +ctypes.macholib.framework +ctypes.test +ctypes.test.__main__ +ctypes.test.test_anon +ctypes.test.test_array_in_pointer +ctypes.test.test_arrays +ctypes.test.test_as_parameter +ctypes.test.test_bitfields +ctypes.test.test_buffers +ctypes.test.test_bytes +ctypes.test.test_byteswap +ctypes.test.test_callbacks +ctypes.test.test_cast +ctypes.test.test_cfuncs +ctypes.test.test_checkretval +ctypes.test.test_delattr +ctypes.test.test_errno +ctypes.test.test_find +ctypes.test.test_frombuffer +ctypes.test.test_funcptr +ctypes.test.test_functions +ctypes.test.test_incomplete +ctypes.test.test_init +ctypes.test.test_internals +ctypes.test.test_keeprefs +ctypes.test.test_libc +ctypes.test.test_loading +ctypes.test.test_macholib +ctypes.test.test_memfunctions +ctypes.test.test_numbers +ctypes.test.test_objects +ctypes.test.test_parameters +ctypes.test.test_pep3118 +ctypes.test.test_pickling +ctypes.test.test_pointers +ctypes.test.test_prototypes +ctypes.test.test_python_api +ctypes.test.test_random_things +ctypes.test.test_refcounts +ctypes.test.test_repr +ctypes.test.test_returnfuncptrs +ctypes.test.test_simplesubclasses +ctypes.test.test_sizes +ctypes.test.test_slicing +ctypes.test.test_stringptr +ctypes.test.test_strings +ctypes.test.test_struct_fields +ctypes.test.test_structures +ctypes.test.test_unaligned_structures +ctypes.test.test_unicode +ctypes.test.test_values +ctypes.test.test_varsize_struct +ctypes.test.test_win32 +ctypes.test.test_wintypes +ctypes.util +ctypes.wintypes curses curses.ascii +curses.has_key curses.panel curses.textpad datetime @@ -75,11 +233,14 @@ distutils.command.clean distutils.command.config distutils.command.install distutils.command.install_data +distutils.command.install_egg_info distutils.command.install_headers distutils.command.install_lib distutils.command.install_scripts distutils.command.register distutils.command.sdist +distutils.command.upload +distutils.config distutils.core distutils.cygwinccompiler distutils.debug @@ -92,33 +253,214 @@ distutils.fancy_getopt distutils.file_util distutils.filelist distutils.log +distutils.msvc9compiler distutils.msvccompiler distutils.spawn distutils.sysconfig +distutils.tests +distutils.tests.support +distutils.tests.test_archive_util +distutils.tests.test_bdist +distutils.tests.test_bdist_dumb +distutils.tests.test_bdist_msi +distutils.tests.test_bdist_rpm +distutils.tests.test_bdist_wininst +distutils.tests.test_build +distutils.tests.test_build_clib +distutils.tests.test_build_ext +distutils.tests.test_build_py +distutils.tests.test_build_scripts +distutils.tests.test_check +distutils.tests.test_clean +distutils.tests.test_cmd +distutils.tests.test_config +distutils.tests.test_config_cmd +distutils.tests.test_core +distutils.tests.test_cygwinccompiler +distutils.tests.test_dep_util +distutils.tests.test_dir_util +distutils.tests.test_dist +distutils.tests.test_extension +distutils.tests.test_file_util +distutils.tests.test_filelist +distutils.tests.test_install +distutils.tests.test_install_data +distutils.tests.test_install_headers +distutils.tests.test_install_lib +distutils.tests.test_install_scripts +distutils.tests.test_log +distutils.tests.test_msvc9compiler +distutils.tests.test_register +distutils.tests.test_sdist +distutils.tests.test_spawn +distutils.tests.test_sysconfig +distutils.tests.test_text_file +distutils.tests.test_unixccompiler +distutils.tests.test_upload +distutils.tests.test_util +distutils.tests.test_version +distutils.tests.test_versionpredicate distutils.text_file distutils.unixccompiler distutils.util distutils.version +distutils.versionpredicate doctest dummy_threading email +email._encoded_words +email._header_value_parser +email._parseaddr +email._policybase +email.base64mime email.charset email.contentmanager email.encoders email.errors +email.feedparser email.generator email.header email.headerregistry email.iterators email.message email.mime +email.mime.application +email.mime.audio +email.mime.base +email.mime.image +email.mime.message +email.mime.multipart +email.mime.nonmultipart +email.mime.text email.parser email.policy +email.quoprimime email.utils +encodings +encodings.aliases +encodings.ascii +encodings.base64_codec +encodings.big5 +encodings.big5hkscs +encodings.bz2_codec +encodings.charmap +encodings.cp037 +encodings.cp1006 +encodings.cp1026 +encodings.cp1125 +encodings.cp1140 +encodings.cp1250 +encodings.cp1251 +encodings.cp1252 +encodings.cp1253 +encodings.cp1254 +encodings.cp1255 +encodings.cp1256 +encodings.cp1257 +encodings.cp1258 +encodings.cp273 +encodings.cp424 +encodings.cp437 +encodings.cp500 +encodings.cp65001 +encodings.cp720 +encodings.cp737 +encodings.cp775 +encodings.cp850 +encodings.cp852 +encodings.cp855 +encodings.cp856 +encodings.cp857 +encodings.cp858 +encodings.cp860 +encodings.cp861 +encodings.cp862 +encodings.cp863 +encodings.cp864 +encodings.cp865 +encodings.cp866 +encodings.cp869 +encodings.cp874 +encodings.cp875 +encodings.cp932 +encodings.cp949 +encodings.cp950 +encodings.euc_jis_2004 +encodings.euc_jisx0213 +encodings.euc_jp +encodings.euc_kr +encodings.gb18030 +encodings.gb2312 +encodings.gbk +encodings.hex_codec +encodings.hp_roman8 +encodings.hz encodings.idna +encodings.iso2022_jp +encodings.iso2022_jp_1 +encodings.iso2022_jp_2 +encodings.iso2022_jp_2004 +encodings.iso2022_jp_3 +encodings.iso2022_jp_ext +encodings.iso2022_kr +encodings.iso8859_1 +encodings.iso8859_10 +encodings.iso8859_11 +encodings.iso8859_13 +encodings.iso8859_14 +encodings.iso8859_15 +encodings.iso8859_16 +encodings.iso8859_2 +encodings.iso8859_3 +encodings.iso8859_4 +encodings.iso8859_5 +encodings.iso8859_6 +encodings.iso8859_7 +encodings.iso8859_8 +encodings.iso8859_9 +encodings.johab +encodings.koi8_r +encodings.koi8_u +encodings.latin_1 +encodings.mac_arabic +encodings.mac_centeuro +encodings.mac_croatian +encodings.mac_cyrillic +encodings.mac_farsi +encodings.mac_greek +encodings.mac_iceland +encodings.mac_latin2 +encodings.mac_roman +encodings.mac_romanian +encodings.mac_turkish encodings.mbcs +encodings.palmos +encodings.ptcp154 +encodings.punycode +encodings.quopri_codec +encodings.raw_unicode_escape +encodings.rot_13 +encodings.shift_jis +encodings.shift_jis_2004 +encodings.shift_jisx0213 +encodings.tis_620 +encodings.undefined +encodings.unicode_escape +encodings.unicode_internal +encodings.utf_16 +encodings.utf_16_be +encodings.utf_16_le +encodings.utf_32 +encodings.utf_32_be +encodings.utf_32_le +encodings.utf_7 +encodings.utf_8 encodings.utf_8_sig +encodings.uu_codec +encodings.zlib_codec ensurepip +ensurepip.__main__ +ensurepip._uninstall enum errno faulthandler @@ -132,6 +474,7 @@ fractions ftplib functools gc +genericpath getopt getpass gettext @@ -144,14 +487,101 @@ hmac html html.entities html.parser +http http.client http.cookiejar http.cookies http.server +idlelib +idlelib.AutoComplete +idlelib.AutoCompleteWindow +idlelib.AutoExpand +idlelib.Bindings +idlelib.CallTipWindow +idlelib.CallTips +idlelib.ClassBrowser +idlelib.CodeContext +idlelib.ColorDelegator +idlelib.Debugger +idlelib.Delegator +idlelib.EditorWindow +idlelib.FileList +idlelib.FormatParagraph +idlelib.GrepDialog +idlelib.HyperParser +idlelib.IOBinding +idlelib.IdleHistory +idlelib.MultiCall +idlelib.MultiStatusBar +idlelib.ObjectBrowser +idlelib.OutputWindow +idlelib.ParenMatch +idlelib.PathBrowser +idlelib.Percolator +idlelib.PyParse +idlelib.PyShell +idlelib.RemoteDebugger +idlelib.RemoteObjectBrowser +idlelib.ReplaceDialog +idlelib.RstripExtension +idlelib.ScriptBinding +idlelib.ScrolledList +idlelib.SearchDialog +idlelib.SearchDialogBase +idlelib.SearchEngine +idlelib.StackViewer +idlelib.ToolTip +idlelib.TreeWidget +idlelib.UndoDelegator +idlelib.WidgetRedirector +idlelib.WindowList +idlelib.ZoomHeight +idlelib.__main__ +idlelib.aboutDialog +idlelib.configDialog +idlelib.configHandler +idlelib.configHelpSourceEdit +idlelib.configSectionNameDialog +idlelib.dynOptionMenuWidget +idlelib.help +idlelib.idle +idlelib.idle_test +idlelib.idle_test.htest +idlelib.idle_test.mock_idle +idlelib.idle_test.mock_tk +idlelib.idle_test.test_autocomplete +idlelib.idle_test.test_autoexpand +idlelib.idle_test.test_calltips +idlelib.idle_test.test_config_name +idlelib.idle_test.test_configdialog +idlelib.idle_test.test_delegator +idlelib.idle_test.test_editor +idlelib.idle_test.test_formatparagraph +idlelib.idle_test.test_grep +idlelib.idle_test.test_hyperparser +idlelib.idle_test.test_idlehistory +idlelib.idle_test.test_io +idlelib.idle_test.test_parenmatch +idlelib.idle_test.test_pathbrowser +idlelib.idle_test.test_rstrip +idlelib.idle_test.test_searchdialogbase +idlelib.idle_test.test_searchengine +idlelib.idle_test.test_text +idlelib.idle_test.test_textview +idlelib.idle_test.test_warning +idlelib.idle_test.test_widgetredir +idlelib.idlever +idlelib.keybindingDialog +idlelib.macosxSupport +idlelib.rpc +idlelib.run +idlelib.tabbedpages +idlelib.textView imaplib imghdr imp importlib +importlib._bootstrap importlib.abc importlib.machinery importlib.util @@ -160,8 +590,112 @@ io ipaddress itertools json +json.decoder +json.encoder +json.scanner +json.tool keyword lib2to3 +lib2to3.__main__ +lib2to3.btm_matcher +lib2to3.btm_utils +lib2to3.fixer_base +lib2to3.fixer_util +lib2to3.fixes +lib2to3.fixes.fix_apply +lib2to3.fixes.fix_asserts +lib2to3.fixes.fix_basestring +lib2to3.fixes.fix_buffer +lib2to3.fixes.fix_callable +lib2to3.fixes.fix_dict +lib2to3.fixes.fix_except +lib2to3.fixes.fix_exec +lib2to3.fixes.fix_execfile +lib2to3.fixes.fix_exitfunc +lib2to3.fixes.fix_filter +lib2to3.fixes.fix_funcattrs +lib2to3.fixes.fix_future +lib2to3.fixes.fix_getcwdu +lib2to3.fixes.fix_has_key +lib2to3.fixes.fix_idioms +lib2to3.fixes.fix_import +lib2to3.fixes.fix_imports +lib2to3.fixes.fix_imports2 +lib2to3.fixes.fix_input +lib2to3.fixes.fix_intern +lib2to3.fixes.fix_isinstance +lib2to3.fixes.fix_itertools +lib2to3.fixes.fix_itertools_imports +lib2to3.fixes.fix_long +lib2to3.fixes.fix_map +lib2to3.fixes.fix_metaclass +lib2to3.fixes.fix_methodattrs +lib2to3.fixes.fix_ne +lib2to3.fixes.fix_next +lib2to3.fixes.fix_nonzero +lib2to3.fixes.fix_numliterals +lib2to3.fixes.fix_operator +lib2to3.fixes.fix_paren +lib2to3.fixes.fix_print +lib2to3.fixes.fix_raise +lib2to3.fixes.fix_raw_input +lib2to3.fixes.fix_reduce +lib2to3.fixes.fix_reload +lib2to3.fixes.fix_renames +lib2to3.fixes.fix_repr +lib2to3.fixes.fix_set_literal +lib2to3.fixes.fix_standarderror +lib2to3.fixes.fix_sys_exc +lib2to3.fixes.fix_throw +lib2to3.fixes.fix_tuple_params +lib2to3.fixes.fix_types +lib2to3.fixes.fix_unicode +lib2to3.fixes.fix_urllib +lib2to3.fixes.fix_ws_comma +lib2to3.fixes.fix_xrange +lib2to3.fixes.fix_xreadlines +lib2to3.fixes.fix_zip +lib2to3.main +lib2to3.patcomp +lib2to3.pgen2 +lib2to3.pgen2.conv +lib2to3.pgen2.driver +lib2to3.pgen2.grammar +lib2to3.pgen2.literals +lib2to3.pgen2.parse +lib2to3.pgen2.pgen +lib2to3.pgen2.token +lib2to3.pgen2.tokenize +lib2to3.pygram +lib2to3.pytree +lib2to3.refactor +lib2to3.tests +lib2to3.tests.__main__ +lib2to3.tests.data.bom +lib2to3.tests.data.crlf +lib2to3.tests.data.different_encoding +lib2to3.tests.data.false_encoding +lib2to3.tests.data.fixers.bad_order +lib2to3.tests.data.fixers.myfixes +lib2to3.tests.data.fixers.myfixes.fix_explicit +lib2to3.tests.data.fixers.myfixes.fix_first +lib2to3.tests.data.fixers.myfixes.fix_last +lib2to3.tests.data.fixers.myfixes.fix_parrot +lib2to3.tests.data.fixers.myfixes.fix_preorder +lib2to3.tests.data.fixers.no_fixer_cls +lib2to3.tests.data.fixers.parrot_example +lib2to3.tests.data.infinite_recursion +lib2to3.tests.data.py2_test_grammar +lib2to3.tests.data.py3_test_grammar +lib2to3.tests.pytree_idempotency +lib2to3.tests.support +lib2to3.tests.test_all_fixers +lib2to3.tests.test_fixers +lib2to3.tests.test_main +lib2to3.tests.test_parser +lib2to3.tests.test_pytree +lib2to3.tests.test_refactor +lib2to3.tests.test_util linecache locale logging @@ -169,6 +703,7 @@ logging.config logging.handlers lzma macpath +macurl2path mailbox mailcap marshal @@ -180,14 +715,33 @@ msilib msvcrt multiprocessing multiprocessing.connection +multiprocessing.context multiprocessing.dummy +multiprocessing.dummy.connection +multiprocessing.forkserver +multiprocessing.heap multiprocessing.managers multiprocessing.pool +multiprocessing.popen_fork +multiprocessing.popen_forkserver +multiprocessing.popen_spawn_posix +multiprocessing.popen_spawn_win32 +multiprocessing.process +multiprocessing.queues +multiprocessing.reduction +multiprocessing.resource_sharer +multiprocessing.semaphore_tracker multiprocessing.sharedctypes +multiprocessing.spawn +multiprocessing.synchronize +multiprocessing.util netrc nis nntplib +ntpath +nturl2path numbers +opcode operator optparse os @@ -204,6 +758,7 @@ platform plistlib poplib posix +posixpath pprint profile pstats @@ -212,6 +767,9 @@ pwd py_compile pyclbr pydoc +pydoc_data +pydoc_data.topics +pyexpat queue quopri random @@ -236,6 +794,20 @@ socket socketserver spwd sqlite3 +sqlite3.dbapi2 +sqlite3.dump +sqlite3.test +sqlite3.test.dbapi +sqlite3.test.dump +sqlite3.test.factory +sqlite3.test.hooks +sqlite3.test.regression +sqlite3.test.transactions +sqlite3.test.types +sqlite3.test.userfunctions +sre_compile +sre_constants +sre_parse ssl stat statistics @@ -255,13 +827,620 @@ telnetlib tempfile termios test +test.__main__ +test._test_multiprocessing +test.audiotests +test.autotest +test.bad_coding +test.bad_coding2 +test.badsyntax_3131 +test.badsyntax_future10 +test.badsyntax_future3 +test.badsyntax_future4 +test.badsyntax_future5 +test.badsyntax_future6 +test.badsyntax_future7 +test.badsyntax_future8 +test.badsyntax_future9 +test.badsyntax_pep3120 +test.buffer_tests +test.bytecode_helper +test.coding20731 +test.curses_tests +test.datetimetester +test.dis_module +test.doctest_aliases +test.double_const +test.encoded_modules +test.encoded_modules.module_iso_8859_1 +test.encoded_modules.module_koi8_r +test.final_a +test.final_b +test.fork_wait +test.future_test1 +test.future_test2 +test.gdb_sample +test.inspect_fodder +test.inspect_fodder2 +test.list_tests +test.lock_tests +test.make_ssl_certs +test.mapping_tests +test.memory_watchdog +test.mock_socket +test.mp_fork_bomb +test.multibytecodec_support +test.outstanding_bugs +test.pickletester +test.profilee +test.pyclbr_input +test.pydoc_mod +test.pydocfodder +test.pystone +test.re_tests +test.regrtest +test.relimport +test.reperf +test.sample_doctest +test.sample_doctest_no_docstrings +test.sample_doctest_no_doctests +test.script_helper +test.seq_tests +test.sortperf +test.ssl_servers +test.ssltests +test.string_tests +test.subprocessdata.fd_status +test.subprocessdata.input_reader +test.subprocessdata.qcat +test.subprocessdata.qgrep +test.subprocessdata.sigchild_ignore test.support +test.test___all__ +test.test___future__ +test.test__locale +test.test__opcode +test.test__osx_support +test.test_abc +test.test_abstract_numbers +test.test_aifc +test.test_argparse +test.test_array +test.test_ast +test.test_asynchat +test.test_asyncio +test.test_asyncio.__main__ +test.test_asyncio.echo +test.test_asyncio.echo2 +test.test_asyncio.echo3 +test.test_asyncio.test_base_events +test.test_asyncio.test_events +test.test_asyncio.test_futures +test.test_asyncio.test_locks +test.test_asyncio.test_proactor_events +test.test_asyncio.test_queues +test.test_asyncio.test_selector_events +test.test_asyncio.test_sslproto +test.test_asyncio.test_streams +test.test_asyncio.test_subprocess +test.test_asyncio.test_tasks +test.test_asyncio.test_transports +test.test_asyncio.test_unix_events +test.test_asyncio.test_windows_events +test.test_asyncio.test_windows_utils +test.test_asyncore +test.test_atexit +test.test_audioop +test.test_augassign +test.test_base64 +test.test_bigaddrspace +test.test_bigmem +test.test_binascii +test.test_binhex +test.test_binop +test.test_bisect +test.test_bool +test.test_buffer +test.test_bufio +test.test_builtin +test.test_bytes +test.test_bz2 +test.test_calendar +test.test_call +test.test_capi +test.test_cgi +test.test_cgitb +test.test_charmapcodec +test.test_class +test.test_cmath +test.test_cmd +test.test_cmd_line +test.test_cmd_line_script +test.test_code +test.test_code_module +test.test_codeccallbacks +test.test_codecencodings_cn +test.test_codecencodings_hk +test.test_codecencodings_iso2022 +test.test_codecencodings_jp +test.test_codecencodings_kr +test.test_codecencodings_tw +test.test_codecmaps_cn +test.test_codecmaps_hk +test.test_codecmaps_jp +test.test_codecmaps_kr +test.test_codecmaps_tw +test.test_codecs +test.test_codeop +test.test_collections +test.test_colorsys +test.test_compare +test.test_compile +test.test_compileall +test.test_complex +test.test_concurrent_futures +test.test_configparser +test.test_contains +test.test_contextlib +test.test_copy +test.test_copyreg +test.test_cprofile +test.test_crashers +test.test_crypt +test.test_csv +test.test_ctypes +test.test_curses +test.test_datetime +test.test_dbm +test.test_dbm_dumb +test.test_dbm_gnu +test.test_dbm_ndbm +test.test_decimal +test.test_decorators +test.test_defaultdict +test.test_deque +test.test_descr +test.test_descrtut +test.test_devpoll +test.test_dict +test.test_dictcomps +test.test_dictviews +test.test_difflib +test.test_dis +test.test_distutils +test.test_doctest +test.test_doctest2 +test.test_docxmlrpc +test.test_dummy_thread +test.test_dummy_threading +test.test_dynamic +test.test_dynamicclassattribute +test.test_email +test.test_email.__main__ +test.test_email.test__encoded_words +test.test_email.test__header_value_parser +test.test_email.test_asian_codecs +test.test_email.test_contentmanager +test.test_email.test_defect_handling +test.test_email.test_email +test.test_email.test_generator +test.test_email.test_headerregistry +test.test_email.test_inversion +test.test_email.test_message +test.test_email.test_parser +test.test_email.test_pickleable +test.test_email.test_policy +test.test_email.test_utils +test.test_email.torture_test +test.test_ensurepip +test.test_enum +test.test_enumerate +test.test_eof +test.test_epoll +test.test_errno +test.test_exception_variations +test.test_exceptions +test.test_extcall +test.test_faulthandler +test.test_fcntl +test.test_file +test.test_file_eintr +test.test_filecmp +test.test_fileinput +test.test_fileio +test.test_finalization +test.test_float +test.test_flufl +test.test_fnmatch +test.test_fork1 +test.test_format +test.test_fractions +test.test_frame +test.test_ftplib +test.test_funcattrs +test.test_functools +test.test_future +test.test_future3 +test.test_future4 +test.test_future5 +test.test_gc +test.test_gdb +test.test_generators +test.test_genericpath +test.test_genexps +test.test_getargs2 +test.test_getopt +test.test_getpass +test.test_gettext +test.test_glob +test.test_global +test.test_grammar +test.test_grp +test.test_gzip +test.test_hash +test.test_hashlib +test.test_heapq +test.test_hmac +test.test_html +test.test_htmlparser +test.test_http_cookiejar +test.test_http_cookies +test.test_httplib +test.test_httpservers +test.test_idle +test.test_imaplib +test.test_imghdr +test.test_imp +test.test_import +test.test_importlib +test.test_importlib.__main__ +test.test_importlib.abc +test.test_importlib.builtin +test.test_importlib.builtin.__main__ +test.test_importlib.builtin.test_finder +test.test_importlib.builtin.test_loader +test.test_importlib.builtin.util +test.test_importlib.extension +test.test_importlib.extension.__main__ +test.test_importlib.extension.test_case_sensitivity +test.test_importlib.extension.test_finder +test.test_importlib.extension.test_loader +test.test_importlib.extension.test_path_hook +test.test_importlib.extension.util +test.test_importlib.frozen +test.test_importlib.frozen.__main__ +test.test_importlib.frozen.test_finder +test.test_importlib.frozen.test_loader +test.test_importlib.import_ +test.test_importlib.import_.__main__ +test.test_importlib.import_.test___loader__ +test.test_importlib.import_.test___package__ +test.test_importlib.import_.test_api +test.test_importlib.import_.test_caching +test.test_importlib.import_.test_fromlist +test.test_importlib.import_.test_meta_path +test.test_importlib.import_.test_packages +test.test_importlib.import_.test_path +test.test_importlib.import_.test_relative_imports +test.test_importlib.import_.util +test.test_importlib.namespace_pkgs.both_portions.foo.one +test.test_importlib.namespace_pkgs.both_portions.foo.two +test.test_importlib.namespace_pkgs.module_and_namespace_package.a_test +test.test_importlib.namespace_pkgs.not_a_namespace_pkg.foo +test.test_importlib.namespace_pkgs.not_a_namespace_pkg.foo.one +test.test_importlib.namespace_pkgs.portion1.foo.one +test.test_importlib.namespace_pkgs.portion2.foo.two +test.test_importlib.namespace_pkgs.project1.parent.child.one +test.test_importlib.namespace_pkgs.project2.parent.child.two +test.test_importlib.namespace_pkgs.project3.parent.child.three +test.test_importlib.regrtest +test.test_importlib.source +test.test_importlib.source.__main__ +test.test_importlib.source.test_case_sensitivity +test.test_importlib.source.test_file_loader +test.test_importlib.source.test_finder +test.test_importlib.source.test_path_hook +test.test_importlib.source.test_source_encoding +test.test_importlib.source.util +test.test_importlib.test_abc +test.test_importlib.test_api +test.test_importlib.test_locks +test.test_importlib.test_namespace_pkgs +test.test_importlib.test_spec +test.test_importlib.test_util +test.test_importlib.test_windows +test.test_importlib.util +test.test_index +test.test_inspect +test.test_int +test.test_int_literal +test.test_io +test.test_ioctl +test.test_ipaddress +test.test_isinstance +test.test_iter +test.test_iterlen +test.test_itertools +test.test_json +test.test_json.__main__ +test.test_json.test_decode +test.test_json.test_default +test.test_json.test_dump +test.test_json.test_encode_basestring_ascii +test.test_json.test_enum +test.test_json.test_fail +test.test_json.test_float +test.test_json.test_indent +test.test_json.test_pass1 +test.test_json.test_pass2 +test.test_json.test_pass3 +test.test_json.test_recursion +test.test_json.test_scanstring +test.test_json.test_separators +test.test_json.test_speedups +test.test_json.test_tool +test.test_json.test_unicode +test.test_keyword +test.test_keywordonlyarg +test.test_kqueue +test.test_largefile +test.test_lib2to3 +test.test_linecache +test.test_list +test.test_listcomps +test.test_locale +test.test_logging +test.test_long +test.test_longexp +test.test_lzma +test.test_macpath +test.test_macurl2path +test.test_mailbox +test.test_mailcap +test.test_marshal +test.test_math +test.test_memoryio +test.test_memoryview +test.test_metaclass +test.test_mimetypes +test.test_minidom +test.test_mmap +test.test_module +test.test_modulefinder +test.test_msilib +test.test_multibytecodec +test.test_multiprocessing_fork +test.test_multiprocessing_forkserver +test.test_multiprocessing_main_handling +test.test_multiprocessing_spawn +test.test_netrc +test.test_nis +test.test_nntplib +test.test_normalization +test.test_ntpath +test.test_numeric_tower +test.test_opcodes +test.test_openpty +test.test_operator +test.test_optparse +test.test_ordered_dict +test.test_os +test.test_ossaudiodev +test.test_osx_env +test.test_parser +test.test_pathlib +test.test_pdb +test.test_peepholer +test.test_pep247 +test.test_pep277 +test.test_pep292 +test.test_pep3120 +test.test_pep3131 +test.test_pep3151 +test.test_pep352 +test.test_pep380 +test.test_pickle +test.test_pickletools +test.test_pipes +test.test_pkg +test.test_pkgimport +test.test_pkgutil +test.test_platform +test.test_plistlib +test.test_poll +test.test_popen +test.test_poplib +test.test_posix +test.test_posixpath +test.test_pow +test.test_pprint +test.test_print +test.test_profile +test.test_property +test.test_pstats +test.test_pty +test.test_pulldom +test.test_pwd +test.test_py_compile +test.test_pyclbr +test.test_pydoc +test.test_pyexpat +test.test_queue +test.test_quopri +test.test_raise +test.test_random +test.test_range +test.test_re +test.test_readline +test.test_regrtest +test.test_reprlib +test.test_resource +test.test_richcmp +test.test_rlcompleter +test.test_robotparser +test.test_runpy +test.test_sax +test.test_sched +test.test_scope +test.test_script_helper +test.test_select +test.test_selectors +test.test_set +test.test_setcomps +test.test_shelve +test.test_shlex +test.test_shutil +test.test_signal +test.test_site +test.test_slice +test.test_smtpd +test.test_smtplib +test.test_smtpnet +test.test_sndhdr +test.test_socket +test.test_socketserver +test.test_sort +test.test_source_encoding +test.test_spwd +test.test_sqlite +test.test_ssl +test.test_startfile +test.test_stat +test.test_statistics +test.test_strftime +test.test_string +test.test_stringprep +test.test_strlit +test.test_strptime +test.test_strtod +test.test_struct +test.test_structmembers +test.test_structseq +test.test_subprocess +test.test_sunau +test.test_sundry +test.test_super +test.test_support +test.test_symtable +test.test_syntax +test.test_sys +test.test_sys_setprofile +test.test_sys_settrace +test.test_sysconfig +test.test_syslog +test.test_tarfile +test.test_tcl +test.test_telnetlib +test.test_tempfile +test.test_textwrap +test.test_thread +test.test_threaded_import +test.test_threadedtempfile +test.test_threading +test.test_threading_local +test.test_threadsignals +test.test_time +test.test_timeit +test.test_timeout +test.test_tk +test.test_tokenize +test.test_trace +test.test_traceback +test.test_tracemalloc +test.test_ttk_guionly +test.test_ttk_textonly +test.test_tuple +test.test_typechecks +test.test_types +test.test_ucn +test.test_unary +test.test_unicode +test.test_unicode_file +test.test_unicodedata +test.test_unittest +test.test_univnewlines +test.test_unpack +test.test_unpack_ex +test.test_urllib +test.test_urllib2 +test.test_urllib2_localnet +test.test_urllib2net +test.test_urllib_response +test.test_urllibnet +test.test_urlparse +test.test_userdict +test.test_userlist +test.test_userstring +test.test_uu +test.test_uuid +test.test_venv +test.test_wait3 +test.test_wait4 +test.test_warnings +test.test_wave +test.test_weakref +test.test_weakset +test.test_webbrowser +test.test_winreg +test.test_winsound +test.test_with +test.test_wsgiref +test.test_xdrlib +test.test_xml_dom_minicompat +test.test_xml_etree +test.test_xml_etree_c +test.test_xmlrpc +test.test_xmlrpc_net +test.test_zipfile +test.test_zipfile64 +test.test_zipimport +test.test_zipimport_support +test.test_zlib +test.testcodec +test.tf_inherit_check +test.threaded_import_hangers +test.time_hashlib +test.tracedmodules +test.tracedmodules.testmod +test.warning_tests +test.win_console_handler +test.xmltests textwrap +this threading time timeit tkinter +tkinter.__main__ +tkinter._fix +tkinter.colorchooser +tkinter.commondialog +tkinter.constants +tkinter.dialog +tkinter.dnd +tkinter.filedialog +tkinter.font +tkinter.messagebox tkinter.scrolledtext +tkinter.simpledialog +tkinter.test +tkinter.test.runtktests +tkinter.test.support +tkinter.test.test_tkinter +tkinter.test.test_tkinter.test_font +tkinter.test.test_tkinter.test_geometry_managers +tkinter.test.test_tkinter.test_images +tkinter.test.test_tkinter.test_loadtk +tkinter.test.test_tkinter.test_misc +tkinter.test.test_tkinter.test_text +tkinter.test.test_tkinter.test_variables +tkinter.test.test_tkinter.test_widgets +tkinter.test.test_ttk +tkinter.test.test_ttk.test_extensions +tkinter.test.test_ttk.test_functions +tkinter.test.test_ttk.test_style +tkinter.test.test_ttk.test_widgets +tkinter.test.widget_tests tkinter.tix tkinter.ttk token @@ -272,10 +1451,65 @@ tracemalloc tty turtle turtledemo +turtledemo.__main__ +turtledemo.bytedesign +turtledemo.chaos +turtledemo.clock +turtledemo.colormixer +turtledemo.forest +turtledemo.fractalcurves +turtledemo.lindenmayer +turtledemo.minimal_hanoi +turtledemo.nim +turtledemo.paint +turtledemo.peace +turtledemo.penrose +turtledemo.planet_and_moon +turtledemo.round_dance +turtledemo.tree +turtledemo.two_canvases +turtledemo.wikipedia +turtledemo.yinyang types unicodedata unittest +unittest.__main__ +unittest.case +unittest.loader +unittest.main unittest.mock +unittest.result +unittest.runner +unittest.signals +unittest.suite +unittest.test +unittest.test.__main__ +unittest.test._test_warnings +unittest.test.dummy +unittest.test.support +unittest.test.test_assertions +unittest.test.test_break +unittest.test.test_case +unittest.test.test_discovery +unittest.test.test_functiontestcase +unittest.test.test_loader +unittest.test.test_program +unittest.test.test_result +unittest.test.test_runner +unittest.test.test_setups +unittest.test.test_skipping +unittest.test.test_suite +unittest.test.testmock +unittest.test.testmock.__main__ +unittest.test.testmock.support +unittest.test.testmock.testcallable +unittest.test.testmock.testhelpers +unittest.test.testmock.testmagicmethods +unittest.test.testmock.testmock +unittest.test.testmock.testpatch +unittest.test.testmock.testsentinel +unittest.test.testmock.testwith +unittest.util urllib urllib.error urllib.parse @@ -285,6 +1519,7 @@ urllib.robotparser uu uuid venv +venv.__main__ warnings wave weakref @@ -300,18 +1535,33 @@ wsgiref.validate xdrlib xml xml.dom +xml.dom.NodeFilter +xml.dom.domreg +xml.dom.expatbuilder +xml.dom.minicompat xml.dom.minidom xml.dom.pulldom +xml.dom.xmlbuilder +xml.etree +xml.etree.ElementInclude +xml.etree.ElementPath xml.etree.ElementTree +xml.etree.cElementTree +xml.parsers xml.parsers.expat xml.parsers.expat.errors xml.parsers.expat.model xml.sax +xml.sax._exceptions +xml.sax.expatreader xml.sax.handler xml.sax.saxutils xml.sax.xmlreader +xmlrpc xmlrpc.client xmlrpc.server +xxlimited +xxsubtype zipfile zipimport zlib diff --git a/stdlib_list/lists/3.5.txt b/stdlib_list/lists/3.5.txt index 53402e3..f5d6108 100644 --- a/stdlib_list/lists/3.5.txt +++ b/stdlib_list/lists/3.5.txt @@ -1,14 +1,111 @@ __future__ __main__ +_ast +_bisect +_bootlocale +_bz2 +_codecs +_codecs_cn +_codecs_hk +_codecs_iso2022 +_codecs_jp +_codecs_kr +_codecs_tw +_collections +_collections_abc +_compat_pickle +_compression +_crypt +_csv +_ctypes +_ctypes_test +_curses +_curses_panel +_datetime +_dbm +_decimal _dummy_thread +_elementtree +_frozen_importlib +_frozen_importlib_external +_functools +_gdbm +_hashlib +_heapq +_imp +_io +_json +_locale +_lsprof +_lzma +_markupbase +_md5 +_multibytecodec +_multiprocessing +_opcode +_operator +_osx_support +_pickle +_posixsubprocess +_pydecimal +_pyio +_random +_sha1 +_sha256 +_sha512 +_signal +_sitebuiltins +_socket +_sqlite3 +_sre +_ssl +_stat +_string +_strptime +_struct +_symtable +_sysconfigdata +_testbuffer +_testcapi +_testimportmultiple +_testmultiphase _thread +_threading_local +_tkinter +_tracemalloc +_warnings +_weakref +_weakrefset abc aifc +antigravity argparse array ast asynchat asyncio +asyncio.base_events +asyncio.base_subprocess +asyncio.compat +asyncio.constants +asyncio.coroutines +asyncio.events +asyncio.futures +asyncio.locks +asyncio.log +asyncio.proactor_events +asyncio.protocols +asyncio.queues +asyncio.selector_events +asyncio.sslproto +asyncio.streams +asyncio.subprocess +asyncio.tasks +asyncio.test_utils +asyncio.transports +asyncio.unix_events +asyncio.windows_events +asyncio.windows_utils asyncore atexit audioop @@ -30,10 +127,15 @@ code codecs codeop collections +collections.__main__ collections.abc colorsys compileall +concurrent concurrent.futures +concurrent.futures._base +concurrent.futures.process +concurrent.futures.thread configparser contextlib copy @@ -41,8 +143,69 @@ copyreg crypt csv ctypes +ctypes._endian +ctypes.macholib +ctypes.macholib.dyld +ctypes.macholib.dylib +ctypes.macholib.framework +ctypes.test +ctypes.test.__main__ +ctypes.test.test_anon +ctypes.test.test_array_in_pointer +ctypes.test.test_arrays +ctypes.test.test_as_parameter +ctypes.test.test_bitfields +ctypes.test.test_buffers +ctypes.test.test_bytes +ctypes.test.test_byteswap +ctypes.test.test_callbacks +ctypes.test.test_cast +ctypes.test.test_cfuncs +ctypes.test.test_checkretval +ctypes.test.test_delattr +ctypes.test.test_errno +ctypes.test.test_find +ctypes.test.test_frombuffer +ctypes.test.test_funcptr +ctypes.test.test_functions +ctypes.test.test_incomplete +ctypes.test.test_init +ctypes.test.test_internals +ctypes.test.test_keeprefs +ctypes.test.test_libc +ctypes.test.test_loading +ctypes.test.test_macholib +ctypes.test.test_memfunctions +ctypes.test.test_numbers +ctypes.test.test_objects +ctypes.test.test_parameters +ctypes.test.test_pep3118 +ctypes.test.test_pickling +ctypes.test.test_pointers +ctypes.test.test_prototypes +ctypes.test.test_python_api +ctypes.test.test_random_things +ctypes.test.test_refcounts +ctypes.test.test_repr +ctypes.test.test_returnfuncptrs +ctypes.test.test_simplesubclasses +ctypes.test.test_sizes +ctypes.test.test_slicing +ctypes.test.test_stringptr +ctypes.test.test_strings +ctypes.test.test_struct_fields +ctypes.test.test_structures +ctypes.test.test_unaligned_structures +ctypes.test.test_unicode +ctypes.test.test_values +ctypes.test.test_varsize_struct +ctypes.test.test_win32 +ctypes.test.test_wintypes +ctypes.util +ctypes.wintypes curses curses.ascii +curses.has_key curses.panel curses.textpad datetime @@ -54,6 +217,7 @@ decimal difflib dis distutils +distutils._msvccompiler distutils.archive_util distutils.bcppcompiler distutils.ccompiler @@ -75,11 +239,14 @@ distutils.command.clean distutils.command.config distutils.command.install distutils.command.install_data +distutils.command.install_egg_info distutils.command.install_headers distutils.command.install_lib distutils.command.install_scripts distutils.command.register distutils.command.sdist +distutils.command.upload +distutils.config distutils.core distutils.cygwinccompiler distutils.debug @@ -92,33 +259,217 @@ distutils.fancy_getopt distutils.file_util distutils.filelist distutils.log +distutils.msvc9compiler distutils.msvccompiler distutils.spawn distutils.sysconfig +distutils.tests +distutils.tests.support +distutils.tests.test_archive_util +distutils.tests.test_bdist +distutils.tests.test_bdist_dumb +distutils.tests.test_bdist_msi +distutils.tests.test_bdist_rpm +distutils.tests.test_bdist_wininst +distutils.tests.test_build +distutils.tests.test_build_clib +distutils.tests.test_build_ext +distutils.tests.test_build_py +distutils.tests.test_build_scripts +distutils.tests.test_check +distutils.tests.test_clean +distutils.tests.test_cmd +distutils.tests.test_config +distutils.tests.test_config_cmd +distutils.tests.test_core +distutils.tests.test_cygwinccompiler +distutils.tests.test_dep_util +distutils.tests.test_dir_util +distutils.tests.test_dist +distutils.tests.test_extension +distutils.tests.test_file_util +distutils.tests.test_filelist +distutils.tests.test_install +distutils.tests.test_install_data +distutils.tests.test_install_headers +distutils.tests.test_install_lib +distutils.tests.test_install_scripts +distutils.tests.test_log +distutils.tests.test_msvc9compiler +distutils.tests.test_msvccompiler +distutils.tests.test_register +distutils.tests.test_sdist +distutils.tests.test_spawn +distutils.tests.test_sysconfig +distutils.tests.test_text_file +distutils.tests.test_unixccompiler +distutils.tests.test_upload +distutils.tests.test_util +distutils.tests.test_version +distutils.tests.test_versionpredicate distutils.text_file distutils.unixccompiler distutils.util distutils.version +distutils.versionpredicate doctest dummy_threading email +email._encoded_words +email._header_value_parser +email._parseaddr +email._policybase +email.base64mime email.charset email.contentmanager email.encoders email.errors +email.feedparser email.generator email.header email.headerregistry email.iterators email.message email.mime +email.mime.application +email.mime.audio +email.mime.base +email.mime.image +email.mime.message +email.mime.multipart +email.mime.nonmultipart +email.mime.text email.parser email.policy +email.quoprimime email.utils +encodings +encodings.aliases +encodings.ascii +encodings.base64_codec +encodings.big5 +encodings.big5hkscs +encodings.bz2_codec +encodings.charmap +encodings.cp037 +encodings.cp1006 +encodings.cp1026 +encodings.cp1125 +encodings.cp1140 +encodings.cp1250 +encodings.cp1251 +encodings.cp1252 +encodings.cp1253 +encodings.cp1254 +encodings.cp1255 +encodings.cp1256 +encodings.cp1257 +encodings.cp1258 +encodings.cp273 +encodings.cp424 +encodings.cp437 +encodings.cp500 +encodings.cp65001 +encodings.cp720 +encodings.cp737 +encodings.cp775 +encodings.cp850 +encodings.cp852 +encodings.cp855 +encodings.cp856 +encodings.cp857 +encodings.cp858 +encodings.cp860 +encodings.cp861 +encodings.cp862 +encodings.cp863 +encodings.cp864 +encodings.cp865 +encodings.cp866 +encodings.cp869 +encodings.cp874 +encodings.cp875 +encodings.cp932 +encodings.cp949 +encodings.cp950 +encodings.euc_jis_2004 +encodings.euc_jisx0213 +encodings.euc_jp +encodings.euc_kr +encodings.gb18030 +encodings.gb2312 +encodings.gbk +encodings.hex_codec +encodings.hp_roman8 +encodings.hz encodings.idna +encodings.iso2022_jp +encodings.iso2022_jp_1 +encodings.iso2022_jp_2 +encodings.iso2022_jp_2004 +encodings.iso2022_jp_3 +encodings.iso2022_jp_ext +encodings.iso2022_kr +encodings.iso8859_1 +encodings.iso8859_10 +encodings.iso8859_11 +encodings.iso8859_13 +encodings.iso8859_14 +encodings.iso8859_15 +encodings.iso8859_16 +encodings.iso8859_2 +encodings.iso8859_3 +encodings.iso8859_4 +encodings.iso8859_5 +encodings.iso8859_6 +encodings.iso8859_7 +encodings.iso8859_8 +encodings.iso8859_9 +encodings.johab +encodings.koi8_r +encodings.koi8_t +encodings.koi8_u +encodings.kz1048 +encodings.latin_1 +encodings.mac_arabic +encodings.mac_centeuro +encodings.mac_croatian +encodings.mac_cyrillic +encodings.mac_farsi +encodings.mac_greek +encodings.mac_iceland +encodings.mac_latin2 +encodings.mac_roman +encodings.mac_romanian +encodings.mac_turkish encodings.mbcs +encodings.palmos +encodings.ptcp154 +encodings.punycode +encodings.quopri_codec +encodings.raw_unicode_escape +encodings.rot_13 +encodings.shift_jis +encodings.shift_jis_2004 +encodings.shift_jisx0213 +encodings.tis_620 +encodings.undefined +encodings.unicode_escape +encodings.unicode_internal +encodings.utf_16 +encodings.utf_16_be +encodings.utf_16_le +encodings.utf_32 +encodings.utf_32_be +encodings.utf_32_le +encodings.utf_7 +encodings.utf_8 encodings.utf_8_sig +encodings.uu_codec +encodings.zlib_codec ensurepip +ensurepip.__main__ +ensurepip._uninstall enum errno faulthandler @@ -132,6 +483,7 @@ fractions ftplib functools gc +genericpath getopt getpass gettext @@ -149,10 +501,104 @@ http.client http.cookiejar http.cookies http.server +idlelib +idlelib.AutoComplete +idlelib.AutoCompleteWindow +idlelib.AutoExpand +idlelib.Bindings +idlelib.CallTipWindow +idlelib.CallTips +idlelib.ClassBrowser +idlelib.CodeContext +idlelib.ColorDelegator +idlelib.Debugger +idlelib.Delegator +idlelib.EditorWindow +idlelib.FileList +idlelib.FormatParagraph +idlelib.GrepDialog +idlelib.HyperParser +idlelib.IOBinding +idlelib.IdleHistory +idlelib.MultiCall +idlelib.MultiStatusBar +idlelib.ObjectBrowser +idlelib.OutputWindow +idlelib.ParenMatch +idlelib.PathBrowser +idlelib.Percolator +idlelib.PyParse +idlelib.PyShell +idlelib.RemoteDebugger +idlelib.RemoteObjectBrowser +idlelib.ReplaceDialog +idlelib.RstripExtension +idlelib.ScriptBinding +idlelib.ScrolledList +idlelib.SearchDialog +idlelib.SearchDialogBase +idlelib.SearchEngine +idlelib.StackViewer +idlelib.ToolTip +idlelib.TreeWidget +idlelib.UndoDelegator +idlelib.WidgetRedirector +idlelib.WindowList +idlelib.ZoomHeight +idlelib.__main__ +idlelib.aboutDialog +idlelib.configDialog +idlelib.configHandler +idlelib.configHelpSourceEdit +idlelib.configSectionNameDialog +idlelib.dynOptionMenuWidget +idlelib.help +idlelib.idle +idlelib.idle_test +idlelib.idle_test.htest +idlelib.idle_test.mock_idle +idlelib.idle_test.mock_tk +idlelib.idle_test.test_autocomplete +idlelib.idle_test.test_autoexpand +idlelib.idle_test.test_calltips +idlelib.idle_test.test_config_help +idlelib.idle_test.test_config_name +idlelib.idle_test.test_configdialog +idlelib.idle_test.test_delegator +idlelib.idle_test.test_editmenu +idlelib.idle_test.test_editor +idlelib.idle_test.test_formatparagraph +idlelib.idle_test.test_grep +idlelib.idle_test.test_help_about +idlelib.idle_test.test_hyperparser +idlelib.idle_test.test_idlehistory +idlelib.idle_test.test_io +idlelib.idle_test.test_parenmatch +idlelib.idle_test.test_pathbrowser +idlelib.idle_test.test_percolator +idlelib.idle_test.test_replacedialog +idlelib.idle_test.test_rstrip +idlelib.idle_test.test_searchdialog +idlelib.idle_test.test_searchdialogbase +idlelib.idle_test.test_searchengine +idlelib.idle_test.test_text +idlelib.idle_test.test_textview +idlelib.idle_test.test_undodelegator +idlelib.idle_test.test_warning +idlelib.idle_test.test_widgetredir +idlelib.idlever +idlelib.keybindingDialog +idlelib.macosxSupport +idlelib.rpc +idlelib.run +idlelib.tabbedpages +idlelib.textView imaplib imghdr imp importlib +importlib._bootstrap +importlib._bootstrap_external importlib.abc importlib.machinery importlib.util @@ -161,9 +607,111 @@ io ipaddress itertools json +json.decoder +json.encoder +json.scanner json.tool keyword lib2to3 +lib2to3.__main__ +lib2to3.btm_matcher +lib2to3.btm_utils +lib2to3.fixer_base +lib2to3.fixer_util +lib2to3.fixes +lib2to3.fixes.fix_apply +lib2to3.fixes.fix_asserts +lib2to3.fixes.fix_basestring +lib2to3.fixes.fix_buffer +lib2to3.fixes.fix_dict +lib2to3.fixes.fix_except +lib2to3.fixes.fix_exec +lib2to3.fixes.fix_execfile +lib2to3.fixes.fix_exitfunc +lib2to3.fixes.fix_filter +lib2to3.fixes.fix_funcattrs +lib2to3.fixes.fix_future +lib2to3.fixes.fix_getcwdu +lib2to3.fixes.fix_has_key +lib2to3.fixes.fix_idioms +lib2to3.fixes.fix_import +lib2to3.fixes.fix_imports +lib2to3.fixes.fix_imports2 +lib2to3.fixes.fix_input +lib2to3.fixes.fix_intern +lib2to3.fixes.fix_isinstance +lib2to3.fixes.fix_itertools +lib2to3.fixes.fix_itertools_imports +lib2to3.fixes.fix_long +lib2to3.fixes.fix_map +lib2to3.fixes.fix_metaclass +lib2to3.fixes.fix_methodattrs +lib2to3.fixes.fix_ne +lib2to3.fixes.fix_next +lib2to3.fixes.fix_nonzero +lib2to3.fixes.fix_numliterals +lib2to3.fixes.fix_operator +lib2to3.fixes.fix_paren +lib2to3.fixes.fix_print +lib2to3.fixes.fix_raise +lib2to3.fixes.fix_raw_input +lib2to3.fixes.fix_reduce +lib2to3.fixes.fix_reload +lib2to3.fixes.fix_renames +lib2to3.fixes.fix_repr +lib2to3.fixes.fix_set_literal +lib2to3.fixes.fix_standarderror +lib2to3.fixes.fix_sys_exc +lib2to3.fixes.fix_throw +lib2to3.fixes.fix_tuple_params +lib2to3.fixes.fix_types +lib2to3.fixes.fix_unicode +lib2to3.fixes.fix_urllib +lib2to3.fixes.fix_ws_comma +lib2to3.fixes.fix_xrange +lib2to3.fixes.fix_xreadlines +lib2to3.fixes.fix_zip +lib2to3.main +lib2to3.patcomp +lib2to3.pgen2 +lib2to3.pgen2.conv +lib2to3.pgen2.driver +lib2to3.pgen2.grammar +lib2to3.pgen2.literals +lib2to3.pgen2.parse +lib2to3.pgen2.pgen +lib2to3.pgen2.token +lib2to3.pgen2.tokenize +lib2to3.pygram +lib2to3.pytree +lib2to3.refactor +lib2to3.tests +lib2to3.tests.__main__ +lib2to3.tests.data.bom +lib2to3.tests.data.crlf +lib2to3.tests.data.different_encoding +lib2to3.tests.data.false_encoding +lib2to3.tests.data.fixers.bad_order +lib2to3.tests.data.fixers.myfixes +lib2to3.tests.data.fixers.myfixes.fix_explicit +lib2to3.tests.data.fixers.myfixes.fix_first +lib2to3.tests.data.fixers.myfixes.fix_last +lib2to3.tests.data.fixers.myfixes.fix_parrot +lib2to3.tests.data.fixers.myfixes.fix_preorder +lib2to3.tests.data.fixers.no_fixer_cls +lib2to3.tests.data.fixers.parrot_example +lib2to3.tests.data.infinite_recursion +lib2to3.tests.data.py2_test_grammar +lib2to3.tests.data.py3_test_grammar +lib2to3.tests.pytree_idempotency +lib2to3.tests.support +lib2to3.tests.test_all_fixers +lib2to3.tests.test_fixers +lib2to3.tests.test_main +lib2to3.tests.test_parser +lib2to3.tests.test_pytree +lib2to3.tests.test_refactor +lib2to3.tests.test_util linecache locale logging @@ -171,6 +719,7 @@ logging.config logging.handlers lzma macpath +macurl2path mailbox mailcap marshal @@ -182,14 +731,33 @@ msilib msvcrt multiprocessing multiprocessing.connection +multiprocessing.context multiprocessing.dummy +multiprocessing.dummy.connection +multiprocessing.forkserver +multiprocessing.heap multiprocessing.managers multiprocessing.pool +multiprocessing.popen_fork +multiprocessing.popen_forkserver +multiprocessing.popen_spawn_posix +multiprocessing.popen_spawn_win32 +multiprocessing.process +multiprocessing.queues +multiprocessing.reduction +multiprocessing.resource_sharer +multiprocessing.semaphore_tracker multiprocessing.sharedctypes +multiprocessing.spawn +multiprocessing.synchronize +multiprocessing.util netrc nis nntplib +ntpath +nturl2path numbers +opcode operator optparse os @@ -206,6 +774,7 @@ platform plistlib poplib posix +posixpath pprint profile pstats @@ -214,6 +783,9 @@ pwd py_compile pyclbr pydoc +pydoc_data +pydoc_data.topics +pyexpat queue quopri random @@ -238,6 +810,20 @@ socket socketserver spwd sqlite3 +sqlite3.dbapi2 +sqlite3.dump +sqlite3.test +sqlite3.test.dbapi +sqlite3.test.dump +sqlite3.test.factory +sqlite3.test.hooks +sqlite3.test.regression +sqlite3.test.transactions +sqlite3.test.types +sqlite3.test.userfunctions +sre_compile +sre_constants +sre_parse ssl stat statistics @@ -257,13 +843,661 @@ telnetlib tempfile termios test +test.__main__ +test._test_multiprocessing +test.audiotests +test.autotest +test.bad_coding +test.bad_coding2 +test.badsyntax_3131 +test.badsyntax_async1 +test.badsyntax_async2 +test.badsyntax_async3 +test.badsyntax_async4 +test.badsyntax_async5 +test.badsyntax_async6 +test.badsyntax_async7 +test.badsyntax_async8 +test.badsyntax_future10 +test.badsyntax_future3 +test.badsyntax_future4 +test.badsyntax_future5 +test.badsyntax_future6 +test.badsyntax_future7 +test.badsyntax_future8 +test.badsyntax_future9 +test.badsyntax_pep3120 +test.bisect +test.bytecode_helper +test.coding20731 +test.curses_tests +test.datetimetester +test.dis_module +test.doctest_aliases +test.double_const +test.eintrdata.eintr_tester +test.encoded_modules +test.encoded_modules.module_iso_8859_1 +test.encoded_modules.module_koi8_r +test.final_a +test.final_b +test.fork_wait +test.future_test1 +test.future_test2 +test.gdb_sample +test.imp_dummy +test.inspect_fodder +test.inspect_fodder2 +test.list_tests +test.lock_tests +test.make_ssl_certs +test.mapping_tests +test.memory_watchdog +test.mock_socket +test.mod_generics_cache +test.mp_fork_bomb +test.mp_preload +test.multibytecodec_support +test.outstanding_bugs +test.pickletester +test.profilee +test.pyclbr_input +test.pydoc_mod +test.pydocfodder +test.pystone +test.re_tests +test.regrtest +test.relimport +test.reperf +test.sample_doctest +test.sample_doctest_no_docstrings +test.sample_doctest_no_doctests +test.seq_tests +test.sortperf +test.ssl_servers +test.ssltests +test.string_tests +test.subprocessdata.fd_status +test.subprocessdata.input_reader +test.subprocessdata.qcat +test.subprocessdata.qgrep +test.subprocessdata.sigchild_ignore test.support +test.support.script_helper +test.test___all__ +test.test___future__ +test.test__locale +test.test__opcode +test.test__osx_support +test.test_abc +test.test_abstract_numbers +test.test_aifc +test.test_argparse +test.test_array +test.test_asdl_parser +test.test_ast +test.test_asynchat +test.test_asyncio +test.test_asyncio.__main__ +test.test_asyncio.echo +test.test_asyncio.echo2 +test.test_asyncio.echo3 +test.test_asyncio.test_base_events +test.test_asyncio.test_events +test.test_asyncio.test_futures +test.test_asyncio.test_locks +test.test_asyncio.test_pep492 +test.test_asyncio.test_proactor_events +test.test_asyncio.test_queues +test.test_asyncio.test_selector_events +test.test_asyncio.test_sslproto +test.test_asyncio.test_streams +test.test_asyncio.test_subprocess +test.test_asyncio.test_tasks +test.test_asyncio.test_transports +test.test_asyncio.test_unix_events +test.test_asyncio.test_windows_events +test.test_asyncio.test_windows_utils +test.test_asyncore +test.test_atexit +test.test_audioop +test.test_augassign +test.test_base64 +test.test_bigaddrspace +test.test_bigmem +test.test_binascii +test.test_binhex +test.test_binop +test.test_bisect +test.test_bool +test.test_buffer +test.test_bufio +test.test_builtin +test.test_bytes +test.test_bz2 +test.test_calendar +test.test_call +test.test_capi +test.test_cgi +test.test_cgitb +test.test_charmapcodec +test.test_class +test.test_cmath +test.test_cmd +test.test_cmd_line +test.test_cmd_line_script +test.test_code +test.test_code_module +test.test_codeccallbacks +test.test_codecencodings_cn +test.test_codecencodings_hk +test.test_codecencodings_iso2022 +test.test_codecencodings_jp +test.test_codecencodings_kr +test.test_codecencodings_tw +test.test_codecmaps_cn +test.test_codecmaps_hk +test.test_codecmaps_jp +test.test_codecmaps_kr +test.test_codecmaps_tw +test.test_codecs +test.test_codeop +test.test_collections +test.test_colorsys +test.test_compare +test.test_compile +test.test_compileall +test.test_complex +test.test_concurrent_futures +test.test_configparser +test.test_contains +test.test_contextlib +test.test_copy +test.test_copyreg +test.test_coroutines +test.test_cprofile +test.test_crashers +test.test_crypt +test.test_csv +test.test_ctypes +test.test_curses +test.test_datetime +test.test_dbm +test.test_dbm_dumb +test.test_dbm_gnu +test.test_dbm_ndbm +test.test_decimal +test.test_decorators +test.test_defaultdict +test.test_deque +test.test_descr +test.test_descrtut +test.test_devpoll +test.test_dict +test.test_dictcomps +test.test_dictviews +test.test_difflib +test.test_dis +test.test_distutils +test.test_doctest +test.test_doctest2 +test.test_docxmlrpc +test.test_dummy_thread +test.test_dummy_threading +test.test_dynamic +test.test_dynamicclassattribute +test.test_eintr +test.test_email +test.test_email.__main__ +test.test_email.test__encoded_words +test.test_email.test__header_value_parser +test.test_email.test_asian_codecs +test.test_email.test_contentmanager +test.test_email.test_defect_handling +test.test_email.test_email +test.test_email.test_generator +test.test_email.test_headerregistry +test.test_email.test_inversion +test.test_email.test_message +test.test_email.test_parser +test.test_email.test_pickleable +test.test_email.test_policy +test.test_email.test_utils +test.test_email.torture_test +test.test_ensurepip +test.test_enum +test.test_enumerate +test.test_eof +test.test_epoll +test.test_errno +test.test_exception_variations +test.test_exceptions +test.test_extcall +test.test_faulthandler +test.test_fcntl +test.test_file +test.test_file_eintr +test.test_filecmp +test.test_fileinput +test.test_fileio +test.test_finalization +test.test_float +test.test_flufl +test.test_fnmatch +test.test_fork1 +test.test_format +test.test_fractions +test.test_frame +test.test_ftplib +test.test_funcattrs +test.test_functools +test.test_future +test.test_future3 +test.test_future4 +test.test_future5 +test.test_gc +test.test_gdb +test.test_generators +test.test_genericpath +test.test_genexps +test.test_getargs2 +test.test_getopt +test.test_getpass +test.test_gettext +test.test_glob +test.test_global +test.test_grammar +test.test_grp +test.test_gzip +test.test_hash +test.test_hashlib +test.test_heapq +test.test_hmac +test.test_html +test.test_htmlparser +test.test_http_cookiejar +test.test_http_cookies +test.test_httplib +test.test_httpservers +test.test_idle +test.test_imaplib +test.test_imghdr +test.test_imp +test.test_import +test.test_import.__main__ +test.test_import.data.circular_imports.basic +test.test_import.data.circular_imports.basic2 +test.test_import.data.circular_imports.indirect +test.test_import.data.circular_imports.rebinding +test.test_import.data.circular_imports.rebinding2 +test.test_import.data.circular_imports.subpackage +test.test_import.data.circular_imports.subpkg.subpackage2 +test.test_import.data.circular_imports.subpkg.util +test.test_import.data.circular_imports.util +test.test_import.data.package2.submodule1 +test.test_import.data.package2.submodule2 +test.test_importlib +test.test_importlib.__main__ +test.test_importlib.abc +test.test_importlib.builtin +test.test_importlib.builtin.__main__ +test.test_importlib.builtin.test_finder +test.test_importlib.builtin.test_loader +test.test_importlib.extension +test.test_importlib.extension.__main__ +test.test_importlib.extension.test_case_sensitivity +test.test_importlib.extension.test_finder +test.test_importlib.extension.test_loader +test.test_importlib.extension.test_path_hook +test.test_importlib.frozen +test.test_importlib.frozen.__main__ +test.test_importlib.frozen.test_finder +test.test_importlib.frozen.test_loader +test.test_importlib.import_ +test.test_importlib.import_.__main__ +test.test_importlib.import_.test___loader__ +test.test_importlib.import_.test___package__ +test.test_importlib.import_.test_api +test.test_importlib.import_.test_caching +test.test_importlib.import_.test_fromlist +test.test_importlib.import_.test_meta_path +test.test_importlib.import_.test_packages +test.test_importlib.import_.test_path +test.test_importlib.import_.test_relative_imports +test.test_importlib.namespace_pkgs.both_portions.foo.one +test.test_importlib.namespace_pkgs.both_portions.foo.two +test.test_importlib.namespace_pkgs.module_and_namespace_package.a_test +test.test_importlib.namespace_pkgs.not_a_namespace_pkg.foo +test.test_importlib.namespace_pkgs.not_a_namespace_pkg.foo.one +test.test_importlib.namespace_pkgs.portion1.foo.one +test.test_importlib.namespace_pkgs.portion2.foo.two +test.test_importlib.namespace_pkgs.project1.parent.child.one +test.test_importlib.namespace_pkgs.project2.parent.child.two +test.test_importlib.namespace_pkgs.project3.parent.child.three +test.test_importlib.regrtest +test.test_importlib.source +test.test_importlib.source.__main__ +test.test_importlib.source.test_case_sensitivity +test.test_importlib.source.test_file_loader +test.test_importlib.source.test_finder +test.test_importlib.source.test_path_hook +test.test_importlib.source.test_source_encoding +test.test_importlib.test_abc +test.test_importlib.test_api +test.test_importlib.test_lazy +test.test_importlib.test_locks +test.test_importlib.test_namespace_pkgs +test.test_importlib.test_spec +test.test_importlib.test_util +test.test_importlib.test_windows +test.test_importlib.util +test.test_index +test.test_inspect +test.test_int +test.test_int_literal +test.test_io +test.test_ioctl +test.test_ipaddress +test.test_isinstance +test.test_iter +test.test_iterlen +test.test_itertools +test.test_json +test.test_json.__main__ +test.test_json.test_decode +test.test_json.test_default +test.test_json.test_dump +test.test_json.test_encode_basestring_ascii +test.test_json.test_enum +test.test_json.test_fail +test.test_json.test_float +test.test_json.test_indent +test.test_json.test_pass1 +test.test_json.test_pass2 +test.test_json.test_pass3 +test.test_json.test_recursion +test.test_json.test_scanstring +test.test_json.test_separators +test.test_json.test_speedups +test.test_json.test_tool +test.test_json.test_unicode +test.test_keyword +test.test_keywordonlyarg +test.test_kqueue +test.test_largefile +test.test_lib2to3 +test.test_linecache +test.test_list +test.test_listcomps +test.test_locale +test.test_logging +test.test_long +test.test_longexp +test.test_lzma +test.test_macpath +test.test_macurl2path +test.test_mailbox +test.test_mailcap +test.test_marshal +test.test_math +test.test_memoryio +test.test_memoryview +test.test_metaclass +test.test_mimetypes +test.test_minidom +test.test_mmap +test.test_module +test.test_modulefinder +test.test_msilib +test.test_multibytecodec +test.test_multiprocessing_fork +test.test_multiprocessing_forkserver +test.test_multiprocessing_main_handling +test.test_multiprocessing_spawn +test.test_netrc +test.test_nis +test.test_nntplib +test.test_normalization +test.test_ntpath +test.test_numeric_tower +test.test_opcodes +test.test_openpty +test.test_operator +test.test_optparse +test.test_ordered_dict +test.test_os +test.test_ossaudiodev +test.test_osx_env +test.test_parser +test.test_pathlib +test.test_pdb +test.test_peepholer +test.test_pep247 +test.test_pep277 +test.test_pep3120 +test.test_pep3131 +test.test_pep3151 +test.test_pep352 +test.test_pep380 +test.test_pep479 +test.test_pickle +test.test_pickletools +test.test_pipes +test.test_pkg +test.test_pkgimport +test.test_pkgutil +test.test_platform +test.test_plistlib +test.test_poll +test.test_popen +test.test_poplib +test.test_posix +test.test_posixpath +test.test_pow +test.test_pprint +test.test_print +test.test_profile +test.test_property +test.test_pstats +test.test_pty +test.test_pulldom +test.test_pwd +test.test_py_compile +test.test_pyclbr +test.test_pydoc +test.test_pyexpat +test.test_queue +test.test_quopri +test.test_raise +test.test_random +test.test_range +test.test_re +test.test_readline +test.test_regrtest +test.test_reprlib +test.test_resource +test.test_richcmp +test.test_rlcompleter +test.test_robotparser +test.test_runpy +test.test_sax +test.test_sched +test.test_scope +test.test_script_helper +test.test_select +test.test_selectors +test.test_set +test.test_setcomps +test.test_shelve +test.test_shlex +test.test_shutil +test.test_signal +test.test_site +test.test_slice +test.test_smtpd +test.test_smtplib +test.test_smtpnet +test.test_sndhdr +test.test_socket +test.test_socketserver +test.test_sort +test.test_source_encoding +test.test_spwd +test.test_sqlite +test.test_ssl +test.test_startfile +test.test_stat +test.test_statistics +test.test_strftime +test.test_string +test.test_stringprep +test.test_strlit +test.test_strptime +test.test_strtod +test.test_struct +test.test_structmembers +test.test_structseq +test.test_subprocess +test.test_sunau +test.test_sundry +test.test_super +test.test_support +test.test_symtable +test.test_syntax +test.test_sys +test.test_sys_setprofile +test.test_sys_settrace +test.test_sysconfig +test.test_syslog +test.test_tarfile +test.test_tcl +test.test_telnetlib +test.test_tempfile +test.test_textwrap +test.test_thread +test.test_threaded_import +test.test_threadedtempfile +test.test_threading +test.test_threading_local +test.test_threadsignals +test.test_time +test.test_timeit +test.test_timeout +test.test_tix +test.test_tk +test.test_tokenize +test.test_tools +test.test_tools.__main__ +test.test_tools.test_fixcid +test.test_tools.test_gprof2html +test.test_tools.test_i18n +test.test_tools.test_md5sum +test.test_tools.test_pdeps +test.test_tools.test_pindent +test.test_tools.test_reindent +test.test_tools.test_sundry +test.test_tools.test_unparse +test.test_trace +test.test_traceback +test.test_tracemalloc +test.test_ttk_guionly +test.test_ttk_textonly +test.test_tuple +test.test_turtle +test.test_typechecks +test.test_types +test.test_typing +test.test_ucn +test.test_unary +test.test_unicode +test.test_unicode_file +test.test_unicodedata +test.test_unittest +test.test_univnewlines +test.test_unpack +test.test_unpack_ex +test.test_urllib +test.test_urllib2 +test.test_urllib2_localnet +test.test_urllib2net +test.test_urllib_response +test.test_urllibnet +test.test_urlparse +test.test_userdict +test.test_userlist +test.test_userstring +test.test_uu +test.test_uuid +test.test_venv +test.test_wait3 +test.test_wait4 +test.test_warnings +test.test_warnings.__main__ +test.test_warnings.data.import_warning +test.test_warnings.data.stacklevel +test.test_wave +test.test_weakref +test.test_weakset +test.test_webbrowser +test.test_winreg +test.test_winsound +test.test_with +test.test_wsgiref +test.test_xdrlib +test.test_xml_dom_minicompat +test.test_xml_etree +test.test_xml_etree_c +test.test_xmlrpc +test.test_xmlrpc_net +test.test_zipapp +test.test_zipfile +test.test_zipfile64 +test.test_zipimport +test.test_zipimport_support +test.test_zlib +test.testcodec +test.tf_inherit_check +test.threaded_import_hangers +test.time_hashlib +test.tracedmodules +test.tracedmodules.testmod +test.win_console_handler +test.xmltests textwrap +this threading time timeit tkinter +tkinter.__main__ +tkinter.colorchooser +tkinter.commondialog +tkinter.constants +tkinter.dialog +tkinter.dnd +tkinter.filedialog +tkinter.font +tkinter.messagebox tkinter.scrolledtext +tkinter.simpledialog +tkinter.test +tkinter.test.runtktests +tkinter.test.support +tkinter.test.test_tkinter +tkinter.test.test_tkinter.test_font +tkinter.test.test_tkinter.test_geometry_managers +tkinter.test.test_tkinter.test_images +tkinter.test.test_tkinter.test_loadtk +tkinter.test.test_tkinter.test_misc +tkinter.test.test_tkinter.test_text +tkinter.test.test_tkinter.test_variables +tkinter.test.test_tkinter.test_widgets +tkinter.test.test_ttk +tkinter.test.test_ttk.test_extensions +tkinter.test.test_ttk.test_functions +tkinter.test.test_ttk.test_style +tkinter.test.test_ttk.test_widgets +tkinter.test.widget_tests tkinter.tix tkinter.ttk token @@ -274,11 +1508,67 @@ tracemalloc tty turtle turtledemo +turtledemo.__main__ +turtledemo.bytedesign +turtledemo.chaos +turtledemo.clock +turtledemo.colormixer +turtledemo.forest +turtledemo.fractalcurves +turtledemo.lindenmayer +turtledemo.minimal_hanoi +turtledemo.nim +turtledemo.paint +turtledemo.peace +turtledemo.penrose +turtledemo.planet_and_moon +turtledemo.round_dance +turtledemo.sorting_animate +turtledemo.tree +turtledemo.two_canvases +turtledemo.wikipedia +turtledemo.yinyang types typing unicodedata unittest +unittest.__main__ +unittest.case +unittest.loader +unittest.main unittest.mock +unittest.result +unittest.runner +unittest.signals +unittest.suite +unittest.test +unittest.test.__main__ +unittest.test._test_warnings +unittest.test.dummy +unittest.test.support +unittest.test.test_assertions +unittest.test.test_break +unittest.test.test_case +unittest.test.test_discovery +unittest.test.test_functiontestcase +unittest.test.test_loader +unittest.test.test_program +unittest.test.test_result +unittest.test.test_runner +unittest.test.test_setups +unittest.test.test_skipping +unittest.test.test_suite +unittest.test.testmock +unittest.test.testmock.__main__ +unittest.test.testmock.support +unittest.test.testmock.testcallable +unittest.test.testmock.testhelpers +unittest.test.testmock.testmagicmethods +unittest.test.testmock.testmock +unittest.test.testmock.testpatch +unittest.test.testmock.testsentinel +unittest.test.testmock.testwith +unittest.util urllib urllib.error urllib.parse @@ -288,6 +1578,7 @@ urllib.robotparser uu uuid venv +venv.__main__ warnings wave weakref @@ -303,18 +1594,33 @@ wsgiref.validate xdrlib xml xml.dom +xml.dom.NodeFilter +xml.dom.domreg +xml.dom.expatbuilder +xml.dom.minicompat xml.dom.minidom xml.dom.pulldom +xml.dom.xmlbuilder +xml.etree +xml.etree.ElementInclude +xml.etree.ElementPath xml.etree.ElementTree +xml.etree.cElementTree +xml.parsers xml.parsers.expat xml.parsers.expat.errors xml.parsers.expat.model xml.sax +xml.sax._exceptions +xml.sax.expatreader xml.sax.handler xml.sax.saxutils xml.sax.xmlreader +xmlrpc xmlrpc.client xmlrpc.server +xxlimited +xxsubtype zipapp zipfile zipimport diff --git a/stdlib_list/lists/3.6.txt b/stdlib_list/lists/3.6.txt index 9421674..cbb761a 100644 --- a/stdlib_list/lists/3.6.txt +++ b/stdlib_list/lists/3.6.txt @@ -1,14 +1,115 @@ __future__ __main__ +_ast +_asyncio +_bisect +_blake2 +_bootlocale +_bz2 +_codecs +_codecs_cn +_codecs_hk +_codecs_iso2022 +_codecs_jp +_codecs_kr +_codecs_tw +_collections +_collections_abc +_compat_pickle +_compression +_crypt +_csv +_ctypes +_ctypes_test +_curses +_curses_panel +_datetime +_dbm +_decimal _dummy_thread +_elementtree +_frozen_importlib +_frozen_importlib_external +_functools +_gdbm +_hashlib +_heapq +_imp +_io +_json +_locale +_lsprof +_lzma +_markupbase +_md5 +_multibytecodec +_multiprocessing +_opcode +_operator +_osx_support +_pickle +_posixsubprocess +_pydecimal +_pyio +_random +_sha1 +_sha256 +_sha3 +_sha512 +_signal +_sitebuiltins +_socket +_sqlite3 +_sre +_ssl +_stat +_string +_strptime +_struct +_symtable +_testbuffer +_testcapi +_testimportmultiple +_testmultiphase _thread +_threading_local +_tkinter +_tracemalloc +_warnings +_weakref +_weakrefset abc aifc +antigravity argparse array ast asynchat asyncio +asyncio.base_events +asyncio.base_futures +asyncio.base_subprocess +asyncio.base_tasks +asyncio.compat +asyncio.constants +asyncio.coroutines +asyncio.events +asyncio.futures +asyncio.locks +asyncio.log +asyncio.proactor_events +asyncio.protocols +asyncio.queues +asyncio.selector_events +asyncio.sslproto +asyncio.streams +asyncio.subprocess +asyncio.tasks +asyncio.test_utils +asyncio.transports +asyncio.unix_events +asyncio.windows_events +asyncio.windows_utils asyncore atexit audioop @@ -33,7 +134,11 @@ collections collections.abc colorsys compileall +concurrent concurrent.futures +concurrent.futures._base +concurrent.futures.process +concurrent.futures.thread configparser contextlib copy @@ -41,8 +146,69 @@ copyreg crypt csv ctypes +ctypes._endian +ctypes.macholib +ctypes.macholib.dyld +ctypes.macholib.dylib +ctypes.macholib.framework +ctypes.test +ctypes.test.__main__ +ctypes.test.test_anon +ctypes.test.test_array_in_pointer +ctypes.test.test_arrays +ctypes.test.test_as_parameter +ctypes.test.test_bitfields +ctypes.test.test_buffers +ctypes.test.test_bytes +ctypes.test.test_byteswap +ctypes.test.test_callbacks +ctypes.test.test_cast +ctypes.test.test_cfuncs +ctypes.test.test_checkretval +ctypes.test.test_delattr +ctypes.test.test_errno +ctypes.test.test_find +ctypes.test.test_frombuffer +ctypes.test.test_funcptr +ctypes.test.test_functions +ctypes.test.test_incomplete +ctypes.test.test_init +ctypes.test.test_internals +ctypes.test.test_keeprefs +ctypes.test.test_libc +ctypes.test.test_loading +ctypes.test.test_macholib +ctypes.test.test_memfunctions +ctypes.test.test_numbers +ctypes.test.test_objects +ctypes.test.test_parameters +ctypes.test.test_pep3118 +ctypes.test.test_pickling +ctypes.test.test_pointers +ctypes.test.test_prototypes +ctypes.test.test_python_api +ctypes.test.test_random_things +ctypes.test.test_refcounts +ctypes.test.test_repr +ctypes.test.test_returnfuncptrs +ctypes.test.test_simplesubclasses +ctypes.test.test_sizes +ctypes.test.test_slicing +ctypes.test.test_stringptr +ctypes.test.test_strings +ctypes.test.test_struct_fields +ctypes.test.test_structures +ctypes.test.test_unaligned_structures +ctypes.test.test_unicode +ctypes.test.test_values +ctypes.test.test_varsize_struct +ctypes.test.test_win32 +ctypes.test.test_wintypes +ctypes.util +ctypes.wintypes curses curses.ascii +curses.has_key curses.panel curses.textpad datetime @@ -54,6 +220,7 @@ decimal difflib dis distutils +distutils._msvccompiler distutils.archive_util distutils.bcppcompiler distutils.ccompiler @@ -75,11 +242,14 @@ distutils.command.clean distutils.command.config distutils.command.install distutils.command.install_data +distutils.command.install_egg_info distutils.command.install_headers distutils.command.install_lib distutils.command.install_scripts distutils.command.register distutils.command.sdist +distutils.command.upload +distutils.config distutils.core distutils.cygwinccompiler distutils.debug @@ -92,33 +262,218 @@ distutils.fancy_getopt distutils.file_util distutils.filelist distutils.log +distutils.msvc9compiler distutils.msvccompiler distutils.spawn distutils.sysconfig +distutils.tests +distutils.tests.support +distutils.tests.test_archive_util +distutils.tests.test_bdist +distutils.tests.test_bdist_dumb +distutils.tests.test_bdist_msi +distutils.tests.test_bdist_rpm +distutils.tests.test_bdist_wininst +distutils.tests.test_build +distutils.tests.test_build_clib +distutils.tests.test_build_ext +distutils.tests.test_build_py +distutils.tests.test_build_scripts +distutils.tests.test_check +distutils.tests.test_clean +distutils.tests.test_cmd +distutils.tests.test_config +distutils.tests.test_config_cmd +distutils.tests.test_core +distutils.tests.test_cygwinccompiler +distutils.tests.test_dep_util +distutils.tests.test_dir_util +distutils.tests.test_dist +distutils.tests.test_extension +distutils.tests.test_file_util +distutils.tests.test_filelist +distutils.tests.test_install +distutils.tests.test_install_data +distutils.tests.test_install_headers +distutils.tests.test_install_lib +distutils.tests.test_install_scripts +distutils.tests.test_log +distutils.tests.test_msvc9compiler +distutils.tests.test_msvccompiler +distutils.tests.test_register +distutils.tests.test_sdist +distutils.tests.test_spawn +distutils.tests.test_sysconfig +distutils.tests.test_text_file +distutils.tests.test_unixccompiler +distutils.tests.test_upload +distutils.tests.test_util +distutils.tests.test_version +distutils.tests.test_versionpredicate distutils.text_file distutils.unixccompiler distutils.util distutils.version +distutils.versionpredicate doctest dummy_threading email +email._encoded_words +email._header_value_parser +email._parseaddr +email._policybase +email.base64mime email.charset email.contentmanager email.encoders email.errors +email.feedparser email.generator email.header email.headerregistry email.iterators email.message email.mime +email.mime.application +email.mime.audio +email.mime.base +email.mime.image +email.mime.message +email.mime.multipart +email.mime.nonmultipart +email.mime.text email.parser email.policy +email.quoprimime email.utils +encodings +encodings.aliases +encodings.ascii +encodings.base64_codec +encodings.big5 +encodings.big5hkscs +encodings.bz2_codec +encodings.charmap +encodings.cp037 +encodings.cp1006 +encodings.cp1026 +encodings.cp1125 +encodings.cp1140 +encodings.cp1250 +encodings.cp1251 +encodings.cp1252 +encodings.cp1253 +encodings.cp1254 +encodings.cp1255 +encodings.cp1256 +encodings.cp1257 +encodings.cp1258 +encodings.cp273 +encodings.cp424 +encodings.cp437 +encodings.cp500 +encodings.cp65001 +encodings.cp720 +encodings.cp737 +encodings.cp775 +encodings.cp850 +encodings.cp852 +encodings.cp855 +encodings.cp856 +encodings.cp857 +encodings.cp858 +encodings.cp860 +encodings.cp861 +encodings.cp862 +encodings.cp863 +encodings.cp864 +encodings.cp865 +encodings.cp866 +encodings.cp869 +encodings.cp874 +encodings.cp875 +encodings.cp932 +encodings.cp949 +encodings.cp950 +encodings.euc_jis_2004 +encodings.euc_jisx0213 +encodings.euc_jp +encodings.euc_kr +encodings.gb18030 +encodings.gb2312 +encodings.gbk +encodings.hex_codec +encodings.hp_roman8 +encodings.hz encodings.idna +encodings.iso2022_jp +encodings.iso2022_jp_1 +encodings.iso2022_jp_2 +encodings.iso2022_jp_2004 +encodings.iso2022_jp_3 +encodings.iso2022_jp_ext +encodings.iso2022_kr +encodings.iso8859_1 +encodings.iso8859_10 +encodings.iso8859_11 +encodings.iso8859_13 +encodings.iso8859_14 +encodings.iso8859_15 +encodings.iso8859_16 +encodings.iso8859_2 +encodings.iso8859_3 +encodings.iso8859_4 +encodings.iso8859_5 +encodings.iso8859_6 +encodings.iso8859_7 +encodings.iso8859_8 +encodings.iso8859_9 +encodings.johab +encodings.koi8_r +encodings.koi8_t +encodings.koi8_u +encodings.kz1048 +encodings.latin_1 +encodings.mac_arabic +encodings.mac_centeuro +encodings.mac_croatian +encodings.mac_cyrillic +encodings.mac_farsi +encodings.mac_greek +encodings.mac_iceland +encodings.mac_latin2 +encodings.mac_roman +encodings.mac_romanian +encodings.mac_turkish encodings.mbcs +encodings.oem +encodings.palmos +encodings.ptcp154 +encodings.punycode +encodings.quopri_codec +encodings.raw_unicode_escape +encodings.rot_13 +encodings.shift_jis +encodings.shift_jis_2004 +encodings.shift_jisx0213 +encodings.tis_620 +encodings.undefined +encodings.unicode_escape +encodings.unicode_internal +encodings.utf_16 +encodings.utf_16_be +encodings.utf_16_le +encodings.utf_32 +encodings.utf_32_be +encodings.utf_32_le +encodings.utf_7 +encodings.utf_8 encodings.utf_8_sig +encodings.uu_codec +encodings.zlib_codec ensurepip +ensurepip.__main__ +ensurepip._uninstall enum errno faulthandler @@ -132,6 +487,7 @@ fractions ftplib functools gc +genericpath getopt getpass gettext @@ -149,10 +505,134 @@ http.client http.cookiejar http.cookies http.server +idlelib +idlelib.__main__ +idlelib._pyclbr +idlelib.autocomplete +idlelib.autocomplete_w +idlelib.autoexpand +idlelib.browser +idlelib.calltip +idlelib.calltip_w +idlelib.codecontext +idlelib.colorizer +idlelib.config +idlelib.config_key +idlelib.configdialog +idlelib.debugger +idlelib.debugger_r +idlelib.debugobj +idlelib.debugobj_r +idlelib.delegator +idlelib.dynoption +idlelib.editor +idlelib.filelist +idlelib.grep +idlelib.help +idlelib.help_about +idlelib.history +idlelib.hyperparser +idlelib.idle +idlelib.idle_test +idlelib.idle_test.htest +idlelib.idle_test.mock_idle +idlelib.idle_test.mock_tk +idlelib.idle_test.template +idlelib.idle_test.test_autocomplete +idlelib.idle_test.test_autocomplete_w +idlelib.idle_test.test_autoexpand +idlelib.idle_test.test_browser +idlelib.idle_test.test_calltip +idlelib.idle_test.test_calltip_w +idlelib.idle_test.test_codecontext +idlelib.idle_test.test_colorizer +idlelib.idle_test.test_config +idlelib.idle_test.test_config_key +idlelib.idle_test.test_configdialog +idlelib.idle_test.test_debugger +idlelib.idle_test.test_debugger_r +idlelib.idle_test.test_debugobj +idlelib.idle_test.test_debugobj_r +idlelib.idle_test.test_delegator +idlelib.idle_test.test_editmenu +idlelib.idle_test.test_editor +idlelib.idle_test.test_filelist +idlelib.idle_test.test_grep +idlelib.idle_test.test_help +idlelib.idle_test.test_help_about +idlelib.idle_test.test_history +idlelib.idle_test.test_hyperparser +idlelib.idle_test.test_iomenu +idlelib.idle_test.test_macosx +idlelib.idle_test.test_mainmenu +idlelib.idle_test.test_multicall +idlelib.idle_test.test_outwin +idlelib.idle_test.test_paragraph +idlelib.idle_test.test_parenmatch +idlelib.idle_test.test_pathbrowser +idlelib.idle_test.test_percolator +idlelib.idle_test.test_pyparse +idlelib.idle_test.test_pyshell +idlelib.idle_test.test_query +idlelib.idle_test.test_redirector +idlelib.idle_test.test_replace +idlelib.idle_test.test_rpc +idlelib.idle_test.test_rstrip +idlelib.idle_test.test_run +idlelib.idle_test.test_runscript +idlelib.idle_test.test_scrolledlist +idlelib.idle_test.test_search +idlelib.idle_test.test_searchbase +idlelib.idle_test.test_searchengine +idlelib.idle_test.test_squeezer +idlelib.idle_test.test_stackviewer +idlelib.idle_test.test_statusbar +idlelib.idle_test.test_text +idlelib.idle_test.test_textview +idlelib.idle_test.test_tooltip +idlelib.idle_test.test_tree +idlelib.idle_test.test_undo +idlelib.idle_test.test_warning +idlelib.idle_test.test_window +idlelib.idle_test.test_zoomheight +idlelib.iomenu +idlelib.macosx +idlelib.mainmenu +idlelib.multicall +idlelib.outwin +idlelib.paragraph +idlelib.parenmatch +idlelib.pathbrowser +idlelib.percolator +idlelib.pyparse +idlelib.pyshell +idlelib.query +idlelib.redirector +idlelib.replace +idlelib.rpc +idlelib.rstrip +idlelib.run +idlelib.runscript +idlelib.scrolledlist +idlelib.search +idlelib.searchbase +idlelib.searchengine +idlelib.squeezer +idlelib.stackviewer +idlelib.statusbar +idlelib.textview +idlelib.tooltip +idlelib.tree +idlelib.undo +idlelib.window +idlelib.zoomheight +idlelib.zzdummy imaplib imghdr imp importlib +importlib._bootstrap +importlib._bootstrap_external importlib.abc importlib.machinery importlib.util @@ -161,9 +641,111 @@ io ipaddress itertools json +json.decoder +json.encoder +json.scanner json.tool keyword lib2to3 +lib2to3.__main__ +lib2to3.btm_matcher +lib2to3.btm_utils +lib2to3.fixer_base +lib2to3.fixer_util +lib2to3.fixes +lib2to3.fixes.fix_apply +lib2to3.fixes.fix_asserts +lib2to3.fixes.fix_basestring +lib2to3.fixes.fix_buffer +lib2to3.fixes.fix_dict +lib2to3.fixes.fix_except +lib2to3.fixes.fix_exec +lib2to3.fixes.fix_execfile +lib2to3.fixes.fix_exitfunc +lib2to3.fixes.fix_filter +lib2to3.fixes.fix_funcattrs +lib2to3.fixes.fix_future +lib2to3.fixes.fix_getcwdu +lib2to3.fixes.fix_has_key +lib2to3.fixes.fix_idioms +lib2to3.fixes.fix_import +lib2to3.fixes.fix_imports +lib2to3.fixes.fix_imports2 +lib2to3.fixes.fix_input +lib2to3.fixes.fix_intern +lib2to3.fixes.fix_isinstance +lib2to3.fixes.fix_itertools +lib2to3.fixes.fix_itertools_imports +lib2to3.fixes.fix_long +lib2to3.fixes.fix_map +lib2to3.fixes.fix_metaclass +lib2to3.fixes.fix_methodattrs +lib2to3.fixes.fix_ne +lib2to3.fixes.fix_next +lib2to3.fixes.fix_nonzero +lib2to3.fixes.fix_numliterals +lib2to3.fixes.fix_operator +lib2to3.fixes.fix_paren +lib2to3.fixes.fix_print +lib2to3.fixes.fix_raise +lib2to3.fixes.fix_raw_input +lib2to3.fixes.fix_reduce +lib2to3.fixes.fix_reload +lib2to3.fixes.fix_renames +lib2to3.fixes.fix_repr +lib2to3.fixes.fix_set_literal +lib2to3.fixes.fix_standarderror +lib2to3.fixes.fix_sys_exc +lib2to3.fixes.fix_throw +lib2to3.fixes.fix_tuple_params +lib2to3.fixes.fix_types +lib2to3.fixes.fix_unicode +lib2to3.fixes.fix_urllib +lib2to3.fixes.fix_ws_comma +lib2to3.fixes.fix_xrange +lib2to3.fixes.fix_xreadlines +lib2to3.fixes.fix_zip +lib2to3.main +lib2to3.patcomp +lib2to3.pgen2 +lib2to3.pgen2.conv +lib2to3.pgen2.driver +lib2to3.pgen2.grammar +lib2to3.pgen2.literals +lib2to3.pgen2.parse +lib2to3.pgen2.pgen +lib2to3.pgen2.token +lib2to3.pgen2.tokenize +lib2to3.pygram +lib2to3.pytree +lib2to3.refactor +lib2to3.tests +lib2to3.tests.__main__ +lib2to3.tests.data.bom +lib2to3.tests.data.crlf +lib2to3.tests.data.different_encoding +lib2to3.tests.data.false_encoding +lib2to3.tests.data.fixers.bad_order +lib2to3.tests.data.fixers.myfixes +lib2to3.tests.data.fixers.myfixes.fix_explicit +lib2to3.tests.data.fixers.myfixes.fix_first +lib2to3.tests.data.fixers.myfixes.fix_last +lib2to3.tests.data.fixers.myfixes.fix_parrot +lib2to3.tests.data.fixers.myfixes.fix_preorder +lib2to3.tests.data.fixers.no_fixer_cls +lib2to3.tests.data.fixers.parrot_example +lib2to3.tests.data.infinite_recursion +lib2to3.tests.data.py2_test_grammar +lib2to3.tests.data.py3_test_grammar +lib2to3.tests.pytree_idempotency +lib2to3.tests.support +lib2to3.tests.test_all_fixers +lib2to3.tests.test_fixers +lib2to3.tests.test_main +lib2to3.tests.test_parser +lib2to3.tests.test_pytree +lib2to3.tests.test_refactor +lib2to3.tests.test_util linecache locale logging @@ -171,6 +753,7 @@ logging.config logging.handlers lzma macpath +macurl2path mailbox mailcap marshal @@ -182,14 +765,33 @@ msilib msvcrt multiprocessing multiprocessing.connection +multiprocessing.context multiprocessing.dummy +multiprocessing.dummy.connection +multiprocessing.forkserver +multiprocessing.heap multiprocessing.managers multiprocessing.pool +multiprocessing.popen_fork +multiprocessing.popen_forkserver +multiprocessing.popen_spawn_posix +multiprocessing.popen_spawn_win32 +multiprocessing.process +multiprocessing.queues +multiprocessing.reduction +multiprocessing.resource_sharer +multiprocessing.semaphore_tracker multiprocessing.sharedctypes +multiprocessing.spawn +multiprocessing.synchronize +multiprocessing.util netrc nis nntplib +ntpath +nturl2path numbers +opcode operator optparse os @@ -206,6 +808,7 @@ platform plistlib poplib posix +posixpath pprint profile pstats @@ -214,6 +817,9 @@ pwd py_compile pyclbr pydoc +pydoc_data +pydoc_data.topics +pyexpat queue quopri random @@ -239,6 +845,20 @@ socket socketserver spwd sqlite3 +sqlite3.dbapi2 +sqlite3.dump +sqlite3.test +sqlite3.test.dbapi +sqlite3.test.dump +sqlite3.test.factory +sqlite3.test.hooks +sqlite3.test.regression +sqlite3.test.transactions +sqlite3.test.types +sqlite3.test.userfunctions +sre_compile +sre_constants +sre_parse ssl stat statistics @@ -258,13 +878,682 @@ telnetlib tempfile termios test +test.__main__ +test._test_multiprocessing +test.ann_module +test.ann_module2 +test.ann_module3 +test.audiotests +test.autotest +test.bad_coding +test.bad_coding2 +test.badsyntax_3131 +test.badsyntax_future10 +test.badsyntax_future3 +test.badsyntax_future4 +test.badsyntax_future5 +test.badsyntax_future6 +test.badsyntax_future7 +test.badsyntax_future8 +test.badsyntax_future9 +test.badsyntax_pep3120 +test.bisect +test.bytecode_helper +test.coding20731 +test.curses_tests +test.datetimetester +test.dis_module +test.doctest_aliases +test.double_const +test.dtracedata.call_stack +test.dtracedata.gc +test.dtracedata.instance +test.dtracedata.line +test.eintrdata.eintr_tester +test.encoded_modules +test.encoded_modules.module_iso_8859_1 +test.encoded_modules.module_koi8_r +test.final_a +test.final_b +test.fork_wait +test.future_test1 +test.future_test2 +test.gdb_sample +test.imp_dummy +test.inspect_fodder +test.inspect_fodder2 +test.libregrtest +test.libregrtest.cmdline +test.libregrtest.main +test.libregrtest.refleak +test.libregrtest.runtest +test.libregrtest.runtest_mp +test.libregrtest.save_env +test.libregrtest.setup +test.libregrtest.utils +test.list_tests +test.lock_tests +test.make_ssl_certs +test.mapping_tests +test.memory_watchdog +test.mock_socket +test.mod_generics_cache +test.mp_fork_bomb +test.mp_preload +test.multibytecodec_support +test.outstanding_bugs +test.pickletester +test.profilee +test.pyclbr_input +test.pydoc_mod +test.pydocfodder +test.pystone +test.pythoninfo +test.re_tests +test.regrtest +test.relimport +test.reperf +test.sample_doctest +test.sample_doctest_no_docstrings +test.sample_doctest_no_doctests +test.seq_tests +test.signalinterproctester +test.sortperf +test.ssl_servers +test.ssltests +test.string_tests +test.subprocessdata.fd_status +test.subprocessdata.input_reader +test.subprocessdata.qcat +test.subprocessdata.qgrep +test.subprocessdata.sigchild_ignore test.support +test.support.script_helper +test.support.testresult +test.test___all__ +test.test___future__ +test.test__locale +test.test__opcode +test.test__osx_support +test.test_abc +test.test_abstract_numbers +test.test_aifc +test.test_argparse +test.test_array +test.test_asdl_parser +test.test_ast +test.test_asyncgen +test.test_asynchat +test.test_asyncio +test.test_asyncio.__main__ +test.test_asyncio.echo +test.test_asyncio.echo2 +test.test_asyncio.echo3 +test.test_asyncio.test_base_events +test.test_asyncio.test_events +test.test_asyncio.test_futures +test.test_asyncio.test_locks +test.test_asyncio.test_pep492 +test.test_asyncio.test_proactor_events +test.test_asyncio.test_queues +test.test_asyncio.test_selector_events +test.test_asyncio.test_sslproto +test.test_asyncio.test_streams +test.test_asyncio.test_subprocess +test.test_asyncio.test_tasks +test.test_asyncio.test_transports +test.test_asyncio.test_unix_events +test.test_asyncio.test_windows_events +test.test_asyncio.test_windows_utils +test.test_asyncore +test.test_atexit +test.test_audioop +test.test_augassign +test.test_base64 +test.test_baseexception +test.test_bdb +test.test_bigaddrspace +test.test_bigmem +test.test_binascii +test.test_binhex +test.test_binop +test.test_bisect +test.test_bool +test.test_buffer +test.test_bufio +test.test_builtin +test.test_bytes +test.test_bz2 +test.test_calendar +test.test_call +test.test_capi +test.test_cgi +test.test_cgitb +test.test_charmapcodec +test.test_class +test.test_cmath +test.test_cmd +test.test_cmd_line +test.test_cmd_line_script +test.test_code +test.test_code_module +test.test_codeccallbacks +test.test_codecencodings_cn +test.test_codecencodings_hk +test.test_codecencodings_iso2022 +test.test_codecencodings_jp +test.test_codecencodings_kr +test.test_codecencodings_tw +test.test_codecmaps_cn +test.test_codecmaps_hk +test.test_codecmaps_jp +test.test_codecmaps_kr +test.test_codecmaps_tw +test.test_codecs +test.test_codeop +test.test_collections +test.test_colorsys +test.test_compare +test.test_compile +test.test_compileall +test.test_complex +test.test_concurrent_futures +test.test_configparser +test.test_contains +test.test_contextlib +test.test_copy +test.test_copyreg +test.test_coroutines +test.test_cprofile +test.test_crashers +test.test_crypt +test.test_csv +test.test_ctypes +test.test_curses +test.test_datetime +test.test_dbm +test.test_dbm_dumb +test.test_dbm_gnu +test.test_dbm_ndbm +test.test_decimal +test.test_decorators +test.test_defaultdict +test.test_deque +test.test_descr +test.test_descrtut +test.test_devpoll +test.test_dict +test.test_dict_version +test.test_dictcomps +test.test_dictviews +test.test_difflib +test.test_dis +test.test_distutils +test.test_doctest +test.test_doctest2 +test.test_docxmlrpc +test.test_dtrace +test.test_dummy_thread +test.test_dummy_threading +test.test_dynamic +test.test_dynamicclassattribute +test.test_eintr +test.test_email +test.test_email.__main__ +test.test_email.test__encoded_words +test.test_email.test__header_value_parser +test.test_email.test_asian_codecs +test.test_email.test_contentmanager +test.test_email.test_defect_handling +test.test_email.test_email +test.test_email.test_generator +test.test_email.test_headerregistry +test.test_email.test_inversion +test.test_email.test_message +test.test_email.test_parser +test.test_email.test_pickleable +test.test_email.test_policy +test.test_email.test_utils +test.test_email.torture_test +test.test_ensurepip +test.test_enum +test.test_enumerate +test.test_eof +test.test_epoll +test.test_errno +test.test_exception_hierarchy +test.test_exception_variations +test.test_exceptions +test.test_extcall +test.test_faulthandler +test.test_fcntl +test.test_file +test.test_file_eintr +test.test_filecmp +test.test_fileinput +test.test_fileio +test.test_finalization +test.test_float +test.test_flufl +test.test_fnmatch +test.test_fork1 +test.test_format +test.test_fractions +test.test_frame +test.test_fstring +test.test_ftplib +test.test_funcattrs +test.test_functools +test.test_future +test.test_future3 +test.test_future4 +test.test_future5 +test.test_gc +test.test_gdb +test.test_generator_stop +test.test_generators +test.test_genericpath +test.test_genexps +test.test_getargs2 +test.test_getopt +test.test_getpass +test.test_gettext +test.test_glob +test.test_global +test.test_grammar +test.test_grp +test.test_gzip +test.test_hash +test.test_hashlib +test.test_heapq +test.test_hmac +test.test_html +test.test_htmlparser +test.test_http_cookiejar +test.test_http_cookies +test.test_httplib +test.test_httpservers +test.test_idle +test.test_imaplib +test.test_imghdr +test.test_imp +test.test_import +test.test_import.__main__ +test.test_import.data.circular_imports.basic +test.test_import.data.circular_imports.basic2 +test.test_import.data.circular_imports.indirect +test.test_import.data.circular_imports.rebinding +test.test_import.data.circular_imports.rebinding2 +test.test_import.data.circular_imports.subpackage +test.test_import.data.circular_imports.subpkg.subpackage2 +test.test_import.data.circular_imports.subpkg.util +test.test_import.data.circular_imports.util +test.test_import.data.package +test.test_import.data.package.submodule +test.test_import.data.package2.submodule1 +test.test_import.data.package2.submodule2 +test.test_importlib +test.test_importlib.__main__ +test.test_importlib.abc +test.test_importlib.builtin +test.test_importlib.builtin.__main__ +test.test_importlib.builtin.test_finder +test.test_importlib.builtin.test_loader +test.test_importlib.extension +test.test_importlib.extension.__main__ +test.test_importlib.extension.test_case_sensitivity +test.test_importlib.extension.test_finder +test.test_importlib.extension.test_loader +test.test_importlib.extension.test_path_hook +test.test_importlib.frozen +test.test_importlib.frozen.__main__ +test.test_importlib.frozen.test_finder +test.test_importlib.frozen.test_loader +test.test_importlib.import_ +test.test_importlib.import_.__main__ +test.test_importlib.import_.test___loader__ +test.test_importlib.import_.test___package__ +test.test_importlib.import_.test_api +test.test_importlib.import_.test_caching +test.test_importlib.import_.test_fromlist +test.test_importlib.import_.test_meta_path +test.test_importlib.import_.test_packages +test.test_importlib.import_.test_path +test.test_importlib.import_.test_relative_imports +test.test_importlib.namespace_pkgs.both_portions.foo.one +test.test_importlib.namespace_pkgs.both_portions.foo.two +test.test_importlib.namespace_pkgs.module_and_namespace_package.a_test +test.test_importlib.namespace_pkgs.not_a_namespace_pkg.foo +test.test_importlib.namespace_pkgs.not_a_namespace_pkg.foo.one +test.test_importlib.namespace_pkgs.portion1.foo.one +test.test_importlib.namespace_pkgs.portion2.foo.two +test.test_importlib.namespace_pkgs.project1.parent.child.one +test.test_importlib.namespace_pkgs.project2.parent.child.two +test.test_importlib.namespace_pkgs.project3.parent.child.three +test.test_importlib.source +test.test_importlib.source.__main__ +test.test_importlib.source.test_case_sensitivity +test.test_importlib.source.test_file_loader +test.test_importlib.source.test_finder +test.test_importlib.source.test_path_hook +test.test_importlib.source.test_source_encoding +test.test_importlib.test_abc +test.test_importlib.test_api +test.test_importlib.test_lazy +test.test_importlib.test_locks +test.test_importlib.test_namespace_pkgs +test.test_importlib.test_spec +test.test_importlib.test_util +test.test_importlib.test_windows +test.test_importlib.util +test.test_index +test.test_inspect +test.test_int +test.test_int_literal +test.test_io +test.test_ioctl +test.test_ipaddress +test.test_isinstance +test.test_iter +test.test_iterlen +test.test_itertools +test.test_json +test.test_json.__main__ +test.test_json.test_decode +test.test_json.test_default +test.test_json.test_dump +test.test_json.test_encode_basestring_ascii +test.test_json.test_enum +test.test_json.test_fail +test.test_json.test_float +test.test_json.test_indent +test.test_json.test_pass1 +test.test_json.test_pass2 +test.test_json.test_pass3 +test.test_json.test_recursion +test.test_json.test_scanstring +test.test_json.test_separators +test.test_json.test_speedups +test.test_json.test_tool +test.test_json.test_unicode +test.test_keyword +test.test_keywordonlyarg +test.test_kqueue +test.test_largefile +test.test_lib2to3 +test.test_linecache +test.test_list +test.test_listcomps +test.test_locale +test.test_logging +test.test_long +test.test_longexp +test.test_lzma +test.test_macpath +test.test_macurl2path +test.test_mailbox +test.test_mailcap +test.test_marshal +test.test_math +test.test_memoryio +test.test_memoryview +test.test_metaclass +test.test_mimetypes +test.test_minidom +test.test_mmap +test.test_module +test.test_modulefinder +test.test_msilib +test.test_multibytecodec +test.test_multiprocessing_fork +test.test_multiprocessing_forkserver +test.test_multiprocessing_main_handling +test.test_multiprocessing_spawn +test.test_netrc +test.test_nis +test.test_nntplib +test.test_normalization +test.test_ntpath +test.test_numeric_tower +test.test_opcodes +test.test_openpty +test.test_operator +test.test_optparse +test.test_ordered_dict +test.test_os +test.test_ossaudiodev +test.test_osx_env +test.test_parser +test.test_pathlib +test.test_pdb +test.test_peepholer +test.test_pickle +test.test_pickletools +test.test_pipes +test.test_pkg +test.test_pkgimport +test.test_pkgutil +test.test_platform +test.test_plistlib +test.test_poll +test.test_popen +test.test_poplib +test.test_posix +test.test_posixpath +test.test_pow +test.test_pprint +test.test_print +test.test_profile +test.test_property +test.test_pstats +test.test_pty +test.test_pulldom +test.test_pwd +test.test_py_compile +test.test_pyclbr +test.test_pydoc +test.test_pyexpat +test.test_queue +test.test_quopri +test.test_raise +test.test_random +test.test_range +test.test_re +test.test_readline +test.test_regrtest +test.test_repl +test.test_reprlib +test.test_resource +test.test_richcmp +test.test_rlcompleter +test.test_robotparser +test.test_runpy +test.test_sax +test.test_sched +test.test_scope +test.test_script_helper +test.test_secrets +test.test_select +test.test_selectors +test.test_set +test.test_setcomps +test.test_shelve +test.test_shlex +test.test_shutil +test.test_signal +test.test_site +test.test_slice +test.test_smtpd +test.test_smtplib +test.test_smtpnet +test.test_sndhdr +test.test_socket +test.test_socketserver +test.test_sort +test.test_source_encoding +test.test_spwd +test.test_sqlite +test.test_ssl +test.test_startfile +test.test_stat +test.test_statistics +test.test_strftime +test.test_string +test.test_string_literals +test.test_stringprep +test.test_strptime +test.test_strtod +test.test_struct +test.test_structmembers +test.test_structseq +test.test_subclassinit +test.test_subprocess +test.test_sunau +test.test_sundry +test.test_super +test.test_support +test.test_symbol +test.test_symtable +test.test_syntax +test.test_sys +test.test_sys_setprofile +test.test_sys_settrace +test.test_sysconfig +test.test_syslog +test.test_tarfile +test.test_tcl +test.test_telnetlib +test.test_tempfile +test.test_textwrap +test.test_thread +test.test_threaded_import +test.test_threadedtempfile +test.test_threading +test.test_threading_local +test.test_threadsignals +test.test_time +test.test_timeit +test.test_timeout +test.test_tix +test.test_tk +test.test_tokenize +test.test_tools +test.test_tools.__main__ +test.test_tools.test_fixcid +test.test_tools.test_gprof2html +test.test_tools.test_i18n +test.test_tools.test_md5sum +test.test_tools.test_pdeps +test.test_tools.test_pindent +test.test_tools.test_reindent +test.test_tools.test_sundry +test.test_tools.test_unparse +test.test_trace +test.test_traceback +test.test_tracemalloc +test.test_ttk_guionly +test.test_ttk_textonly +test.test_tuple +test.test_turtle +test.test_typechecks +test.test_types +test.test_typing +test.test_ucn +test.test_unary +test.test_unicode +test.test_unicode_file +test.test_unicode_file_functions +test.test_unicode_identifiers +test.test_unicodedata +test.test_unittest +test.test_univnewlines +test.test_unpack +test.test_unpack_ex +test.test_urllib +test.test_urllib2 +test.test_urllib2_localnet +test.test_urllib2net +test.test_urllib_response +test.test_urllibnet +test.test_urlparse +test.test_userdict +test.test_userlist +test.test_userstring +test.test_utf8source +test.test_uu +test.test_uuid +test.test_venv +test.test_wait3 +test.test_wait4 +test.test_warnings +test.test_warnings.__main__ +test.test_warnings.data.import_warning +test.test_warnings.data.stacklevel +test.test_wave +test.test_weakref +test.test_weakset +test.test_webbrowser +test.test_winconsoleio +test.test_winreg +test.test_winsound +test.test_with +test.test_wsgiref +test.test_xdrlib +test.test_xml_dom_minicompat +test.test_xml_etree +test.test_xml_etree_c +test.test_xmlrpc +test.test_xmlrpc_net +test.test_yield_from +test.test_zipapp +test.test_zipfile +test.test_zipfile64 +test.test_zipimport +test.test_zipimport_support +test.test_zlib +test.testcodec +test.tf_inherit_check +test.threaded_import_hangers +test.time_hashlib +test.tracedmodules +test.tracedmodules.testmod +test.win_console_handler +test.xmltests textwrap +this threading time timeit tkinter +tkinter.__main__ +tkinter.colorchooser +tkinter.commondialog +tkinter.constants +tkinter.dialog +tkinter.dnd +tkinter.filedialog +tkinter.font +tkinter.messagebox tkinter.scrolledtext +tkinter.simpledialog +tkinter.test +tkinter.test.runtktests +tkinter.test.support +tkinter.test.test_tkinter +tkinter.test.test_tkinter.test_font +tkinter.test.test_tkinter.test_geometry_managers +tkinter.test.test_tkinter.test_images +tkinter.test.test_tkinter.test_loadtk +tkinter.test.test_tkinter.test_misc +tkinter.test.test_tkinter.test_text +tkinter.test.test_tkinter.test_variables +tkinter.test.test_tkinter.test_widgets +tkinter.test.test_ttk +tkinter.test.test_ttk.test_extensions +tkinter.test.test_ttk.test_functions +tkinter.test.test_ttk.test_style +tkinter.test.test_ttk.test_widgets +tkinter.test.widget_tests tkinter.tix tkinter.ttk token @@ -275,11 +1564,67 @@ tracemalloc tty turtle turtledemo +turtledemo.__main__ +turtledemo.bytedesign +turtledemo.chaos +turtledemo.clock +turtledemo.colormixer +turtledemo.forest +turtledemo.fractalcurves +turtledemo.lindenmayer +turtledemo.minimal_hanoi +turtledemo.nim +turtledemo.paint +turtledemo.peace +turtledemo.penrose +turtledemo.planet_and_moon +turtledemo.rosette +turtledemo.round_dance +turtledemo.sorting_animate +turtledemo.tree +turtledemo.two_canvases +turtledemo.yinyang types typing unicodedata unittest +unittest.__main__ +unittest.case +unittest.loader +unittest.main unittest.mock +unittest.result +unittest.runner +unittest.signals +unittest.suite +unittest.test +unittest.test.__main__ +unittest.test._test_warnings +unittest.test.dummy +unittest.test.support +unittest.test.test_assertions +unittest.test.test_break +unittest.test.test_case +unittest.test.test_discovery +unittest.test.test_functiontestcase +unittest.test.test_loader +unittest.test.test_program +unittest.test.test_result +unittest.test.test_runner +unittest.test.test_setups +unittest.test.test_skipping +unittest.test.test_suite +unittest.test.testmock +unittest.test.testmock.__main__ +unittest.test.testmock.support +unittest.test.testmock.testcallable +unittest.test.testmock.testhelpers +unittest.test.testmock.testmagicmethods +unittest.test.testmock.testmock +unittest.test.testmock.testpatch +unittest.test.testmock.testsentinel +unittest.test.testmock.testwith +unittest.util urllib urllib.error urllib.parse @@ -289,6 +1634,7 @@ urllib.robotparser uu uuid venv +venv.__main__ warnings wave weakref @@ -304,18 +1650,33 @@ wsgiref.validate xdrlib xml xml.dom +xml.dom.NodeFilter +xml.dom.domreg +xml.dom.expatbuilder +xml.dom.minicompat xml.dom.minidom xml.dom.pulldom +xml.dom.xmlbuilder +xml.etree +xml.etree.ElementInclude +xml.etree.ElementPath xml.etree.ElementTree +xml.etree.cElementTree +xml.parsers xml.parsers.expat xml.parsers.expat.errors xml.parsers.expat.model xml.sax +xml.sax._exceptions +xml.sax.expatreader xml.sax.handler xml.sax.saxutils xml.sax.xmlreader +xmlrpc xmlrpc.client xmlrpc.server +xxlimited +xxsubtype zipapp zipfile zipimport diff --git a/stdlib_list/lists/3.7.txt b/stdlib_list/lists/3.7.txt index ed127ac..b640852 100644 --- a/stdlib_list/lists/3.7.txt +++ b/stdlib_list/lists/3.7.txt @@ -1,14 +1,121 @@ __future__ __main__ +_abc +_ast +_asyncio +_bisect +_blake2 +_bootlocale +_bz2 +_codecs +_codecs_cn +_codecs_hk +_codecs_iso2022 +_codecs_jp +_codecs_kr +_codecs_tw +_collections +_collections_abc +_compat_pickle +_compression +_contextvars +_crypt +_csv +_ctypes +_ctypes_test +_curses +_curses_panel +_datetime +_dbm +_decimal _dummy_thread +_elementtree +_frozen_importlib +_frozen_importlib_external +_functools +_gdbm +_hashlib +_heapq +_imp +_io +_json +_locale +_lsprof +_lzma +_markupbase +_md5 +_multibytecodec +_multiprocessing +_opcode +_operator +_osx_support +_pickle +_posixsubprocess +_py_abc +_pydecimal +_pyio +_queue +_random +_sha1 +_sha256 +_sha3 +_sha512 +_signal +_sitebuiltins +_socket +_sqlite3 +_sre +_ssl +_stat +_string +_strptime +_struct +_symtable +_testbuffer +_testcapi +_testimportmultiple +_testmultiphase _thread +_threading_local +_tkinter +_tracemalloc +_uuid +_warnings +_weakref +_weakrefset +_xxtestfuzz abc aifc +antigravity argparse array ast asynchat asyncio +asyncio.base_events +asyncio.base_futures +asyncio.base_subprocess +asyncio.base_tasks +asyncio.constants +asyncio.coroutines +asyncio.events +asyncio.format_helpers +asyncio.futures +asyncio.locks +asyncio.log +asyncio.proactor_events +asyncio.protocols +asyncio.queues +asyncio.runners +asyncio.selector_events +asyncio.sslproto +asyncio.streams +asyncio.subprocess +asyncio.tasks +asyncio.transports +asyncio.unix_events +asyncio.windows_events +asyncio.windows_utils asyncore atexit audioop @@ -33,7 +140,11 @@ collections collections.abc colorsys compileall +concurrent concurrent.futures +concurrent.futures._base +concurrent.futures.process +concurrent.futures.thread configparser contextlib contextvars @@ -42,8 +153,70 @@ copyreg crypt csv ctypes +ctypes._aix +ctypes._endian +ctypes.macholib +ctypes.macholib.dyld +ctypes.macholib.dylib +ctypes.macholib.framework +ctypes.test +ctypes.test.__main__ +ctypes.test.test_anon +ctypes.test.test_array_in_pointer +ctypes.test.test_arrays +ctypes.test.test_as_parameter +ctypes.test.test_bitfields +ctypes.test.test_buffers +ctypes.test.test_bytes +ctypes.test.test_byteswap +ctypes.test.test_callbacks +ctypes.test.test_cast +ctypes.test.test_cfuncs +ctypes.test.test_checkretval +ctypes.test.test_delattr +ctypes.test.test_errno +ctypes.test.test_find +ctypes.test.test_frombuffer +ctypes.test.test_funcptr +ctypes.test.test_functions +ctypes.test.test_incomplete +ctypes.test.test_init +ctypes.test.test_internals +ctypes.test.test_keeprefs +ctypes.test.test_libc +ctypes.test.test_loading +ctypes.test.test_macholib +ctypes.test.test_memfunctions +ctypes.test.test_numbers +ctypes.test.test_objects +ctypes.test.test_parameters +ctypes.test.test_pep3118 +ctypes.test.test_pickling +ctypes.test.test_pointers +ctypes.test.test_prototypes +ctypes.test.test_python_api +ctypes.test.test_random_things +ctypes.test.test_refcounts +ctypes.test.test_repr +ctypes.test.test_returnfuncptrs +ctypes.test.test_simplesubclasses +ctypes.test.test_sizes +ctypes.test.test_slicing +ctypes.test.test_stringptr +ctypes.test.test_strings +ctypes.test.test_struct_fields +ctypes.test.test_structures +ctypes.test.test_unaligned_structures +ctypes.test.test_unicode +ctypes.test.test_values +ctypes.test.test_varsize_struct +ctypes.test.test_win32 +ctypes.test.test_wintypes +ctypes.util +ctypes.wintypes curses curses.ascii +curses.has_key curses.panel curses.textpad dataclasses @@ -56,6 +229,7 @@ decimal difflib dis distutils +distutils._msvccompiler distutils.archive_util distutils.bcppcompiler distutils.ccompiler @@ -77,11 +251,14 @@ distutils.command.clean distutils.command.config distutils.command.install distutils.command.install_data +distutils.command.install_egg_info distutils.command.install_headers distutils.command.install_lib distutils.command.install_scripts distutils.command.register distutils.command.sdist +distutils.command.upload +distutils.config distutils.core distutils.cygwinccompiler distutils.debug @@ -94,33 +271,218 @@ distutils.fancy_getopt distutils.file_util distutils.filelist distutils.log +distutils.msvc9compiler distutils.msvccompiler distutils.spawn distutils.sysconfig +distutils.tests +distutils.tests.support +distutils.tests.test_archive_util +distutils.tests.test_bdist +distutils.tests.test_bdist_dumb +distutils.tests.test_bdist_msi +distutils.tests.test_bdist_rpm +distutils.tests.test_bdist_wininst +distutils.tests.test_build +distutils.tests.test_build_clib +distutils.tests.test_build_ext +distutils.tests.test_build_py +distutils.tests.test_build_scripts +distutils.tests.test_check +distutils.tests.test_clean +distutils.tests.test_cmd +distutils.tests.test_config +distutils.tests.test_config_cmd +distutils.tests.test_core +distutils.tests.test_cygwinccompiler +distutils.tests.test_dep_util +distutils.tests.test_dir_util +distutils.tests.test_dist +distutils.tests.test_extension +distutils.tests.test_file_util +distutils.tests.test_filelist +distutils.tests.test_install +distutils.tests.test_install_data +distutils.tests.test_install_headers +distutils.tests.test_install_lib +distutils.tests.test_install_scripts +distutils.tests.test_log +distutils.tests.test_msvc9compiler +distutils.tests.test_msvccompiler +distutils.tests.test_register +distutils.tests.test_sdist +distutils.tests.test_spawn +distutils.tests.test_sysconfig +distutils.tests.test_text_file +distutils.tests.test_unixccompiler +distutils.tests.test_upload +distutils.tests.test_util +distutils.tests.test_version +distutils.tests.test_versionpredicate distutils.text_file distutils.unixccompiler distutils.util distutils.version +distutils.versionpredicate doctest dummy_threading email +email._encoded_words +email._header_value_parser +email._parseaddr +email._policybase +email.base64mime email.charset email.contentmanager email.encoders email.errors +email.feedparser email.generator email.header email.headerregistry email.iterators email.message email.mime +email.mime.application +email.mime.audio +email.mime.base +email.mime.image +email.mime.message +email.mime.multipart +email.mime.nonmultipart +email.mime.text email.parser email.policy +email.quoprimime email.utils +encodings +encodings.aliases +encodings.ascii +encodings.base64_codec +encodings.big5 +encodings.big5hkscs +encodings.bz2_codec +encodings.charmap +encodings.cp037 +encodings.cp1006 +encodings.cp1026 +encodings.cp1125 +encodings.cp1140 +encodings.cp1250 +encodings.cp1251 +encodings.cp1252 +encodings.cp1253 +encodings.cp1254 +encodings.cp1255 +encodings.cp1256 +encodings.cp1257 +encodings.cp1258 +encodings.cp273 +encodings.cp424 +encodings.cp437 +encodings.cp500 +encodings.cp65001 +encodings.cp720 +encodings.cp737 +encodings.cp775 +encodings.cp850 +encodings.cp852 +encodings.cp855 +encodings.cp856 +encodings.cp857 +encodings.cp858 +encodings.cp860 +encodings.cp861 +encodings.cp862 +encodings.cp863 +encodings.cp864 +encodings.cp865 +encodings.cp866 +encodings.cp869 +encodings.cp874 +encodings.cp875 +encodings.cp932 +encodings.cp949 +encodings.cp950 +encodings.euc_jis_2004 +encodings.euc_jisx0213 +encodings.euc_jp +encodings.euc_kr +encodings.gb18030 +encodings.gb2312 +encodings.gbk +encodings.hex_codec +encodings.hp_roman8 +encodings.hz encodings.idna +encodings.iso2022_jp +encodings.iso2022_jp_1 +encodings.iso2022_jp_2 +encodings.iso2022_jp_2004 +encodings.iso2022_jp_3 +encodings.iso2022_jp_ext +encodings.iso2022_kr +encodings.iso8859_1 +encodings.iso8859_10 +encodings.iso8859_11 +encodings.iso8859_13 +encodings.iso8859_14 +encodings.iso8859_15 +encodings.iso8859_16 +encodings.iso8859_2 +encodings.iso8859_3 +encodings.iso8859_4 +encodings.iso8859_5 +encodings.iso8859_6 +encodings.iso8859_7 +encodings.iso8859_8 +encodings.iso8859_9 +encodings.johab +encodings.koi8_r +encodings.koi8_t +encodings.koi8_u +encodings.kz1048 +encodings.latin_1 +encodings.mac_arabic +encodings.mac_centeuro +encodings.mac_croatian +encodings.mac_cyrillic +encodings.mac_farsi +encodings.mac_greek +encodings.mac_iceland +encodings.mac_latin2 +encodings.mac_roman +encodings.mac_romanian +encodings.mac_turkish encodings.mbcs +encodings.oem +encodings.palmos +encodings.ptcp154 +encodings.punycode +encodings.quopri_codec +encodings.raw_unicode_escape +encodings.rot_13 +encodings.shift_jis +encodings.shift_jis_2004 +encodings.shift_jisx0213 +encodings.tis_620 +encodings.undefined +encodings.unicode_escape +encodings.unicode_internal +encodings.utf_16 +encodings.utf_16_be +encodings.utf_16_le +encodings.utf_32 +encodings.utf_32_be +encodings.utf_32_le +encodings.utf_7 +encodings.utf_8 encodings.utf_8_sig +encodings.uu_codec +encodings.zlib_codec ensurepip +ensurepip.__main__ +ensurepip._uninstall enum errno faulthandler @@ -133,6 +495,7 @@ fractions ftplib functools gc +genericpath getopt getpass gettext @@ -150,10 +513,133 @@ http.client http.cookiejar http.cookies http.server +idlelib +idlelib.__main__ +idlelib.autocomplete +idlelib.autocomplete_w +idlelib.autoexpand +idlelib.browser +idlelib.calltip +idlelib.calltip_w +idlelib.codecontext +idlelib.colorizer +idlelib.config +idlelib.config_key +idlelib.configdialog +idlelib.debugger +idlelib.debugger_r +idlelib.debugobj +idlelib.debugobj_r +idlelib.delegator +idlelib.dynoption +idlelib.editor +idlelib.filelist +idlelib.grep +idlelib.help +idlelib.help_about +idlelib.history +idlelib.hyperparser +idlelib.idle +idlelib.idle_test +idlelib.idle_test.htest +idlelib.idle_test.mock_idle +idlelib.idle_test.mock_tk +idlelib.idle_test.template +idlelib.idle_test.test_autocomplete +idlelib.idle_test.test_autocomplete_w +idlelib.idle_test.test_autoexpand +idlelib.idle_test.test_browser +idlelib.idle_test.test_calltip +idlelib.idle_test.test_calltip_w +idlelib.idle_test.test_codecontext +idlelib.idle_test.test_colorizer +idlelib.idle_test.test_config +idlelib.idle_test.test_config_key +idlelib.idle_test.test_configdialog +idlelib.idle_test.test_debugger +idlelib.idle_test.test_debugger_r +idlelib.idle_test.test_debugobj +idlelib.idle_test.test_debugobj_r +idlelib.idle_test.test_delegator +idlelib.idle_test.test_editmenu +idlelib.idle_test.test_editor +idlelib.idle_test.test_filelist +idlelib.idle_test.test_grep +idlelib.idle_test.test_help +idlelib.idle_test.test_help_about +idlelib.idle_test.test_history +idlelib.idle_test.test_hyperparser +idlelib.idle_test.test_iomenu +idlelib.idle_test.test_macosx +idlelib.idle_test.test_mainmenu +idlelib.idle_test.test_multicall +idlelib.idle_test.test_outwin +idlelib.idle_test.test_paragraph +idlelib.idle_test.test_parenmatch +idlelib.idle_test.test_pathbrowser +idlelib.idle_test.test_percolator +idlelib.idle_test.test_pyparse +idlelib.idle_test.test_pyshell +idlelib.idle_test.test_query +idlelib.idle_test.test_redirector +idlelib.idle_test.test_replace +idlelib.idle_test.test_rpc +idlelib.idle_test.test_rstrip +idlelib.idle_test.test_run +idlelib.idle_test.test_runscript +idlelib.idle_test.test_scrolledlist +idlelib.idle_test.test_search +idlelib.idle_test.test_searchbase +idlelib.idle_test.test_searchengine +idlelib.idle_test.test_squeezer +idlelib.idle_test.test_stackviewer +idlelib.idle_test.test_statusbar +idlelib.idle_test.test_text +idlelib.idle_test.test_textview +idlelib.idle_test.test_tooltip +idlelib.idle_test.test_tree +idlelib.idle_test.test_undo +idlelib.idle_test.test_warning +idlelib.idle_test.test_window +idlelib.idle_test.test_zoomheight +idlelib.iomenu +idlelib.macosx +idlelib.mainmenu +idlelib.multicall +idlelib.outwin +idlelib.paragraph +idlelib.parenmatch +idlelib.pathbrowser +idlelib.percolator +idlelib.pyparse +idlelib.pyshell +idlelib.query +idlelib.redirector +idlelib.replace +idlelib.rpc +idlelib.rstrip +idlelib.run +idlelib.runscript +idlelib.scrolledlist +idlelib.search +idlelib.searchbase +idlelib.searchengine +idlelib.squeezer +idlelib.stackviewer +idlelib.statusbar +idlelib.textview +idlelib.tooltip +idlelib.tree +idlelib.undo +idlelib.window +idlelib.zoomheight +idlelib.zzdummy imaplib imghdr imp importlib +importlib._bootstrap +importlib._bootstrap_external importlib.abc importlib.machinery importlib.resources @@ -163,9 +649,111 @@ io ipaddress itertools json +json.decoder +json.encoder +json.scanner json.tool keyword lib2to3 +lib2to3.__main__ +lib2to3.btm_matcher +lib2to3.btm_utils +lib2to3.fixer_base +lib2to3.fixer_util +lib2to3.fixes +lib2to3.fixes.fix_apply +lib2to3.fixes.fix_asserts +lib2to3.fixes.fix_basestring +lib2to3.fixes.fix_buffer +lib2to3.fixes.fix_dict +lib2to3.fixes.fix_except +lib2to3.fixes.fix_exec +lib2to3.fixes.fix_execfile +lib2to3.fixes.fix_exitfunc +lib2to3.fixes.fix_filter +lib2to3.fixes.fix_funcattrs +lib2to3.fixes.fix_future +lib2to3.fixes.fix_getcwdu +lib2to3.fixes.fix_has_key +lib2to3.fixes.fix_idioms +lib2to3.fixes.fix_import +lib2to3.fixes.fix_imports +lib2to3.fixes.fix_imports2 +lib2to3.fixes.fix_input +lib2to3.fixes.fix_intern +lib2to3.fixes.fix_isinstance +lib2to3.fixes.fix_itertools +lib2to3.fixes.fix_itertools_imports +lib2to3.fixes.fix_long +lib2to3.fixes.fix_map +lib2to3.fixes.fix_metaclass +lib2to3.fixes.fix_methodattrs +lib2to3.fixes.fix_ne +lib2to3.fixes.fix_next +lib2to3.fixes.fix_nonzero +lib2to3.fixes.fix_numliterals +lib2to3.fixes.fix_operator +lib2to3.fixes.fix_paren +lib2to3.fixes.fix_print +lib2to3.fixes.fix_raise +lib2to3.fixes.fix_raw_input +lib2to3.fixes.fix_reduce +lib2to3.fixes.fix_reload +lib2to3.fixes.fix_renames +lib2to3.fixes.fix_repr +lib2to3.fixes.fix_set_literal +lib2to3.fixes.fix_standarderror +lib2to3.fixes.fix_sys_exc +lib2to3.fixes.fix_throw +lib2to3.fixes.fix_tuple_params +lib2to3.fixes.fix_types +lib2to3.fixes.fix_unicode +lib2to3.fixes.fix_urllib +lib2to3.fixes.fix_ws_comma +lib2to3.fixes.fix_xrange +lib2to3.fixes.fix_xreadlines +lib2to3.fixes.fix_zip +lib2to3.main +lib2to3.patcomp +lib2to3.pgen2 +lib2to3.pgen2.conv +lib2to3.pgen2.driver +lib2to3.pgen2.grammar +lib2to3.pgen2.literals +lib2to3.pgen2.parse +lib2to3.pgen2.pgen +lib2to3.pgen2.token +lib2to3.pgen2.tokenize +lib2to3.pygram +lib2to3.pytree +lib2to3.refactor +lib2to3.tests +lib2to3.tests.__main__ +lib2to3.tests.data.bom +lib2to3.tests.data.crlf +lib2to3.tests.data.different_encoding +lib2to3.tests.data.false_encoding +lib2to3.tests.data.fixers.bad_order +lib2to3.tests.data.fixers.myfixes +lib2to3.tests.data.fixers.myfixes.fix_explicit +lib2to3.tests.data.fixers.myfixes.fix_first +lib2to3.tests.data.fixers.myfixes.fix_last +lib2to3.tests.data.fixers.myfixes.fix_parrot +lib2to3.tests.data.fixers.myfixes.fix_preorder +lib2to3.tests.data.fixers.no_fixer_cls +lib2to3.tests.data.fixers.parrot_example +lib2to3.tests.data.infinite_recursion +lib2to3.tests.data.py2_test_grammar +lib2to3.tests.data.py3_test_grammar +lib2to3.tests.pytree_idempotency +lib2to3.tests.support +lib2to3.tests.test_all_fixers +lib2to3.tests.test_fixers +lib2to3.tests.test_main +lib2to3.tests.test_parser +lib2to3.tests.test_pytree +lib2to3.tests.test_refactor +lib2to3.tests.test_util linecache locale logging @@ -184,14 +772,33 @@ msilib msvcrt multiprocessing multiprocessing.connection +multiprocessing.context multiprocessing.dummy +multiprocessing.dummy.connection +multiprocessing.forkserver +multiprocessing.heap multiprocessing.managers multiprocessing.pool +multiprocessing.popen_fork +multiprocessing.popen_forkserver +multiprocessing.popen_spawn_posix +multiprocessing.popen_spawn_win32 +multiprocessing.process +multiprocessing.queues +multiprocessing.reduction +multiprocessing.resource_sharer +multiprocessing.semaphore_tracker multiprocessing.sharedctypes +multiprocessing.spawn +multiprocessing.synchronize +multiprocessing.util netrc nis nntplib +ntpath +nturl2path numbers +opcode operator optparse os @@ -208,6 +815,7 @@ platform plistlib poplib posix +posixpath pprint profile pstats @@ -216,6 +824,9 @@ pwd py_compile pyclbr pydoc +pydoc_data +pydoc_data.topics +pyexpat queue quopri random @@ -241,6 +852,21 @@ socket socketserver spwd sqlite3 +sqlite3.dbapi2 +sqlite3.dump +sqlite3.test +sqlite3.test.backup +sqlite3.test.dbapi +sqlite3.test.dump +sqlite3.test.factory +sqlite3.test.hooks +sqlite3.test.regression +sqlite3.test.transactions +sqlite3.test.types +sqlite3.test.userfunctions +sre_compile +sre_constants +sre_parse ssl stat statistics @@ -260,14 +886,721 @@ telnetlib tempfile termios test +test.__main__ +test._test_multiprocessing +test.ann_module +test.ann_module2 +test.ann_module3 +test.audiotests +test.autotest +test.bad_coding +test.bad_coding2 +test.bad_getattr +test.bad_getattr2 +test.bad_getattr3 +test.badsyntax_3131 +test.badsyntax_future10 +test.badsyntax_future3 +test.badsyntax_future4 +test.badsyntax_future5 +test.badsyntax_future6 +test.badsyntax_future7 +test.badsyntax_future8 +test.badsyntax_future9 +test.badsyntax_pep3120 +test.bisect +test.bisect_cmd +test.bytecode_helper +test.coding20731 +test.curses_tests +test.dataclass_module_1 +test.dataclass_module_1_str +test.dataclass_module_2 +test.dataclass_module_2_str +test.datetimetester +test.dis_module +test.doctest_aliases +test.double_const +test.dtracedata.call_stack +test.dtracedata.gc +test.dtracedata.instance +test.dtracedata.line +test.eintrdata.eintr_tester +test.encoded_modules +test.encoded_modules.module_iso_8859_1 +test.encoded_modules.module_koi8_r +test.final_a +test.final_b +test.fork_wait +test.future_test1 +test.future_test2 +test.gdb_sample +test.good_getattr +test.imp_dummy +test.inspect_fodder +test.inspect_fodder2 +test.libregrtest +test.libregrtest.cmdline +test.libregrtest.main +test.libregrtest.refleak +test.libregrtest.runtest +test.libregrtest.runtest_mp +test.libregrtest.save_env +test.libregrtest.setup +test.libregrtest.utils +test.list_tests +test.lock_tests +test.make_ssl_certs +test.mapping_tests +test.memory_watchdog +test.mock_socket +test.mod_generics_cache +test.mp_fork_bomb +test.mp_preload +test.multibytecodec_support +test.outstanding_bugs +test.pickletester +test.profilee +test.pyclbr_input +test.pydoc_mod +test.pydocfodder +test.pythoninfo +test.re_tests +test.regrtest +test.relimport +test.reperf +test.sample_doctest +test.sample_doctest_no_docstrings +test.sample_doctest_no_doctests +test.seq_tests +test.signalinterproctester +test.sortperf +test.ssl_servers +test.ssltests +test.string_tests +test.subprocessdata.fd_status +test.subprocessdata.input_reader +test.subprocessdata.qcat +test.subprocessdata.qgrep +test.subprocessdata.sigchild_ignore test.support test.support.script_helper +test.support.testresult +test.test___all__ +test.test___future__ +test.test__locale +test.test__opcode +test.test__osx_support +test.test_abc +test.test_abstract_numbers +test.test_aifc +test.test_argparse +test.test_array +test.test_asdl_parser +test.test_ast +test.test_asyncgen +test.test_asynchat +test.test_asyncio +test.test_asyncio.__main__ +test.test_asyncio.echo +test.test_asyncio.echo2 +test.test_asyncio.echo3 +test.test_asyncio.functional +test.test_asyncio.test_base_events +test.test_asyncio.test_buffered_proto +test.test_asyncio.test_context +test.test_asyncio.test_events +test.test_asyncio.test_futures +test.test_asyncio.test_locks +test.test_asyncio.test_pep492 +test.test_asyncio.test_proactor_events +test.test_asyncio.test_queues +test.test_asyncio.test_runners +test.test_asyncio.test_selector_events +test.test_asyncio.test_server +test.test_asyncio.test_sslproto +test.test_asyncio.test_streams +test.test_asyncio.test_subprocess +test.test_asyncio.test_tasks +test.test_asyncio.test_transports +test.test_asyncio.test_unix_events +test.test_asyncio.test_windows_events +test.test_asyncio.test_windows_utils +test.test_asyncio.utils +test.test_asyncore +test.test_atexit +test.test_audioop +test.test_augassign +test.test_base64 +test.test_baseexception +test.test_bdb +test.test_bigaddrspace +test.test_bigmem +test.test_binascii +test.test_binhex +test.test_binop +test.test_bisect +test.test_bool +test.test_buffer +test.test_bufio +test.test_builtin +test.test_bytes +test.test_bz2 +test.test_c_locale_coercion +test.test_calendar +test.test_call +test.test_capi +test.test_cgi +test.test_cgitb +test.test_charmapcodec +test.test_class +test.test_clinic +test.test_cmath +test.test_cmd +test.test_cmd_line +test.test_cmd_line_script +test.test_code +test.test_code_module +test.test_codeccallbacks +test.test_codecencodings_cn +test.test_codecencodings_hk +test.test_codecencodings_iso2022 +test.test_codecencodings_jp +test.test_codecencodings_kr +test.test_codecencodings_tw +test.test_codecmaps_cn +test.test_codecmaps_hk +test.test_codecmaps_jp +test.test_codecmaps_kr +test.test_codecmaps_tw +test.test_codecs +test.test_codeop +test.test_collections +test.test_colorsys +test.test_compare +test.test_compile +test.test_compileall +test.test_complex +test.test_concurrent_futures +test.test_configparser +test.test_contains +test.test_context +test.test_contextlib +test.test_contextlib_async +test.test_copy +test.test_copyreg +test.test_coroutines +test.test_cprofile +test.test_crashers +test.test_crypt +test.test_csv +test.test_ctypes +test.test_curses +test.test_dataclasses +test.test_datetime +test.test_dbm +test.test_dbm_dumb +test.test_dbm_gnu +test.test_dbm_ndbm +test.test_decimal +test.test_decorators +test.test_defaultdict +test.test_deque +test.test_descr +test.test_descrtut +test.test_devpoll +test.test_dict +test.test_dict_version +test.test_dictcomps +test.test_dictviews +test.test_difflib +test.test_dis +test.test_distutils +test.test_doctest +test.test_doctest2 +test.test_docxmlrpc +test.test_dtrace +test.test_dummy_thread +test.test_dummy_threading +test.test_dynamic +test.test_dynamicclassattribute +test.test_eintr +test.test_email +test.test_email.__main__ +test.test_email.test__encoded_words +test.test_email.test__header_value_parser +test.test_email.test_asian_codecs +test.test_email.test_contentmanager +test.test_email.test_defect_handling +test.test_email.test_email +test.test_email.test_generator +test.test_email.test_headerregistry +test.test_email.test_inversion +test.test_email.test_message +test.test_email.test_parser +test.test_email.test_pickleable +test.test_email.test_policy +test.test_email.test_utils +test.test_email.torture_test +test.test_embed +test.test_ensurepip +test.test_enum +test.test_enumerate +test.test_eof +test.test_epoll +test.test_errno +test.test_exception_hierarchy +test.test_exception_variations +test.test_exceptions +test.test_extcall +test.test_faulthandler +test.test_fcntl +test.test_file +test.test_file_eintr +test.test_filecmp +test.test_fileinput +test.test_fileio +test.test_finalization +test.test_float +test.test_flufl +test.test_fnmatch +test.test_fork1 +test.test_format +test.test_fractions +test.test_frame +test.test_frozen +test.test_fstring +test.test_ftplib +test.test_funcattrs +test.test_functools +test.test_future +test.test_future3 +test.test_future4 +test.test_future5 +test.test_gc +test.test_gdb +test.test_generator_stop +test.test_generators +test.test_genericclass +test.test_genericpath +test.test_genexps +test.test_getargs2 +test.test_getopt +test.test_getpass +test.test_gettext +test.test_glob +test.test_global +test.test_grammar +test.test_grp +test.test_gzip +test.test_hash +test.test_hashlib +test.test_heapq +test.test_hmac +test.test_html +test.test_htmlparser +test.test_http_cookiejar +test.test_http_cookies +test.test_httplib +test.test_httpservers +test.test_idle +test.test_imaplib +test.test_imghdr +test.test_imp +test.test_import +test.test_import.__main__ +test.test_import.data.circular_imports.basic +test.test_import.data.circular_imports.basic2 +test.test_import.data.circular_imports.binding +test.test_import.data.circular_imports.binding2 +test.test_import.data.circular_imports.indirect +test.test_import.data.circular_imports.rebinding +test.test_import.data.circular_imports.rebinding2 +test.test_import.data.circular_imports.subpackage +test.test_import.data.circular_imports.subpkg.subpackage2 +test.test_import.data.circular_imports.subpkg.util +test.test_import.data.circular_imports.util +test.test_import.data.package +test.test_import.data.package.submodule +test.test_import.data.package2.submodule1 +test.test_import.data.package2.submodule2 +test.test_importlib +test.test_importlib.__main__ +test.test_importlib.abc +test.test_importlib.builtin +test.test_importlib.builtin.__main__ +test.test_importlib.builtin.test_finder +test.test_importlib.builtin.test_loader +test.test_importlib.data01 +test.test_importlib.data01.subdirectory +test.test_importlib.data02 +test.test_importlib.data02.one +test.test_importlib.data02.two +test.test_importlib.data03 +test.test_importlib.data03.namespace.portion1 +test.test_importlib.data03.namespace.portion2 +test.test_importlib.extension +test.test_importlib.extension.__main__ +test.test_importlib.extension.test_case_sensitivity +test.test_importlib.extension.test_finder +test.test_importlib.extension.test_loader +test.test_importlib.extension.test_path_hook +test.test_importlib.frozen +test.test_importlib.frozen.__main__ +test.test_importlib.frozen.test_finder +test.test_importlib.frozen.test_loader +test.test_importlib.import_ +test.test_importlib.import_.__main__ +test.test_importlib.import_.test___loader__ +test.test_importlib.import_.test___package__ +test.test_importlib.import_.test_api +test.test_importlib.import_.test_caching +test.test_importlib.import_.test_fromlist +test.test_importlib.import_.test_meta_path +test.test_importlib.import_.test_packages +test.test_importlib.import_.test_path +test.test_importlib.import_.test_relative_imports +test.test_importlib.namespace_pkgs.both_portions.foo.one +test.test_importlib.namespace_pkgs.both_portions.foo.two +test.test_importlib.namespace_pkgs.module_and_namespace_package.a_test +test.test_importlib.namespace_pkgs.not_a_namespace_pkg.foo +test.test_importlib.namespace_pkgs.not_a_namespace_pkg.foo.one +test.test_importlib.namespace_pkgs.portion1.foo.one +test.test_importlib.namespace_pkgs.portion2.foo.two +test.test_importlib.namespace_pkgs.project1.parent.child.one +test.test_importlib.namespace_pkgs.project2.parent.child.two +test.test_importlib.namespace_pkgs.project3.parent.child.three +test.test_importlib.source +test.test_importlib.source.__main__ +test.test_importlib.source.test_case_sensitivity +test.test_importlib.source.test_file_loader +test.test_importlib.source.test_finder +test.test_importlib.source.test_path_hook +test.test_importlib.source.test_source_encoding +test.test_importlib.test_abc +test.test_importlib.test_api +test.test_importlib.test_lazy +test.test_importlib.test_locks +test.test_importlib.test_namespace_pkgs +test.test_importlib.test_open +test.test_importlib.test_path +test.test_importlib.test_read +test.test_importlib.test_resource +test.test_importlib.test_spec +test.test_importlib.test_util +test.test_importlib.test_windows +test.test_importlib.util +test.test_importlib.zipdata01 +test.test_importlib.zipdata02 +test.test_index +test.test_inspect +test.test_int +test.test_int_literal +test.test_io +test.test_ioctl +test.test_ipaddress +test.test_isinstance +test.test_iter +test.test_iterlen +test.test_itertools +test.test_json +test.test_json.__main__ +test.test_json.test_decode +test.test_json.test_default +test.test_json.test_dump +test.test_json.test_encode_basestring_ascii +test.test_json.test_enum +test.test_json.test_fail +test.test_json.test_float +test.test_json.test_indent +test.test_json.test_pass1 +test.test_json.test_pass2 +test.test_json.test_pass3 +test.test_json.test_recursion +test.test_json.test_scanstring +test.test_json.test_separators +test.test_json.test_speedups +test.test_json.test_tool +test.test_json.test_unicode +test.test_keyword +test.test_keywordonlyarg +test.test_kqueue +test.test_largefile +test.test_lib2to3 +test.test_linecache +test.test_list +test.test_listcomps +test.test_locale +test.test_logging +test.test_long +test.test_longexp +test.test_lzma +test.test_macpath +test.test_mailbox +test.test_mailcap +test.test_marshal +test.test_math +test.test_memoryio +test.test_memoryview +test.test_metaclass +test.test_mimetypes +test.test_minidom +test.test_mmap +test.test_module +test.test_modulefinder +test.test_msilib +test.test_multibytecodec +test.test_multiprocessing_fork +test.test_multiprocessing_forkserver +test.test_multiprocessing_main_handling +test.test_multiprocessing_spawn +test.test_netrc +test.test_nis +test.test_nntplib +test.test_normalization +test.test_ntpath +test.test_numeric_tower +test.test_opcodes +test.test_openpty +test.test_operator +test.test_optparse +test.test_ordered_dict +test.test_os +test.test_ossaudiodev +test.test_osx_env +test.test_parser +test.test_pathlib +test.test_pdb +test.test_peepholer +test.test_pickle +test.test_pickletools +test.test_pipes +test.test_pkg +test.test_pkgimport +test.test_pkgutil +test.test_platform +test.test_plistlib +test.test_poll +test.test_popen +test.test_poplib +test.test_posix +test.test_posixpath +test.test_pow +test.test_pprint +test.test_print +test.test_profile +test.test_property +test.test_pstats +test.test_pty +test.test_pulldom +test.test_pwd +test.test_py_compile +test.test_pyclbr +test.test_pydoc +test.test_pyexpat +test.test_queue +test.test_quopri +test.test_raise +test.test_random +test.test_range +test.test_re +test.test_readline +test.test_regrtest +test.test_repl +test.test_reprlib +test.test_resource +test.test_richcmp +test.test_rlcompleter +test.test_robotparser +test.test_runpy +test.test_sax +test.test_sched +test.test_scope +test.test_script_helper +test.test_secrets +test.test_select +test.test_selectors +test.test_set +test.test_setcomps +test.test_shelve +test.test_shlex +test.test_shutil +test.test_signal +test.test_site +test.test_slice +test.test_smtpd +test.test_smtplib +test.test_smtpnet +test.test_sndhdr +test.test_socket +test.test_socketserver +test.test_sort +test.test_source_encoding +test.test_spwd +test.test_sqlite +test.test_ssl +test.test_startfile +test.test_stat +test.test_statistics +test.test_strftime +test.test_string +test.test_string_literals +test.test_stringprep +test.test_strptime +test.test_strtod +test.test_struct +test.test_structmembers +test.test_structseq +test.test_subclassinit +test.test_subprocess +test.test_sunau +test.test_sundry +test.test_super +test.test_support +test.test_symbol +test.test_symtable +test.test_syntax +test.test_sys +test.test_sys_setprofile +test.test_sys_settrace +test.test_sysconfig +test.test_syslog +test.test_tarfile +test.test_tcl +test.test_telnetlib +test.test_tempfile +test.test_textwrap +test.test_thread +test.test_threaded_import +test.test_threadedtempfile +test.test_threading +test.test_threading_local +test.test_threadsignals +test.test_time +test.test_timeit +test.test_timeout +test.test_tix +test.test_tk +test.test_tokenize +test.test_tools +test.test_tools.__main__ +test.test_tools.test_fixcid +test.test_tools.test_gprof2html +test.test_tools.test_i18n +test.test_tools.test_md5sum +test.test_tools.test_pdeps +test.test_tools.test_pindent +test.test_tools.test_reindent +test.test_tools.test_sundry +test.test_tools.test_unparse +test.test_trace +test.test_traceback +test.test_tracemalloc +test.test_ttk_guionly +test.test_ttk_textonly +test.test_tuple +test.test_turtle +test.test_typechecks +test.test_types +test.test_typing +test.test_ucn +test.test_unary +test.test_unicode +test.test_unicode_file +test.test_unicode_file_functions +test.test_unicode_identifiers +test.test_unicodedata +test.test_unittest +test.test_univnewlines +test.test_unpack +test.test_unpack_ex +test.test_urllib +test.test_urllib2 +test.test_urllib2_localnet +test.test_urllib2net +test.test_urllib_response +test.test_urllibnet +test.test_urlparse +test.test_userdict +test.test_userlist +test.test_userstring +test.test_utf8_mode +test.test_utf8source +test.test_uu +test.test_uuid +test.test_venv +test.test_wait3 +test.test_wait4 +test.test_warnings +test.test_warnings.__main__ +test.test_warnings.data.import_warning +test.test_warnings.data.stacklevel +test.test_wave +test.test_weakref +test.test_weakset +test.test_webbrowser +test.test_winconsoleio +test.test_winreg +test.test_winsound +test.test_with +test.test_wsgiref +test.test_xdrlib +test.test_xml_dom_minicompat +test.test_xml_etree +test.test_xml_etree_c +test.test_xmlrpc +test.test_xmlrpc_net +test.test_xxtestfuzz +test.test_yield_from +test.test_zipapp +test.test_zipfile +test.test_zipfile64 +test.test_zipimport +test.test_zipimport_support +test.test_zlib +test.testcodec +test.tf_inherit_check +test.threaded_import_hangers +test.time_hashlib +test.tracedmodules +test.tracedmodules.testmod +test.win_console_handler +test.xmltests textwrap +this threading time timeit tkinter +tkinter.__main__ +tkinter.colorchooser +tkinter.commondialog +tkinter.constants +tkinter.dialog +tkinter.dnd +tkinter.filedialog +tkinter.font +tkinter.messagebox tkinter.scrolledtext +tkinter.simpledialog +tkinter.test +tkinter.test.runtktests +tkinter.test.support +tkinter.test.test_tkinter +tkinter.test.test_tkinter.test_font +tkinter.test.test_tkinter.test_geometry_managers +tkinter.test.test_tkinter.test_images +tkinter.test.test_tkinter.test_loadtk +tkinter.test.test_tkinter.test_misc +tkinter.test.test_tkinter.test_text +tkinter.test.test_tkinter.test_variables +tkinter.test.test_tkinter.test_widgets +tkinter.test.test_ttk +tkinter.test.test_ttk.test_extensions +tkinter.test.test_ttk.test_functions +tkinter.test.test_ttk.test_style +tkinter.test.test_ttk.test_widgets +tkinter.test.widget_tests tkinter.tix tkinter.ttk token @@ -278,11 +1611,68 @@ tracemalloc tty turtle turtledemo +turtledemo.__main__ +turtledemo.bytedesign +turtledemo.chaos +turtledemo.clock +turtledemo.colormixer +turtledemo.forest +turtledemo.fractalcurves +turtledemo.lindenmayer +turtledemo.minimal_hanoi +turtledemo.nim +turtledemo.paint +turtledemo.peace +turtledemo.penrose +turtledemo.planet_and_moon +turtledemo.rosette +turtledemo.round_dance +turtledemo.sorting_animate +turtledemo.tree +turtledemo.two_canvases +turtledemo.yinyang types typing unicodedata unittest +unittest.__main__ +unittest.case +unittest.loader +unittest.main unittest.mock +unittest.result +unittest.runner +unittest.signals +unittest.suite +unittest.test +unittest.test.__main__ +unittest.test._test_warnings +unittest.test.dummy +unittest.test.support +unittest.test.test_assertions +unittest.test.test_break +unittest.test.test_case +unittest.test.test_discovery +unittest.test.test_functiontestcase +unittest.test.test_loader +unittest.test.test_program +unittest.test.test_result +unittest.test.test_runner +unittest.test.test_setups +unittest.test.test_skipping +unittest.test.test_suite +unittest.test.testmock +unittest.test.testmock.__main__ +unittest.test.testmock.support +unittest.test.testmock.testcallable +unittest.test.testmock.testhelpers +unittest.test.testmock.testmagicmethods +unittest.test.testmock.testmock +unittest.test.testmock.testpatch +unittest.test.testmock.testsealable +unittest.test.testmock.testsentinel +unittest.test.testmock.testwith +unittest.util urllib urllib.error urllib.parse @@ -292,6 +1682,7 @@ urllib.robotparser uu uuid venv +venv.__main__ warnings wave weakref @@ -307,18 +1698,33 @@ wsgiref.validate xdrlib xml xml.dom +xml.dom.NodeFilter +xml.dom.domreg +xml.dom.expatbuilder +xml.dom.minicompat xml.dom.minidom xml.dom.pulldom +xml.dom.xmlbuilder +xml.etree +xml.etree.ElementInclude +xml.etree.ElementPath xml.etree.ElementTree +xml.etree.cElementTree +xml.parsers xml.parsers.expat xml.parsers.expat.errors xml.parsers.expat.model xml.sax +xml.sax._exceptions +xml.sax.expatreader xml.sax.handler xml.sax.saxutils xml.sax.xmlreader +xmlrpc xmlrpc.client xmlrpc.server +xxlimited +xxsubtype zipapp zipfile zipimport diff --git a/stdlib_list/lists/3.8.txt b/stdlib_list/lists/3.8.txt index eb9fe7e..d6c08e3 100644 --- a/stdlib_list/lists/3.8.txt +++ b/stdlib_list/lists/3.8.txt @@ -1,14 +1,129 @@ __future__ __main__ +_abc +_ast +_asyncio +_bisect +_blake2 +_bootlocale +_bz2 +_codecs +_codecs_cn +_codecs_hk +_codecs_iso2022 +_codecs_jp +_codecs_kr +_codecs_tw +_collections +_collections_abc +_compat_pickle +_compression +_contextvars +_crypt +_csv +_ctypes +_ctypes_test +_curses +_curses_panel +_datetime +_dbm +_decimal _dummy_thread +_elementtree +_frozen_importlib +_frozen_importlib_external +_functools +_gdbm +_hashlib +_heapq +_imp +_io +_json +_locale +_lsprof +_lzma +_markupbase +_md5 +_multibytecodec +_multiprocessing +_opcode +_operator +_osx_support +_pickle +_posixshmem +_posixsubprocess +_py_abc +_pydecimal +_pyio +_queue +_random +_sha1 +_sha256 +_sha3 +_sha512 +_signal +_sitebuiltins +_socket +_sqlite3 +_sre +_ssl +_stat +_statistics +_string +_strptime +_struct +_symtable +_testbuffer +_testcapi +_testimportmultiple +_testinternalcapi +_testmultiphase _thread +_threading_local +_tkinter +_tracemalloc +_uuid +_warnings +_weakref +_weakrefset +_xxsubinterpreters +_xxtestfuzz abc aifc +antigravity argparse array ast asynchat asyncio +asyncio.__main__ +asyncio.base_events +asyncio.base_futures +asyncio.base_subprocess +asyncio.base_tasks +asyncio.constants +asyncio.coroutines +asyncio.events +asyncio.exceptions +asyncio.format_helpers +asyncio.futures +asyncio.locks +asyncio.log +asyncio.proactor_events +asyncio.protocols +asyncio.queues +asyncio.runners +asyncio.selector_events +asyncio.sslproto +asyncio.staggered +asyncio.streams +asyncio.subprocess +asyncio.tasks +asyncio.transports +asyncio.trsock +asyncio.unix_events +asyncio.windows_events +asyncio.windows_utils asyncore atexit audioop @@ -33,7 +148,11 @@ collections collections.abc colorsys compileall +concurrent concurrent.futures +concurrent.futures._base +concurrent.futures.process +concurrent.futures.thread configparser contextlib contextvars @@ -42,8 +161,70 @@ copyreg crypt csv ctypes +ctypes._aix +ctypes._endian +ctypes.macholib +ctypes.macholib.dyld +ctypes.macholib.dylib +ctypes.macholib.framework +ctypes.test +ctypes.test.__main__ +ctypes.test.test_anon +ctypes.test.test_array_in_pointer +ctypes.test.test_arrays +ctypes.test.test_as_parameter +ctypes.test.test_bitfields +ctypes.test.test_buffers +ctypes.test.test_bytes +ctypes.test.test_byteswap +ctypes.test.test_callbacks +ctypes.test.test_cast +ctypes.test.test_cfuncs +ctypes.test.test_checkretval +ctypes.test.test_delattr +ctypes.test.test_errno +ctypes.test.test_find +ctypes.test.test_frombuffer +ctypes.test.test_funcptr +ctypes.test.test_functions +ctypes.test.test_incomplete +ctypes.test.test_init +ctypes.test.test_internals +ctypes.test.test_keeprefs +ctypes.test.test_libc +ctypes.test.test_loading +ctypes.test.test_macholib +ctypes.test.test_memfunctions +ctypes.test.test_numbers +ctypes.test.test_objects +ctypes.test.test_parameters +ctypes.test.test_pep3118 +ctypes.test.test_pickling +ctypes.test.test_pointers +ctypes.test.test_prototypes +ctypes.test.test_python_api +ctypes.test.test_random_things +ctypes.test.test_refcounts +ctypes.test.test_repr +ctypes.test.test_returnfuncptrs +ctypes.test.test_simplesubclasses +ctypes.test.test_sizes +ctypes.test.test_slicing +ctypes.test.test_stringptr +ctypes.test.test_strings +ctypes.test.test_struct_fields +ctypes.test.test_structures +ctypes.test.test_unaligned_structures +ctypes.test.test_unicode +ctypes.test.test_values +ctypes.test.test_varsize_struct +ctypes.test.test_win32 +ctypes.test.test_wintypes +ctypes.util +ctypes.wintypes curses curses.ascii +curses.has_key curses.panel curses.textpad dataclasses @@ -56,6 +237,7 @@ decimal difflib dis distutils +distutils._msvccompiler distutils.archive_util distutils.bcppcompiler distutils.ccompiler @@ -77,11 +259,14 @@ distutils.command.clean distutils.command.config distutils.command.install distutils.command.install_data +distutils.command.install_egg_info distutils.command.install_headers distutils.command.install_lib distutils.command.install_scripts distutils.command.register distutils.command.sdist +distutils.command.upload +distutils.config distutils.core distutils.cygwinccompiler distutils.debug @@ -94,33 +279,216 @@ distutils.fancy_getopt distutils.file_util distutils.filelist distutils.log +distutils.msvc9compiler distutils.msvccompiler distutils.spawn distutils.sysconfig +distutils.tests +distutils.tests.support +distutils.tests.test_archive_util +distutils.tests.test_bdist +distutils.tests.test_bdist_dumb +distutils.tests.test_bdist_msi +distutils.tests.test_bdist_rpm +distutils.tests.test_bdist_wininst +distutils.tests.test_build +distutils.tests.test_build_clib +distutils.tests.test_build_ext +distutils.tests.test_build_py +distutils.tests.test_build_scripts +distutils.tests.test_check +distutils.tests.test_clean +distutils.tests.test_cmd +distutils.tests.test_config +distutils.tests.test_config_cmd +distutils.tests.test_core +distutils.tests.test_cygwinccompiler +distutils.tests.test_dep_util +distutils.tests.test_dir_util +distutils.tests.test_dist +distutils.tests.test_extension +distutils.tests.test_file_util +distutils.tests.test_filelist +distutils.tests.test_install +distutils.tests.test_install_data +distutils.tests.test_install_headers +distutils.tests.test_install_lib +distutils.tests.test_install_scripts +distutils.tests.test_log +distutils.tests.test_msvc9compiler +distutils.tests.test_msvccompiler +distutils.tests.test_register +distutils.tests.test_sdist +distutils.tests.test_spawn +distutils.tests.test_sysconfig +distutils.tests.test_text_file +distutils.tests.test_unixccompiler +distutils.tests.test_upload +distutils.tests.test_util +distutils.tests.test_version +distutils.tests.test_versionpredicate distutils.text_file distutils.unixccompiler distutils.util distutils.version +distutils.versionpredicate doctest dummy_threading email +email._encoded_words +email._header_value_parser +email._parseaddr +email._policybase +email.base64mime email.charset email.contentmanager email.encoders email.errors +email.feedparser email.generator email.header email.headerregistry email.iterators email.message email.mime +email.mime.application +email.mime.audio +email.mime.base +email.mime.image +email.mime.message +email.mime.multipart +email.mime.nonmultipart +email.mime.text email.parser email.policy +email.quoprimime email.utils +encodings +encodings.aliases +encodings.ascii +encodings.base64_codec +encodings.big5 +encodings.big5hkscs +encodings.bz2_codec +encodings.charmap +encodings.cp037 +encodings.cp1006 +encodings.cp1026 +encodings.cp1125 +encodings.cp1140 +encodings.cp1250 +encodings.cp1251 +encodings.cp1252 +encodings.cp1253 +encodings.cp1254 +encodings.cp1255 +encodings.cp1256 +encodings.cp1257 +encodings.cp1258 +encodings.cp273 +encodings.cp424 +encodings.cp437 +encodings.cp500 +encodings.cp720 +encodings.cp737 +encodings.cp775 +encodings.cp850 +encodings.cp852 +encodings.cp855 +encodings.cp856 +encodings.cp857 +encodings.cp858 +encodings.cp860 +encodings.cp861 +encodings.cp862 +encodings.cp863 +encodings.cp864 +encodings.cp865 +encodings.cp866 +encodings.cp869 +encodings.cp874 +encodings.cp875 +encodings.cp932 +encodings.cp949 +encodings.cp950 +encodings.euc_jis_2004 +encodings.euc_jisx0213 +encodings.euc_jp +encodings.euc_kr +encodings.gb18030 +encodings.gb2312 +encodings.gbk +encodings.hex_codec +encodings.hp_roman8 +encodings.hz encodings.idna +encodings.iso2022_jp +encodings.iso2022_jp_1 +encodings.iso2022_jp_2 +encodings.iso2022_jp_2004 +encodings.iso2022_jp_3 +encodings.iso2022_jp_ext +encodings.iso2022_kr +encodings.iso8859_1 +encodings.iso8859_10 +encodings.iso8859_11 +encodings.iso8859_13 +encodings.iso8859_14 +encodings.iso8859_15 +encodings.iso8859_16 +encodings.iso8859_2 +encodings.iso8859_3 +encodings.iso8859_4 +encodings.iso8859_5 +encodings.iso8859_6 +encodings.iso8859_7 +encodings.iso8859_8 +encodings.iso8859_9 +encodings.johab +encodings.koi8_r +encodings.koi8_t +encodings.koi8_u +encodings.kz1048 +encodings.latin_1 +encodings.mac_arabic +encodings.mac_centeuro +encodings.mac_croatian +encodings.mac_cyrillic +encodings.mac_farsi +encodings.mac_greek +encodings.mac_iceland +encodings.mac_latin2 +encodings.mac_roman +encodings.mac_romanian +encodings.mac_turkish encodings.mbcs +encodings.oem +encodings.palmos +encodings.ptcp154 +encodings.punycode +encodings.quopri_codec +encodings.raw_unicode_escape +encodings.rot_13 +encodings.shift_jis +encodings.shift_jis_2004 +encodings.shift_jisx0213 +encodings.tis_620 +encodings.undefined +encodings.unicode_escape +encodings.utf_16 +encodings.utf_16_be +encodings.utf_16_le +encodings.utf_32 +encodings.utf_32_be +encodings.utf_32_le +encodings.utf_7 +encodings.utf_8 encodings.utf_8_sig +encodings.uu_codec +encodings.zlib_codec ensurepip +ensurepip.__main__ +ensurepip._uninstall enum errno faulthandler @@ -133,6 +501,7 @@ fractions ftplib functools gc +genericpath getopt getpass gettext @@ -150,12 +519,136 @@ http.client http.cookiejar http.cookies http.server +idlelib +idlelib.__main__ +idlelib.autocomplete +idlelib.autocomplete_w +idlelib.autoexpand +idlelib.browser +idlelib.calltip +idlelib.calltip_w +idlelib.codecontext +idlelib.colorizer +idlelib.config +idlelib.config_key +idlelib.configdialog +idlelib.debugger +idlelib.debugger_r +idlelib.debugobj +idlelib.debugobj_r +idlelib.delegator +idlelib.dynoption +idlelib.editor +idlelib.filelist +idlelib.format +idlelib.grep +idlelib.help +idlelib.help_about +idlelib.history +idlelib.hyperparser +idlelib.idle +idlelib.idle_test +idlelib.idle_test.htest +idlelib.idle_test.mock_idle +idlelib.idle_test.mock_tk +idlelib.idle_test.template +idlelib.idle_test.test_autocomplete +idlelib.idle_test.test_autocomplete_w +idlelib.idle_test.test_autoexpand +idlelib.idle_test.test_browser +idlelib.idle_test.test_calltip +idlelib.idle_test.test_calltip_w +idlelib.idle_test.test_codecontext +idlelib.idle_test.test_colorizer +idlelib.idle_test.test_config +idlelib.idle_test.test_config_key +idlelib.idle_test.test_configdialog +idlelib.idle_test.test_debugger +idlelib.idle_test.test_debugger_r +idlelib.idle_test.test_debugobj +idlelib.idle_test.test_debugobj_r +idlelib.idle_test.test_delegator +idlelib.idle_test.test_editmenu +idlelib.idle_test.test_editor +idlelib.idle_test.test_filelist +idlelib.idle_test.test_format +idlelib.idle_test.test_grep +idlelib.idle_test.test_help +idlelib.idle_test.test_help_about +idlelib.idle_test.test_history +idlelib.idle_test.test_hyperparser +idlelib.idle_test.test_iomenu +idlelib.idle_test.test_macosx +idlelib.idle_test.test_mainmenu +idlelib.idle_test.test_multicall +idlelib.idle_test.test_outwin +idlelib.idle_test.test_parenmatch +idlelib.idle_test.test_pathbrowser +idlelib.idle_test.test_percolator +idlelib.idle_test.test_pyparse +idlelib.idle_test.test_pyshell +idlelib.idle_test.test_query +idlelib.idle_test.test_redirector +idlelib.idle_test.test_replace +idlelib.idle_test.test_rpc +idlelib.idle_test.test_run +idlelib.idle_test.test_runscript +idlelib.idle_test.test_scrolledlist +idlelib.idle_test.test_search +idlelib.idle_test.test_searchbase +idlelib.idle_test.test_searchengine +idlelib.idle_test.test_sidebar +idlelib.idle_test.test_squeezer +idlelib.idle_test.test_stackviewer +idlelib.idle_test.test_statusbar +idlelib.idle_test.test_text +idlelib.idle_test.test_textview +idlelib.idle_test.test_tooltip +idlelib.idle_test.test_tree +idlelib.idle_test.test_undo +idlelib.idle_test.test_warning +idlelib.idle_test.test_window +idlelib.idle_test.test_zoomheight +idlelib.iomenu +idlelib.macosx +idlelib.mainmenu +idlelib.multicall +idlelib.outwin +idlelib.parenmatch +idlelib.pathbrowser +idlelib.percolator +idlelib.pyparse +idlelib.pyshell +idlelib.query +idlelib.redirector +idlelib.replace +idlelib.rpc +idlelib.run +idlelib.runscript +idlelib.scrolledlist +idlelib.search +idlelib.searchbase +idlelib.searchengine +idlelib.sidebar +idlelib.squeezer +idlelib.stackviewer +idlelib.statusbar +idlelib.textview +idlelib.tooltip +idlelib.tree +idlelib.undo +idlelib.window +idlelib.zoomheight +idlelib.zzdummy imaplib imghdr imp importlib +importlib._bootstrap +importlib._bootstrap_external importlib.abc importlib.machinery +importlib.metadata importlib.resources importlib.util inspect @@ -163,9 +656,111 @@ io ipaddress itertools json +json.decoder +json.encoder +json.scanner json.tool keyword lib2to3 +lib2to3.__main__ +lib2to3.btm_matcher +lib2to3.btm_utils +lib2to3.fixer_base +lib2to3.fixer_util +lib2to3.fixes +lib2to3.fixes.fix_apply +lib2to3.fixes.fix_asserts +lib2to3.fixes.fix_basestring +lib2to3.fixes.fix_buffer +lib2to3.fixes.fix_dict +lib2to3.fixes.fix_except +lib2to3.fixes.fix_exec +lib2to3.fixes.fix_execfile +lib2to3.fixes.fix_exitfunc +lib2to3.fixes.fix_filter +lib2to3.fixes.fix_funcattrs +lib2to3.fixes.fix_future +lib2to3.fixes.fix_getcwdu +lib2to3.fixes.fix_has_key +lib2to3.fixes.fix_idioms +lib2to3.fixes.fix_import +lib2to3.fixes.fix_imports +lib2to3.fixes.fix_imports2 +lib2to3.fixes.fix_input +lib2to3.fixes.fix_intern +lib2to3.fixes.fix_isinstance +lib2to3.fixes.fix_itertools +lib2to3.fixes.fix_itertools_imports +lib2to3.fixes.fix_long +lib2to3.fixes.fix_map +lib2to3.fixes.fix_metaclass +lib2to3.fixes.fix_methodattrs +lib2to3.fixes.fix_ne +lib2to3.fixes.fix_next +lib2to3.fixes.fix_nonzero +lib2to3.fixes.fix_numliterals +lib2to3.fixes.fix_operator +lib2to3.fixes.fix_paren +lib2to3.fixes.fix_print +lib2to3.fixes.fix_raise +lib2to3.fixes.fix_raw_input +lib2to3.fixes.fix_reduce +lib2to3.fixes.fix_reload +lib2to3.fixes.fix_renames +lib2to3.fixes.fix_repr +lib2to3.fixes.fix_set_literal +lib2to3.fixes.fix_standarderror +lib2to3.fixes.fix_sys_exc +lib2to3.fixes.fix_throw +lib2to3.fixes.fix_tuple_params +lib2to3.fixes.fix_types +lib2to3.fixes.fix_unicode +lib2to3.fixes.fix_urllib +lib2to3.fixes.fix_ws_comma +lib2to3.fixes.fix_xrange +lib2to3.fixes.fix_xreadlines +lib2to3.fixes.fix_zip +lib2to3.main +lib2to3.patcomp +lib2to3.pgen2 +lib2to3.pgen2.conv +lib2to3.pgen2.driver +lib2to3.pgen2.grammar +lib2to3.pgen2.literals +lib2to3.pgen2.parse +lib2to3.pgen2.pgen +lib2to3.pgen2.token +lib2to3.pgen2.tokenize +lib2to3.pygram +lib2to3.pytree +lib2to3.refactor +lib2to3.tests +lib2to3.tests.__main__ +lib2to3.tests.data.bom +lib2to3.tests.data.crlf +lib2to3.tests.data.different_encoding +lib2to3.tests.data.false_encoding +lib2to3.tests.data.fixers.bad_order +lib2to3.tests.data.fixers.myfixes +lib2to3.tests.data.fixers.myfixes.fix_explicit +lib2to3.tests.data.fixers.myfixes.fix_first +lib2to3.tests.data.fixers.myfixes.fix_last +lib2to3.tests.data.fixers.myfixes.fix_parrot +lib2to3.tests.data.fixers.myfixes.fix_preorder +lib2to3.tests.data.fixers.no_fixer_cls +lib2to3.tests.data.fixers.parrot_example +lib2to3.tests.data.infinite_recursion +lib2to3.tests.data.py2_test_grammar +lib2to3.tests.data.py3_test_grammar +lib2to3.tests.pytree_idempotency +lib2to3.tests.support +lib2to3.tests.test_all_fixers +lib2to3.tests.test_fixers +lib2to3.tests.test_main +lib2to3.tests.test_parser +lib2to3.tests.test_pytree +lib2to3.tests.test_refactor +lib2to3.tests.test_util linecache locale logging @@ -183,15 +778,34 @@ msilib msvcrt multiprocessing multiprocessing.connection +multiprocessing.context multiprocessing.dummy +multiprocessing.dummy.connection +multiprocessing.forkserver +multiprocessing.heap multiprocessing.managers multiprocessing.pool +multiprocessing.popen_fork +multiprocessing.popen_forkserver +multiprocessing.popen_spawn_posix +multiprocessing.popen_spawn_win32 +multiprocessing.process +multiprocessing.queues +multiprocessing.reduction +multiprocessing.resource_sharer +multiprocessing.resource_tracker multiprocessing.shared_memory multiprocessing.sharedctypes +multiprocessing.spawn +multiprocessing.synchronize +multiprocessing.util netrc nis nntplib +ntpath +nturl2path numbers +opcode operator optparse os @@ -208,6 +822,7 @@ platform plistlib poplib posix +posixpath pprint profile pstats @@ -216,6 +831,9 @@ pwd py_compile pyclbr pydoc +pydoc_data +pydoc_data.topics +pyexpat queue quopri random @@ -241,6 +859,21 @@ socket socketserver spwd sqlite3 +sqlite3.dbapi2 +sqlite3.dump +sqlite3.test +sqlite3.test.backup +sqlite3.test.dbapi +sqlite3.test.dump +sqlite3.test.factory +sqlite3.test.hooks +sqlite3.test.regression +sqlite3.test.transactions +sqlite3.test.types +sqlite3.test.userfunctions +sre_compile +sre_constants +sre_parse ssl stat statistics @@ -260,14 +893,744 @@ telnetlib tempfile termios test +test.__main__ +test._test_multiprocessing +test.ann_module +test.ann_module2 +test.ann_module3 +test.audiotests +test.autotest +test.bad_coding +test.bad_coding2 +test.bad_getattr +test.bad_getattr2 +test.bad_getattr3 +test.badsyntax_3131 +test.badsyntax_future10 +test.badsyntax_future3 +test.badsyntax_future4 +test.badsyntax_future5 +test.badsyntax_future6 +test.badsyntax_future7 +test.badsyntax_future8 +test.badsyntax_future9 +test.badsyntax_pep3120 +test.bisect_cmd +test.bytecode_helper +test.coding20731 +test.curses_tests +test.dataclass_module_1 +test.dataclass_module_1_str +test.dataclass_module_2 +test.dataclass_module_2_str +test.datetimetester +test.dis_module +test.doctest_aliases +test.double_const +test.dtracedata.call_stack +test.dtracedata.gc +test.dtracedata.instance +test.dtracedata.line +test.eintrdata.eintr_tester +test.encoded_modules +test.encoded_modules.module_iso_8859_1 +test.encoded_modules.module_koi8_r +test.final_a +test.final_b +test.fork_wait +test.future_test1 +test.future_test2 +test.gdb_sample +test.good_getattr +test.imp_dummy +test.inspect_fodder +test.inspect_fodder2 +test.libregrtest +test.libregrtest.cmdline +test.libregrtest.main +test.libregrtest.pgo +test.libregrtest.refleak +test.libregrtest.runtest +test.libregrtest.runtest_mp +test.libregrtest.save_env +test.libregrtest.setup +test.libregrtest.utils +test.libregrtest.win_utils +test.list_tests +test.lock_tests +test.make_ssl_certs +test.mapping_tests +test.memory_watchdog +test.mock_socket +test.mod_generics_cache +test.mp_fork_bomb +test.mp_preload +test.multibytecodec_support +test.outstanding_bugs +test.pickletester +test.profilee +test.pyclbr_input +test.pydoc_mod +test.pydocfodder +test.pythoninfo +test.re_tests +test.regrtest +test.relimport +test.reperf +test.sample_doctest +test.sample_doctest_no_docstrings +test.sample_doctest_no_doctests +test.seq_tests +test.signalinterproctester +test.sortperf +test.ssl_servers +test.ssltests +test.string_tests +test.subprocessdata.fd_status +test.subprocessdata.input_reader +test.subprocessdata.qcat +test.subprocessdata.qgrep +test.subprocessdata.sigchild_ignore test.support test.support.script_helper +test.support.testresult +test.test___all__ +test.test___future__ +test.test__locale +test.test__opcode +test.test__osx_support +test.test__xxsubinterpreters +test.test_abc +test.test_abstract_numbers +test.test_aifc +test.test_argparse +test.test_array +test.test_asdl_parser +test.test_ast +test.test_asyncgen +test.test_asynchat +test.test_asyncio +test.test_asyncio.__main__ +test.test_asyncio.echo +test.test_asyncio.echo2 +test.test_asyncio.echo3 +test.test_asyncio.functional +test.test_asyncio.test_base_events +test.test_asyncio.test_buffered_proto +test.test_asyncio.test_context +test.test_asyncio.test_events +test.test_asyncio.test_futures +test.test_asyncio.test_locks +test.test_asyncio.test_pep492 +test.test_asyncio.test_proactor_events +test.test_asyncio.test_protocols +test.test_asyncio.test_queues +test.test_asyncio.test_runners +test.test_asyncio.test_selector_events +test.test_asyncio.test_sendfile +test.test_asyncio.test_server +test.test_asyncio.test_sock_lowlevel +test.test_asyncio.test_sslproto +test.test_asyncio.test_streams +test.test_asyncio.test_subprocess +test.test_asyncio.test_tasks +test.test_asyncio.test_transports +test.test_asyncio.test_unix_events +test.test_asyncio.test_windows_events +test.test_asyncio.test_windows_utils +test.test_asyncio.utils +test.test_asyncore +test.test_atexit +test.test_audioop +test.test_audit +test.test_augassign +test.test_base64 +test.test_baseexception +test.test_bdb +test.test_bigaddrspace +test.test_bigmem +test.test_binascii +test.test_binhex +test.test_binop +test.test_bisect +test.test_bool +test.test_buffer +test.test_bufio +test.test_builtin +test.test_bytes +test.test_bz2 +test.test_c_locale_coercion +test.test_calendar +test.test_call +test.test_capi +test.test_cgi +test.test_cgitb +test.test_charmapcodec +test.test_class +test.test_clinic +test.test_cmath +test.test_cmd +test.test_cmd_line +test.test_cmd_line_script +test.test_code +test.test_code_module +test.test_codeccallbacks +test.test_codecencodings_cn +test.test_codecencodings_hk +test.test_codecencodings_iso2022 +test.test_codecencodings_jp +test.test_codecencodings_kr +test.test_codecencodings_tw +test.test_codecmaps_cn +test.test_codecmaps_hk +test.test_codecmaps_jp +test.test_codecmaps_kr +test.test_codecmaps_tw +test.test_codecs +test.test_codeop +test.test_collections +test.test_colorsys +test.test_compare +test.test_compile +test.test_compileall +test.test_complex +test.test_concurrent_futures +test.test_configparser +test.test_contains +test.test_context +test.test_contextlib +test.test_contextlib_async +test.test_copy +test.test_copyreg +test.test_coroutines +test.test_cprofile +test.test_crashers +test.test_crypt +test.test_csv +test.test_ctypes +test.test_curses +test.test_dataclasses +test.test_datetime +test.test_dbm +test.test_dbm_dumb +test.test_dbm_gnu +test.test_dbm_ndbm +test.test_decimal +test.test_decorators +test.test_defaultdict +test.test_deque +test.test_descr +test.test_descrtut +test.test_devpoll +test.test_dict +test.test_dict_version +test.test_dictcomps +test.test_dictviews +test.test_difflib +test.test_dis +test.test_distutils +test.test_doctest +test.test_doctest2 +test.test_docxmlrpc +test.test_dtrace +test.test_dummy_thread +test.test_dummy_threading +test.test_dynamic +test.test_dynamicclassattribute +test.test_eintr +test.test_email +test.test_email.__main__ +test.test_email.test__encoded_words +test.test_email.test__header_value_parser +test.test_email.test_asian_codecs +test.test_email.test_contentmanager +test.test_email.test_defect_handling +test.test_email.test_email +test.test_email.test_generator +test.test_email.test_headerregistry +test.test_email.test_inversion +test.test_email.test_message +test.test_email.test_parser +test.test_email.test_pickleable +test.test_email.test_policy +test.test_email.test_utils +test.test_email.torture_test +test.test_embed +test.test_ensurepip +test.test_enum +test.test_enumerate +test.test_eof +test.test_epoll +test.test_errno +test.test_exception_hierarchy +test.test_exception_variations +test.test_exceptions +test.test_extcall +test.test_faulthandler +test.test_fcntl +test.test_file +test.test_file_eintr +test.test_filecmp +test.test_fileinput +test.test_fileio +test.test_finalization +test.test_float +test.test_flufl +test.test_fnmatch +test.test_fork1 +test.test_format +test.test_fractions +test.test_frame +test.test_frozen +test.test_fstring +test.test_ftplib +test.test_funcattrs +test.test_functools +test.test_future +test.test_future3 +test.test_future4 +test.test_future5 +test.test_gc +test.test_gdb +test.test_generator_stop +test.test_generators +test.test_genericclass +test.test_genericpath +test.test_genexps +test.test_getargs2 +test.test_getopt +test.test_getpass +test.test_gettext +test.test_glob +test.test_global +test.test_grammar +test.test_grp +test.test_gzip +test.test_hash +test.test_hashlib +test.test_heapq +test.test_hmac +test.test_html +test.test_htmlparser +test.test_http_cookiejar +test.test_http_cookies +test.test_httplib +test.test_httpservers +test.test_idle +test.test_imaplib +test.test_imghdr +test.test_imp +test.test_import +test.test_import.__main__ +test.test_import.data.circular_imports.basic +test.test_import.data.circular_imports.basic2 +test.test_import.data.circular_imports.binding +test.test_import.data.circular_imports.binding2 +test.test_import.data.circular_imports.from_cycle1 +test.test_import.data.circular_imports.from_cycle2 +test.test_import.data.circular_imports.indirect +test.test_import.data.circular_imports.rebinding +test.test_import.data.circular_imports.rebinding2 +test.test_import.data.circular_imports.source +test.test_import.data.circular_imports.subpackage +test.test_import.data.circular_imports.subpkg.subpackage2 +test.test_import.data.circular_imports.subpkg.util +test.test_import.data.circular_imports.use +test.test_import.data.circular_imports.util +test.test_import.data.package +test.test_import.data.package.submodule +test.test_import.data.package2.submodule1 +test.test_import.data.package2.submodule2 +test.test_importlib +test.test_importlib.__main__ +test.test_importlib.abc +test.test_importlib.builtin +test.test_importlib.builtin.__main__ +test.test_importlib.builtin.test_finder +test.test_importlib.builtin.test_loader +test.test_importlib.data +test.test_importlib.data01 +test.test_importlib.data01.subdirectory +test.test_importlib.data02 +test.test_importlib.data02.one +test.test_importlib.data02.two +test.test_importlib.data03 +test.test_importlib.data03.namespace.portion1 +test.test_importlib.data03.namespace.portion2 +test.test_importlib.extension +test.test_importlib.extension.__main__ +test.test_importlib.extension.test_case_sensitivity +test.test_importlib.extension.test_finder +test.test_importlib.extension.test_loader +test.test_importlib.extension.test_path_hook +test.test_importlib.fixtures +test.test_importlib.frozen +test.test_importlib.frozen.__main__ +test.test_importlib.frozen.test_finder +test.test_importlib.frozen.test_loader +test.test_importlib.import_ +test.test_importlib.import_.__main__ +test.test_importlib.import_.test___loader__ +test.test_importlib.import_.test___package__ +test.test_importlib.import_.test_api +test.test_importlib.import_.test_caching +test.test_importlib.import_.test_fromlist +test.test_importlib.import_.test_meta_path +test.test_importlib.import_.test_packages +test.test_importlib.import_.test_path +test.test_importlib.import_.test_relative_imports +test.test_importlib.namespace_pkgs.both_portions.foo.one +test.test_importlib.namespace_pkgs.both_portions.foo.two +test.test_importlib.namespace_pkgs.module_and_namespace_package.a_test +test.test_importlib.namespace_pkgs.not_a_namespace_pkg.foo +test.test_importlib.namespace_pkgs.not_a_namespace_pkg.foo.one +test.test_importlib.namespace_pkgs.portion1.foo.one +test.test_importlib.namespace_pkgs.portion2.foo.two +test.test_importlib.namespace_pkgs.project1.parent.child.one +test.test_importlib.namespace_pkgs.project2.parent.child.two +test.test_importlib.namespace_pkgs.project3.parent.child.three +test.test_importlib.source +test.test_importlib.source.__main__ +test.test_importlib.source.test_case_sensitivity +test.test_importlib.source.test_file_loader +test.test_importlib.source.test_finder +test.test_importlib.source.test_path_hook +test.test_importlib.source.test_source_encoding +test.test_importlib.test_abc +test.test_importlib.test_api +test.test_importlib.test_lazy +test.test_importlib.test_locks +test.test_importlib.test_main +test.test_importlib.test_metadata_api +test.test_importlib.test_namespace_pkgs +test.test_importlib.test_open +test.test_importlib.test_path +test.test_importlib.test_read +test.test_importlib.test_resource +test.test_importlib.test_spec +test.test_importlib.test_util +test.test_importlib.test_windows +test.test_importlib.test_zip +test.test_importlib.util +test.test_importlib.zipdata01 +test.test_importlib.zipdata02 +test.test_index +test.test_inspect +test.test_int +test.test_int_literal +test.test_io +test.test_ioctl +test.test_ipaddress +test.test_isinstance +test.test_iter +test.test_iterlen +test.test_itertools +test.test_json +test.test_json.__main__ +test.test_json.test_decode +test.test_json.test_default +test.test_json.test_dump +test.test_json.test_encode_basestring_ascii +test.test_json.test_enum +test.test_json.test_fail +test.test_json.test_float +test.test_json.test_indent +test.test_json.test_pass1 +test.test_json.test_pass2 +test.test_json.test_pass3 +test.test_json.test_recursion +test.test_json.test_scanstring +test.test_json.test_separators +test.test_json.test_speedups +test.test_json.test_tool +test.test_json.test_unicode +test.test_keyword +test.test_keywordonlyarg +test.test_kqueue +test.test_largefile +test.test_lib2to3 +test.test_linecache +test.test_list +test.test_listcomps +test.test_lltrace +test.test_locale +test.test_logging +test.test_long +test.test_longexp +test.test_lzma +test.test_mailbox +test.test_mailcap +test.test_marshal +test.test_math +test.test_memoryio +test.test_memoryview +test.test_metaclass +test.test_mimetypes +test.test_minidom +test.test_mmap +test.test_module +test.test_modulefinder +test.test_msilib +test.test_multibytecodec +test.test_multiprocessing_fork +test.test_multiprocessing_forkserver +test.test_multiprocessing_main_handling +test.test_multiprocessing_spawn +test.test_named_expressions +test.test_netrc +test.test_nis +test.test_nntplib +test.test_normalization +test.test_ntpath +test.test_numeric_tower +test.test_opcodes +test.test_openpty +test.test_operator +test.test_optparse +test.test_ordered_dict +test.test_os +test.test_ossaudiodev +test.test_osx_env +test.test_parser +test.test_pathlib +test.test_pdb +test.test_peepholer +test.test_pickle +test.test_picklebuffer +test.test_pickletools +test.test_pipes +test.test_pkg +test.test_pkgimport +test.test_pkgutil +test.test_platform +test.test_plistlib +test.test_poll +test.test_popen +test.test_poplib +test.test_positional_only_arg +test.test_posix +test.test_posixpath +test.test_pow +test.test_pprint +test.test_print +test.test_profile +test.test_property +test.test_pstats +test.test_pty +test.test_pulldom +test.test_pwd +test.test_py_compile +test.test_pyclbr +test.test_pydoc +test.test_pyexpat +test.test_queue +test.test_quopri +test.test_raise +test.test_random +test.test_range +test.test_re +test.test_readline +test.test_regrtest +test.test_repl +test.test_reprlib +test.test_resource +test.test_richcmp +test.test_rlcompleter +test.test_robotparser +test.test_runpy +test.test_sax +test.test_sched +test.test_scope +test.test_script_helper +test.test_secrets +test.test_select +test.test_selectors +test.test_set +test.test_setcomps +test.test_shelve +test.test_shlex +test.test_shutil +test.test_signal +test.test_site +test.test_slice +test.test_smtpd +test.test_smtplib +test.test_smtpnet +test.test_sndhdr +test.test_socket +test.test_socketserver +test.test_sort +test.test_source_encoding +test.test_spwd +test.test_sqlite +test.test_ssl +test.test_startfile +test.test_stat +test.test_statistics +test.test_strftime +test.test_string +test.test_string_literals +test.test_stringprep +test.test_strptime +test.test_strtod +test.test_struct +test.test_structmembers +test.test_structseq +test.test_subclassinit +test.test_subprocess +test.test_sunau +test.test_sundry +test.test_super +test.test_support +test.test_symbol +test.test_symtable +test.test_syntax +test.test_sys +test.test_sys_setprofile +test.test_sys_settrace +test.test_sysconfig +test.test_syslog +test.test_tabnanny +test.test_tarfile +test.test_tcl +test.test_telnetlib +test.test_tempfile +test.test_textwrap +test.test_thread +test.test_threaded_import +test.test_threadedtempfile +test.test_threading +test.test_threading_local +test.test_threadsignals +test.test_time +test.test_timeit +test.test_timeout +test.test_tix +test.test_tk +test.test_tokenize +test.test_tools +test.test_tools.__main__ +test.test_tools.test_fixcid +test.test_tools.test_gprof2html +test.test_tools.test_i18n +test.test_tools.test_lll +test.test_tools.test_md5sum +test.test_tools.test_pathfix +test.test_tools.test_pdeps +test.test_tools.test_pindent +test.test_tools.test_reindent +test.test_tools.test_sundry +test.test_tools.test_unparse +test.test_trace +test.test_traceback +test.test_tracemalloc +test.test_ttk_guionly +test.test_ttk_textonly +test.test_tuple +test.test_turtle +test.test_type_comments +test.test_typechecks +test.test_types +test.test_typing +test.test_ucn +test.test_unary +test.test_unicode +test.test_unicode_file +test.test_unicode_file_functions +test.test_unicode_identifiers +test.test_unicodedata +test.test_unittest +test.test_univnewlines +test.test_unpack +test.test_unpack_ex +test.test_urllib +test.test_urllib2 +test.test_urllib2_localnet +test.test_urllib2net +test.test_urllib_response +test.test_urllibnet +test.test_urlparse +test.test_userdict +test.test_userlist +test.test_userstring +test.test_utf8_mode +test.test_utf8source +test.test_uu +test.test_uuid +test.test_venv +test.test_wait3 +test.test_wait4 +test.test_warnings +test.test_warnings.__main__ +test.test_warnings.data.import_warning +test.test_warnings.data.stacklevel +test.test_wave +test.test_weakref +test.test_weakset +test.test_webbrowser +test.test_winconsoleio +test.test_winreg +test.test_winsound +test.test_with +test.test_wsgiref +test.test_xdrlib +test.test_xml_dom_minicompat +test.test_xml_etree +test.test_xml_etree_c +test.test_xmlrpc +test.test_xmlrpc_net +test.test_xxtestfuzz +test.test_yield_from +test.test_zipapp +test.test_zipfile +test.test_zipfile64 +test.test_zipimport +test.test_zipimport_support +test.test_zlib +test.testcodec +test.tf_inherit_check +test.threaded_import_hangers +test.time_hashlib +test.tracedmodules +test.tracedmodules.testmod +test.win_console_handler +test.xmltests +test.ziptestdata.testdata_module_inside_zip textwrap +this threading time timeit tkinter +tkinter.__main__ +tkinter.colorchooser +tkinter.commondialog +tkinter.constants +tkinter.dialog +tkinter.dnd +tkinter.filedialog +tkinter.font +tkinter.messagebox tkinter.scrolledtext +tkinter.simpledialog +tkinter.test +tkinter.test.runtktests +tkinter.test.support +tkinter.test.test_tkinter +tkinter.test.test_tkinter.test_font +tkinter.test.test_tkinter.test_geometry_managers +tkinter.test.test_tkinter.test_images +tkinter.test.test_tkinter.test_loadtk +tkinter.test.test_tkinter.test_misc +tkinter.test.test_tkinter.test_text +tkinter.test.test_tkinter.test_variables +tkinter.test.test_tkinter.test_widgets +tkinter.test.test_ttk +tkinter.test.test_ttk.test_extensions +tkinter.test.test_ttk.test_functions +tkinter.test.test_ttk.test_style +tkinter.test.test_ttk.test_widgets +tkinter.test.widget_tests tkinter.tix tkinter.ttk token @@ -278,11 +1641,73 @@ tracemalloc tty turtle turtledemo +turtledemo.__main__ +turtledemo.bytedesign +turtledemo.chaos +turtledemo.clock +turtledemo.colormixer +turtledemo.forest +turtledemo.fractalcurves +turtledemo.lindenmayer +turtledemo.minimal_hanoi +turtledemo.nim +turtledemo.paint +turtledemo.peace +turtledemo.penrose +turtledemo.planet_and_moon +turtledemo.rosette +turtledemo.round_dance +turtledemo.sorting_animate +turtledemo.tree +turtledemo.two_canvases +turtledemo.yinyang types typing +typing.io +typing.re unicodedata unittest +unittest.__main__ +unittest.async_case +unittest.case +unittest.loader +unittest.main unittest.mock +unittest.result +unittest.runner +unittest.signals +unittest.suite +unittest.test +unittest.test.__main__ +unittest.test._test_warnings +unittest.test.dummy +unittest.test.support +unittest.test.test_assertions +unittest.test.test_async_case +unittest.test.test_break +unittest.test.test_case +unittest.test.test_discovery +unittest.test.test_functiontestcase +unittest.test.test_loader +unittest.test.test_program +unittest.test.test_result +unittest.test.test_runner +unittest.test.test_setups +unittest.test.test_skipping +unittest.test.test_suite +unittest.test.testmock +unittest.test.testmock.__main__ +unittest.test.testmock.support +unittest.test.testmock.testasync +unittest.test.testmock.testcallable +unittest.test.testmock.testhelpers +unittest.test.testmock.testmagicmethods +unittest.test.testmock.testmock +unittest.test.testmock.testpatch +unittest.test.testmock.testsealable +unittest.test.testmock.testsentinel +unittest.test.testmock.testwith +unittest.util urllib urllib.error urllib.parse @@ -292,6 +1717,7 @@ urllib.robotparser uu uuid venv +venv.__main__ warnings wave weakref @@ -307,18 +1733,33 @@ wsgiref.validate xdrlib xml xml.dom +xml.dom.NodeFilter +xml.dom.domreg +xml.dom.expatbuilder +xml.dom.minicompat xml.dom.minidom xml.dom.pulldom +xml.dom.xmlbuilder +xml.etree +xml.etree.ElementInclude +xml.etree.ElementPath xml.etree.ElementTree +xml.etree.cElementTree +xml.parsers xml.parsers.expat xml.parsers.expat.errors xml.parsers.expat.model xml.sax +xml.sax._exceptions +xml.sax.expatreader xml.sax.handler xml.sax.saxutils xml.sax.xmlreader +xmlrpc xmlrpc.client xmlrpc.server +xxlimited +xxsubtype zipapp zipfile zipimport From 66938c55f64fe0f355a0015f8f6859556e5eaaef Mon Sep 17 00:00:00 2001 From: John Vandenberg Date: Sun, 22 Dec 2019 15:01:04 +0700 Subject: [PATCH 4/4] MANIFEST.in: Add tests --- MANIFEST.in | 1 + 1 file changed, 1 insertion(+) diff --git a/MANIFEST.in b/MANIFEST.in index e3d3a6b..643512c 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -3,3 +3,4 @@ include README.rst include LICENSE include versioneer.py include stdlib_list/_version.py +recursive-include tests *.py