实例介绍
【实例简介】Python 2.7.16 绿色版 for win 64bit
根据官方安装包制作的纯净免安装文件...1、该目录可解压到任意路径,如F:\Python27。 2、需在系统环境变量PATH中,加入F:\Python27;F:\Python27\Scripts。 3、pip安装文件包,需用 python -m pip install xxxx 的形式。
文件清单
└── Python27
├── DLLs
│ ├── _bsddb.pyd
│ ├── bz2.pyd
│ ├── _ctypes.pyd
│ ├── _ctypes_test.pyd
│ ├── _elementtree.pyd
│ ├── _hashlib.pyd
│ ├── _msi.pyd
│ ├── _multiprocessing.pyd
│ ├── pyc.ico
│ ├── pyexpat.pyd
│ ├── py.ico
│ ├── select.pyd
│ ├── _socket.pyd
│ ├── sqlite3.dll
│ ├── _sqlite3.pyd
│ ├── _ssl.pyd
│ ├── tcl85.dll
│ ├── tclpip85.dll
│ ├── _testcapi.pyd
│ ├── tk85.dll
│ ├── _tkinter.pyd
│ ├── unicodedata.pyd
│ └── winsound.pyd
├── Doc
│ └── python2716.chm
├── include
│ ├── abstract.h
│ ├── asdl.h
│ ├── ast.h
│ ├── bitset.h
│ ├── boolobject.h
│ ├── bufferobject.h
│ ├── bytearrayobject.h
│ ├── bytes_methods.h
│ ├── bytesobject.h
│ ├── cellobject.h
│ ├── ceval.h
│ ├── classobject.h
│ ├── cobject.h
│ ├── codecs.h
│ ├── code.h
│ ├── compile.h
│ ├── complexobject.h
│ ├── cStringIO.h
│ ├── datetime.h
│ ├── descrobject.h
│ ├── dictobject.h
│ ├── dtoa.h
│ ├── enumobject.h
│ ├── errcode.h
│ ├── eval.h
│ ├── fileobject.h
│ ├── floatobject.h
│ ├── frameobject.h
│ ├── funcobject.h
│ ├── genobject.h
│ ├── graminit.h
│ ├── grammar.h
│ ├── import.h
│ ├── intobject.h
│ ├── intrcheck.h
│ ├── iterobject.h
│ ├── listobject.h
│ ├── longintrepr.h
│ ├── longobject.h
│ ├── marshal.h
│ ├── memoryobject.h
│ ├── metagrammar.h
│ ├── methodobject.h
│ ├── modsupport.h
│ ├── moduleobject.h
│ ├── node.h
│ ├── object.h
│ ├── objimpl.h
│ ├── opcode.h
│ ├── osdefs.h
│ ├── parsetok.h
│ ├── patchlevel.h
│ ├── pgen.h
│ ├── pgenheaders.h
│ ├── pyarena.h
│ ├── pycapsule.h
│ ├── pyconfig.h
│ ├── pyctype.h
│ ├── py_curses.h
│ ├── pydebug.h
│ ├── pyerrors.h
│ ├── pyexpat.h
│ ├── pyfpe.h
│ ├── pygetopt.h
│ ├── pymacconfig.h
│ ├── pymactoolbox.h
│ ├── pymath.h
│ ├── pymem.h
│ ├── pyport.h
│ ├── pystate.h
│ ├── pystrcmp.h
│ ├── pystrtod.h
│ ├── Python-ast.h
│ ├── Python.h
│ ├── pythonrun.h
│ ├── pythread.h
│ ├── rangeobject.h
│ ├── setobject.h
│ ├── sliceobject.h
│ ├── stringobject.h
│ ├── structmember.h
│ ├── structseq.h
│ ├── symtable.h
│ ├── sysmodule.h
│ ├── timefuncs.h
│ ├── token.h
│ ├── traceback.h
│ ├── tupleobject.h
│ ├── ucnhash.h
│ ├── unicodeobject.h
│ ├── warnings.h
│ └── weakrefobject.h
├── Lib
│ ├── _abcoll.py
│ ├── _abcoll.pyc
│ ├── abc.py
│ ├── abc.pyc
│ ├── aifc.py
│ ├── antigravity.py
│ ├── anydbm.py
│ ├── argparse.py
│ ├── argparse.pyc
│ ├── ast.py
│ ├── asynchat.py
│ ├── asyncore.py
│ ├── atexit.py
│ ├── atexit.pyc
│ ├── audiodev.py
│ ├── base64.py
│ ├── base64.pyc
│ ├── BaseHTTPServer.py
│ ├── Bastion.py
│ ├── bdb.py
│ ├── binhex.py
│ ├── bisect.py
│ ├── bisect.pyc
│ ├── bsddb
│ │ ├── dbobj.py
│ │ ├── db.py
│ │ ├── dbrecio.py
│ │ ├── dbshelve.py
│ │ ├── dbtables.py
│ │ ├── dbutils.py
│ │ ├── __init__.py
│ │ └── test
│ │ ├── __init__.py
│ │ ├── test_all.py
│ │ ├── test_associate.py
│ │ ├── test_basics.py
│ │ ├── test_compare.py
│ │ ├── test_compat.py
│ │ ├── test_cursor_pget_bug.py
│ │ ├── test_dbenv.py
│ │ ├── test_dbobj.py
│ │ ├── test_db.py
│ │ ├── test_dbshelve.py
│ │ ├── test_dbtables.py
│ │ ├── test_distributed_transactions.py
│ │ ├── test_early_close.py
│ │ ├── test_fileid.py
│ │ ├── test_get_none.py
│ │ ├── test_join.py
│ │ ├── test_lock.py
│ │ ├── test_misc.py
│ │ ├── test_pickle.py
│ │ ├── test_queue.py
│ │ ├── test_recno.py
│ │ ├── test_replication.py
│ │ ├── test_sequence.py
│ │ └── test_thread.py
│ ├── calendar.py
│ ├── calendar.pyc
│ ├── CGIHTTPServer.py
│ ├── cgi.py
│ ├── cgi.pyc
│ ├── cgitb.py
│ ├── chunk.py
│ ├── cmd.py
│ ├── codecs.py
│ ├── codecs.pyc
│ ├── codeop.py
│ ├── code.py
│ ├── collections.py
│ ├── collections.pyc
│ ├── colorsys.py
│ ├── commands.py
│ ├── compileall.py
│ ├── compileall.pyc
│ ├── compiler
│ │ ├── ast.py
│ │ ├── consts.py
│ │ ├── future.py
│ │ ├── __init__.py
│ │ ├── misc.py
│ │ ├── pyassem.py
│ │ ├── pycodegen.py
│ │ ├── symbols.py
│ │ ├── syntax.py
│ │ ├── transformer.py
│ │ └── visitor.py
│ ├── ConfigParser.py
│ ├── ConfigParser.pyc
│ ├── contextlib.py
│ ├── contextlib.pyc
│ ├── cookielib.py
│ ├── cookielib.pyc
│ ├── Cookie.py
│ ├── Cookie.pyc
│ ├── copy.py
│ ├── copy.pyc
│ ├── copy_reg.py
│ ├── copy_reg.pyc
│ ├── cProfile.py
│ ├── csv.py
│ ├── csv.pyc
│ ├── ctypes
│ │ ├── _endian.py
│ │ ├── _endian.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── macholib
│ │ │ ├── dyld.py
│ │ │ ├── dylib.py
│ │ │ ├── framework.py
│ │ │ └── __init__.py
│ │ ├── test
│ │ │ ├── __init__.py
│ │ │ ├── runtests.py
│ │ │ ├── test_anon.py
│ │ │ ├── test_array_in_pointer.py
│ │ │ ├── test_arrays.py
│ │ │ ├── test_as_parameter.py
│ │ │ ├── test_bitfields.py
│ │ │ ├── test_buffers.py
│ │ │ ├── test_byteswap.py
│ │ │ ├── test_callbacks.py
│ │ │ ├── test_cast.py
│ │ │ ├── test_cfuncs.py
│ │ │ ├── test_checkretval.py
│ │ │ ├── test_delattr.py
│ │ │ ├── test_errno.py
│ │ │ ├── test_find.py
│ │ │ ├── test_frombuffer.py
│ │ │ ├── test_funcptr.py
│ │ │ ├── test_functions.py
│ │ │ ├── test_incomplete.py
│ │ │ ├── test_init.py
│ │ │ ├── test_internals.py
│ │ │ ├── test_keeprefs.py
│ │ │ ├── test_libc.py
│ │ │ ├── test_loading.py
│ │ │ ├── test_macholib.py
│ │ │ ├── test_memfunctions.py
│ │ │ ├── test_numbers.py
│ │ │ ├── test_objects.py
│ │ │ ├── test_parameters.py
│ │ │ ├── test_pep3118.py
│ │ │ ├── test_pickling.py
│ │ │ ├── test_pointers.py
│ │ │ ├── test_prototypes.py
│ │ │ ├── test_python_api.py
│ │ │ ├── test_random_things.py
│ │ │ ├── test_refcounts.py
│ │ │ ├── test_repr.py
│ │ │ ├── test_returnfuncptrs.py
│ │ │ ├── test_simplesubclasses.py
│ │ │ ├── test_sizes.py
│ │ │ ├── test_slicing.py
│ │ │ ├── test_stringptr.py
│ │ │ ├── test_strings.py
│ │ │ ├── test_struct_fields.py
│ │ │ ├── test_structures.py
│ │ │ ├── test_unaligned_structures.py
│ │ │ ├── test_unicode.py
│ │ │ ├── test_values.py
│ │ │ ├── test_varsize_struct.py
│ │ │ ├── test_win32.py
│ │ │ └── test_wintypes.py
│ │ ├── util.py
│ │ ├── wintypes.py
│ │ └── wintypes.pyc
│ ├── curses
│ │ ├── ascii.py
│ │ ├── has_key.py
│ │ ├── __init__.py
│ │ ├── panel.py
│ │ ├── textpad.py
│ │ └── wrapper.py
│ ├── dbhash.py
│ ├── decimal.py
│ ├── difflib.py
│ ├── dircache.py
│ ├── dis.py
│ ├── dis.pyc
│ ├── distutils
│ │ ├── archive_util.py
│ │ ├── archive_util.pyc
│ │ ├── bcppcompiler.py
│ │ ├── ccompiler.py
│ │ ├── cmd.py
│ │ ├── cmd.pyc
│ │ ├── command
│ │ │ ├── bdist_dumb.py
│ │ │ ├── bdist_msi.py
│ │ │ ├── bdist.py
│ │ │ ├── bdist_rpm.py
│ │ │ ├── bdist_wininst.py
│ │ │ ├── build_clib.py
│ │ │ ├── build_ext.py
│ │ │ ├── build.py
│ │ │ ├── build.pyc
│ │ │ ├── build_py.py
│ │ │ ├── build_scripts.py
│ │ │ ├── check.py
│ │ │ ├── clean.py
│ │ │ ├── config.py
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── install_data.py
│ │ │ ├── install_egg_info.py
│ │ │ ├── install_headers.py
│ │ │ ├── install_lib.py
│ │ │ ├── install.py
│ │ │ ├── install.pyc
│ │ │ ├── install_scripts.py
│ │ │ ├── register.py
│ │ │ ├── sdist.py
│ │ │ ├── upload.py
│ │ │ ├── wininst-6.0.exe
│ │ │ ├── wininst-7.1.exe
│ │ │ ├── wininst-8.0.exe
│ │ │ ├── wininst-9.0-amd64.exe
│ │ │ └── wininst-9.0.exe
│ │ ├── config.py
│ │ ├── config.pyc
│ │ ├── core.py
│ │ ├── core.pyc
│ │ ├── cygwinccompiler.py
│ │ ├── debug.py
│ │ ├── debug.pyc
│ │ ├── dep_util.py
│ │ ├── dep_util.pyc
│ │ ├── dir_util.py
│ │ ├── dir_util.pyc
│ │ ├── dist.py
│ │ ├── dist.pyc
│ │ ├── emxccompiler.py
│ │ ├── errors.py
│ │ ├── errors.pyc
│ │ ├── extension.py
│ │ ├── extension.pyc
│ │ ├── fancy_getopt.py
│ │ ├── fancy_getopt.pyc
│ │ ├── filelist.py
│ │ ├── file_util.py
│ │ ├── file_util.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── log.py
│ │ ├── log.pyc
│ │ ├── msvc9compiler.py
│ │ ├── msvccompiler.py
│ │ ├── spawn.py
│ │ ├── spawn.pyc
│ │ ├── sysconfig.py
│ │ ├── sysconfig.pyc
│ │ ├── tests
│ │ │ ├── __init__.py
│ │ │ ├── Setup.sample
│ │ │ ├── setuptools_build_ext.py
│ │ │ ├── setuptools_extension.py
│ │ │ ├── support.py
│ │ │ ├── test_archive_util.py
│ │ │ ├── test_bdist_dumb.py
│ │ │ ├── test_bdist_msi.py
│ │ │ ├── test_bdist.py
│ │ │ ├── test_bdist_rpm.py
│ │ │ ├── test_bdist_wininst.py
│ │ │ ├── test_build_clib.py
│ │ │ ├── test_build_ext.py
│ │ │ ├── test_build.py
│ │ │ ├── test_build_py.py
│ │ │ ├── test_build_scripts.py
│ │ │ ├── test_ccompiler.py
│ │ │ ├── test_check.py
│ │ │ ├── test_clean.py
│ │ │ ├── test_cmd.py
│ │ │ ├── test_config_cmd.py
│ │ │ ├── test_config.py
│ │ │ ├── test_core.py
│ │ │ ├── test_dep_util.py
│ │ │ ├── test_dir_util.py
│ │ │ ├── test_dist.py
│ │ │ ├── test_filelist.py
│ │ │ ├── test_file_util.py
│ │ │ ├── test_install_data.py
│ │ │ ├── test_install_headers.py
│ │ │ ├── test_install_lib.py
│ │ │ ├── test_install.py
│ │ │ ├── test_install_scripts.py
│ │ │ ├── test_msvc9compiler.py
│ │ │ ├── test_register.py
│ │ │ ├── test_sdist.py
│ │ │ ├── test_spawn.py
│ │ │ ├── test_sysconfig.py
│ │ │ ├── test_text_file.py
│ │ │ ├── test_unixccompiler.py
│ │ │ ├── test_upload.py
│ │ │ ├── test_util.py
│ │ │ ├── test_versionpredicate.py
│ │ │ └── test_version.py
│ │ ├── text_file.py
│ │ ├── unixccompiler.py
│ │ ├── util.py
│ │ ├── util.pyc
│ │ ├── versionpredicate.py
│ │ └── version.py
│ ├── doctest.py
│ ├── DocXMLRPCServer.py
│ ├── dumbdbm.py
│ ├── dummy_threading.py
│ ├── dummy_thread.py
│ ├── email
│ │ ├── base64mime.py
│ │ ├── base64mime.pyc
│ │ ├── charset.py
│ │ ├── charset.pyc
│ │ ├── encoders.py
│ │ ├── encoders.pyc
│ │ ├── errors.py
│ │ ├── errors.pyc
│ │ ├── feedparser.py
│ │ ├── feedparser.pyc
│ │ ├── generator.py
│ │ ├── header.py
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── iterators.py
│ │ ├── iterators.pyc
│ │ ├── message.py
│ │ ├── message.pyc
│ │ ├── mime
│ │ │ ├── application.py
│ │ │ ├── audio.py
│ │ │ ├── base.py
│ │ │ ├── image.py
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── message.py
│ │ │ ├── multipart.py
│ │ │ ├── nonmultipart.py
│ │ │ └── text.py
│ │ ├── _parseaddr.py
│ │ ├── _parseaddr.pyc
│ │ ├── parser.py
│ │ ├── parser.pyc
│ │ ├── quoprimime.py
│ │ ├── quoprimime.pyc
│ │ ├── test
│ │ │ ├── data
│ │ │ │ ├── audiotest.au
│ │ │ │ ├── msg_01.txt
│ │ │ │ ├── msg_02.txt
│ │ │ │ ├── msg_03.txt
│ │ │ │ ├── msg_04.txt
│ │ │ │ ├── msg_05.txt
│ │ │ │ ├── msg_06.txt
│ │ │ │ ├── msg_07.txt
│ │ │ │ ├── msg_08.txt
│ │ │ │ ├── msg_09.txt
│ │ │ │ ├── msg_10.txt
│ │ │ │ ├── msg_11.txt
│ │ │ │ ├── msg_12a.txt
│ │ │ │ ├── msg_12.txt
│ │ │ │ ├── msg_13.txt
│ │ │ │ ├── msg_14.txt
│ │ │ │ ├── msg_15.txt
│ │ │ │ ├── msg_16.txt
│ │ │ │ ├── msg_17.txt
│ │ │ │ ├── msg_18.txt
│ │ │ │ ├── msg_19.txt
│ │ │ │ ├── msg_20.txt
│ │ │ │ ├── msg_21.txt
│ │ │ │ ├── msg_22.txt
│ │ │ │ ├── msg_23.txt
│ │ │ │ ├── msg_24.txt
│ │ │ │ ├── msg_25.txt
│ │ │ │ ├── msg_26.txt
│ │ │ │ ├── msg_27.txt
│ │ │ │ ├── msg_28.txt
│ │ │ │ ├── msg_29.txt
│ │ │ │ ├── msg_30.txt
│ │ │ │ ├── msg_31.txt
│ │ │ │ ├── msg_32.txt
│ │ │ │ ├── msg_33.txt
│ │ │ │ ├── msg_34.txt
│ │ │ │ ├── msg_35.txt
│ │ │ │ ├── msg_36.txt
│ │ │ │ ├── msg_37.txt
│ │ │ │ ├── msg_38.txt
│ │ │ │ ├── msg_39.txt
│ │ │ │ ├── msg_40.txt
│ │ │ │ ├── msg_41.txt
│ │ │ │ ├── msg_42.txt
│ │ │ │ ├── msg_43.txt
│ │ │ │ ├── msg_44.txt
│ │ │ │ ├── msg_45.txt
│ │ │ │ ├── msg_46.txt
│ │ │ │ └── PyBanner048.gif
│ │ │ ├── __init__.py
│ │ │ ├── test_email_codecs.py
│ │ │ ├── test_email_codecs_renamed.py
│ │ │ ├── test_email.py
│ │ │ ├── test_email_renamed.py
│ │ │ └── test_email_torture.py
│ │ ├── utils.py
│ │ └── utils.pyc
│ ├── encodings
│ │ ├── aliases.py
│ │ ├── aliases.pyc
│ │ ├── ascii.py
│ │ ├── ascii.pyc
│ │ ├── base64_codec.py
│ │ ├── big5hkscs.py
│ │ ├── big5.py
│ │ ├── bz2_codec.py
│ │ ├── charmap.py
│ │ ├── cp037.py
│ │ ├── cp1006.py
│ │ ├── cp1026.py
│ │ ├── cp1140.py
│ │ ├── cp1250.py
│ │ ├── cp1251.py
│ │ ├── cp1252.py
│ │ ├── cp1253.py
│ │ ├── cp1254.py
│ │ ├── cp1255.py
│ │ ├── cp1256.py
│ │ ├── cp1257.py
│ │ ├── cp1258.py
│ │ ├── cp424.py
│ │ ├── cp437.py
│ │ ├── cp500.py
│ │ ├── cp720.py
│ │ ├── cp737.py
│ │ ├── cp775.py
│ │ ├── cp850.py
│ │ ├── cp852.py
│ │ ├── cp855.py
│ │ ├── cp856.py
│ │ ├── cp857.py
│ │ ├── cp858.py
│ │ ├── cp860.py
│ │ ├── cp861.py
│ │ ├── cp862.py
│ │ ├── cp863.py
│ │ ├── cp864.py
│ │ ├── cp865.py
│ │ ├── cp866.py
│ │ ├── cp869.py
│ │ ├── cp874.py
│ │ ├── cp875.py
│ │ ├── cp932.py
│ │ ├── cp949.py
│ │ ├── cp950.py
│ │ ├── euc_jis_2004.py
│ │ ├── euc_jisx0213.py
│ │ ├── euc_jp.py
│ │ ├── euc_kr.py
│ │ ├── gb18030.py
│ │ ├── gb2312.py
│ │ ├── gbk.py
│ │ ├── gbk.pyc
│ │ ├── hex_codec.py
│ │ ├── hp_roman8.py
│ │ ├── hz.py
│ │ ├── idna.py
│ │ ├── idna.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── iso2022_jp_1.py
│ │ ├── iso2022_jp_2004.py
│ │ ├── iso2022_jp_2.py
│ │ ├── iso2022_jp_3.py
│ │ ├── iso2022_jp_ext.py
│ │ ├── iso2022_jp.py
│ │ ├── iso2022_kr.py
│ │ ├── iso8859_10.py
│ │ ├── iso8859_11.py
│ │ ├── iso8859_13.py
│ │ ├── iso8859_14.py
│ │ ├── iso8859_15.py
│ │ ├── iso8859_16.py
│ │ ├── iso8859_1.py
│ │ ├── iso8859_2.py
│ │ ├── iso8859_3.py
│ │ ├── iso8859_4.py
│ │ ├── iso8859_5.py
│ │ ├── iso8859_6.py
│ │ ├── iso8859_7.py
│ │ ├── iso8859_8.py
│ │ ├── iso8859_9.py
│ │ ├── johab.py
│ │ ├── koi8_r.py
│ │ ├── koi8_u.py
│ │ ├── latin_1.py
│ │ ├── latin_1.pyc
│ │ ├── mac_arabic.py
│ │ ├── mac_centeuro.py
│ │ ├── mac_croatian.py
│ │ ├── mac_cyrillic.py
│ │ ├── mac_farsi.py
│ │ ├── mac_greek.py
│ │ ├── mac_iceland.py
│ │ ├── mac_latin2.py
│ │ ├── mac_romanian.py
│ │ ├── mac_roman.py
│ │ ├── mac_turkish.py
│ │ ├── mbcs.py
│ │ ├── mbcs.pyc
│ │ ├── palmos.py
│ │ ├── ptcp154.py
│ │ ├── punycode.py
│ │ ├── quopri_codec.py
│ │ ├── raw_unicode_escape.py
│ │ ├── rot_13.py
│ │ ├── shift_jis_2004.py
│ │ ├── shift_jis.py
│ │ ├── shift_jisx0213.py
│ │ ├── string_escape.py
│ │ ├── tis_620.py
│ │ ├── undefined.py
│ │ ├── unicode_escape.py
│ │ ├── unicode_internal.py
│ │ ├── utf_16_be.py
│ │ ├── utf_16_be.pyc
│ │ ├── utf_16_le.py
│ │ ├── utf_16_le.pyc
│ │ ├── utf_16.py
│ │ ├── utf_32_be.py
│ │ ├── utf_32_be.pyc
│ │ ├── utf_32_le.py
│ │ ├── utf_32.py
│ │ ├── utf_7.py
│ │ ├── utf_8.py
│ │ ├── utf_8.pyc
│ │ ├── utf_8_sig.py
│ │ ├── uu_codec.py
│ │ └── zlib_codec.py
│ ├── ensurepip
│ │ ├── _bundled
│ │ │ ├── pip-18.1-py2.py3-none-any.whl
│ │ │ └── setuptools-40.6.2-py2.py3-none-any.whl
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── __main__.py
│ │ └── _uninstall.py
│ ├── filecmp.py
│ ├── fileinput.py
│ ├── fnmatch.py
│ ├── fnmatch.pyc
│ ├── formatter.py
│ ├── fpformat.py
│ ├── fractions.py
│ ├── ftplib.py
│ ├── functools.py
│ ├── functools.pyc
│ ├── __future__.py
│ ├── __future__.pyc
│ ├── genericpath.py
│ ├── genericpath.pyc
│ ├── getopt.py
│ ├── getopt.pyc
│ ├── getpass.py
│ ├── getpass.pyc
│ ├── gettext.py
│ ├── gettext.pyc
│ ├── glob.py
│ ├── glob.pyc
│ ├── gzip.py
│ ├── gzip.pyc
│ ├── hashlib.py
│ ├── hashlib.pyc
│ ├── heapq.py
│ ├── heapq.pyc
│ ├── hmac.py
│ ├── hmac.pyc
│ ├── hotshot
│ │ ├── __init__.py
│ │ ├── log.py
│ │ ├── stats.py
│ │ └── stones.py
│ ├── htmlentitydefs.py
│ ├── htmlentitydefs.pyc
│ ├── htmllib.py
│ ├── HTMLParser.py
│ ├── HTMLParser.pyc
│ ├── httplib.py
│ ├── httplib.pyc
│ ├── idlelib
│ │ ├── aboutDialog.py
│ │ ├── AutoComplete.py
│ │ ├── AutoCompleteWindow.py
│ │ ├── AutoExpand.py
│ │ ├── Bindings.py
│ │ ├── CallTips.py
│ │ ├── CallTipWindow.py
│ │ ├── ClassBrowser.py
│ │ ├── CodeContext.py
│ │ ├── ColorDelegator.py
│ │ ├── configDialog.py
│ │ ├── config-extensions.def
│ │ ├── configHandler.py
│ │ ├── configHelpSourceEdit.py
│ │ ├── config-highlight.def
│ │ ├── config-keys.def
│ │ ├── config-main.def
│ │ ├── configSectionNameDialog.py
│ │ ├── CREDITS.txt
│ │ ├── Debugger.py
│ │ ├── Delegator.py
│ │ ├── dynOptionMenuWidget.py
│ │ ├── EditorWindow.py
│ │ ├── extend.txt
│ │ ├── FileList.py
│ │ ├── FormatParagraph.py
│ │ ├── GrepDialog.py
│ │ ├── help.html
│ │ ├── help.py
│ │ ├── help.txt
│ │ ├── HISTORY.txt
│ │ ├── HyperParser.py
│ │ ├── Icons
│ │ │ ├── folder.gif
│ │ │ ├── idle_16.gif
│ │ │ ├── idle_32.gif
│ │ │ ├── idle_48.gif
│ │ │ ├── idle.icns
│ │ │ ├── idle.ico
│ │ │ ├── minusnode.gif
│ │ │ ├── openfolder.gif
│ │ │ ├── plusnode.gif
│ │ │ ├── python.gif
│ │ │ └── tk.gif
│ │ ├── idle.bat
│ │ ├── IdleHistory.py
│ │ ├── idle.py
│ │ ├── idle.pyw
│ │ ├── idle_test
│ │ │ ├── htest.py
│ │ │ ├── __init__.py
│ │ │ ├── mock_idle.py
│ │ │ ├── mock_tk.py
│ │ │ ├── README.txt
│ │ │ ├── test_autocomplete.py
│ │ │ ├── test_autoexpand.py
│ │ │ ├── test_calltips.py
│ │ │ ├── test_configdialog.py
│ │ │ ├── test_config_name.py
│ │ │ ├── test_delegator.py
│ │ │ ├── test_editmenu.py
│ │ │ ├── test_formatparagraph.py
│ │ │ ├── test_grep.py
│ │ │ ├── test_helpabout.py
│ │ │ ├── test_hyperparser.py
│ │ │ ├── test_idlehistory.py
│ │ │ ├── test_io.py
│ │ │ ├── test_parenmatch.py
│ │ │ ├── test_pathbrowser.py
│ │ │ ├── test_rstrip.py
│ │ │ ├── test_searchdialogbase.py
│ │ │ ├── test_searchengine.py
│ │ │ ├── test_text.py
│ │ │ ├── test_textview.py
│ │ │ ├── test_warning.py
│ │ │ └── test_widgetredir.py
│ │ ├── idlever.py
│ │ ├── __init__.py
│ │ ├── IOBinding.py
│ │ ├── keybindingDialog.py
│ │ ├── macosxSupport.py
│ │ ├── MultiCall.py
│ │ ├── MultiStatusBar.py
│ │ ├── NEWS.txt
│ │ ├── ObjectBrowser.py
│ │ ├── OutputWindow.py
│ │ ├── ParenMatch.py
│ │ ├── PathBrowser.py
│ │ ├── Percolator.py
│ │ ├── PyParse.py
│ │ ├── PyShell.py
│ │ ├── README.txt
│ │ ├── RemoteDebugger.py
│ │ ├── RemoteObjectBrowser.py
│ │ ├── ReplaceDialog.py
│ │ ├── rpc.py
│ │ ├── RstripExtension.py
│ │ ├── run.py
│ │ ├── ScriptBinding.py
│ │ ├── ScrolledList.py
│ │ ├── SearchDialogBase.py
│ │ ├── SearchDialog.py
│ │ ├── SearchEngine.py
│ │ ├── StackViewer.py
│ │ ├── tabbedpages.py
│ │ ├── textView.py
│ │ ├── TODO.txt
│ │ ├── ToolTip.py
│ │ ├── TreeWidget.py
│ │ ├── UndoDelegator.py
│ │ ├── WidgetRedirector.py
│ │ ├── WindowList.py
│ │ └── ZoomHeight.py
│ ├── ihooks.py
│ ├── imaplib.py
│ ├── imghdr.py
│ ├── importlib
│ │ ├── __init__.py
│ │ └── __init__.pyc
│ ├── imputil.py
│ ├── inspect.py
│ ├── inspect.pyc
│ ├── io.py
│ ├── io.pyc
│ ├── json
│ │ ├── decoder.py
│ │ ├── decoder.pyc
│ │ ├── encoder.py
│ │ ├── encoder.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── scanner.py
│ │ ├── scanner.pyc
│ │ ├── tests
│ │ │ ├── __init__.py
│ │ │ ├── test_check_circular.py
│ │ │ ├── test_decode.py
│ │ │ ├── test_default.py
│ │ │ ├── test_dump.py
│ │ │ ├── test_encode_basestring_ascii.py
│ │ │ ├── test_fail.py
│ │ │ ├── test_float.py
│ │ │ ├── test_indent.py
│ │ │ ├── test_pass1.py
│ │ │ ├── test_pass2.py
│ │ │ ├── test_pass3.py
│ │ │ ├── test_recursion.py
│ │ │ ├── test_scanstring.py
│ │ │ ├── test_separators.py
│ │ │ ├── test_speedups.py
│ │ │ ├── test_tool.py
│ │ │ └── test_unicode.py
│ │ └── tool.py
│ ├── keyword.py
│ ├── keyword.pyc
│ ├── lib2to3
│ │ ├── btm_matcher.py
│ │ ├── btm_utils.py
│ │ ├── fixer_base.py
│ │ ├── fixer_util.py
│ │ ├── fixes
│ │ │ ├── fix_apply.py
│ │ │ ├── fix_asserts.py
│ │ │ ├── fix_basestring.py
│ │ │ ├── fix_buffer.py
│ │ │ ├── fix_dict.py
│ │ │ ├── fix_except.py
│ │ │ ├── fix_execfile.py
│ │ │ ├── fix_exec.py
│ │ │ ├── fix_exitfunc.py
│ │ │ ├── fix_filter.py
│ │ │ ├── fix_funcattrs.py
│ │ │ ├── fix_future.py
│ │ │ ├── fix_getcwdu.py
│ │ │ ├── fix_has_key.py
│ │ │ ├── fix_idioms.py
│ │ │ ├── fix_import.py
│ │ │ ├── fix_imports2.py
│ │ │ ├── fix_imports.py
│ │ │ ├── fix_input.py
│ │ │ ├── fix_intern.py
│ │ │ ├── fix_isinstance.py
│ │ │ ├── fix_itertools_imports.py
│ │ │ ├── fix_itertools.py
│ │ │ ├── fix_long.py
│ │ │ ├── fix_map.py
│ │ │ ├── fix_metaclass.py
│ │ │ ├── fix_methodattrs.py
│ │ │ ├── fix_ne.py
│ │ │ ├── fix_next.py
│ │ │ ├── fix_nonzero.py
│ │ │ ├── fix_numliterals.py
│ │ │ ├── fix_operator.py
│ │ │ ├── fix_paren.py
│ │ │ ├── fix_print.py
│ │ │ ├── fix_raise.py
│ │ │ ├── fix_raw_input.py
│ │ │ ├── fix_reduce.py
│ │ │ ├── fix_renames.py
│ │ │ ├── fix_repr.py
│ │ │ ├── fix_set_literal.py
│ │ │ ├── fix_standarderror.py
│ │ │ ├── fix_sys_exc.py
│ │ │ ├── fix_throw.py
│ │ │ ├── fix_tuple_params.py
│ │ │ ├── fix_types.py
│ │ │ ├── fix_unicode.py
│ │ │ ├── fix_urllib.py
│ │ │ ├── fix_ws_comma.py
│ │ │ ├── fix_xrange.py
│ │ │ ├── fix_xreadlines.py
│ │ │ ├── fix_zip.py
│ │ │ └── __init__.py
│ │ ├── Grammar.txt
│ │ ├── __init__.py
│ │ ├── __main__.py
│ │ ├── main.py
│ │ ├── patcomp.py
│ │ ├── PatternGrammar.txt
│ │ ├── pgen2
│ │ │ ├── conv.py
│ │ │ ├── driver.py
│ │ │ ├── grammar.py
│ │ │ ├── __init__.py
│ │ │ ├── literals.py
│ │ │ ├── parse.py
│ │ │ ├── pgen.py
│ │ │ ├── tokenize.py
│ │ │ └── token.py
│ │ ├── pygram.py
│ │ ├── pytree.py
│ │ ├── refactor.py
│ │ └── tests
│ │ ├── data
│ │ │ ├── bom.py
│ │ │ ├── crlf.py
│ │ │ ├── different_encoding.py
│ │ │ ├── false_encoding.py
│ │ │ ├── fixers
│ │ │ │ ├── bad_order.py
│ │ │ │ ├── myfixes
│ │ │ │ │ ├── fix_explicit.py
│ │ │ │ │ ├── fix_first.py
│ │ │ │ │ ├── fix_last.py
│ │ │ │ │ ├── fix_parrot.py
│ │ │ │ │ ├── fix_preorder.py
│ │ │ │ │ └── __init__.py
│ │ │ │ ├── no_fixer_cls.py
│ │ │ │ └── parrot_example.py
│ │ │ ├── infinite_recursion.py
│ │ │ ├── py2_test_grammar.py
│ │ │ └── py3_test_grammar.py
│ │ ├── __init__.py
│ │ ├── pytree_idempotency.py
│ │ ├── support.py
│ │ ├── test_all_fixers.py
│ │ ├── test_fixers.py
│ │ ├── test_main.py
│ │ ├── test_parser.py
│ │ ├── test_pytree.py
│ │ ├── test_refactor.py
│ │ └── test_util.py
│ ├── lib-tk
│ │ ├── Canvas.py
│ │ ├── Dialog.py
│ │ ├── FileDialog.py
│ │ ├── FixTk.py
│ │ ├── ScrolledText.py
│ │ ├── SimpleDialog.py
│ │ ├── test
│ │ │ ├── runtktests.py
│ │ │ ├── test_tkinter
│ │ │ │ ├── __init__.py
│ │ │ │ ├── test_font.py
│ │ │ │ ├── test_geometry_managers.py
│ │ │ │ ├── test_images.py
│ │ │ │ ├── test_loadtk.py
│ │ │ │ ├── test_misc.py
│ │ │ │ ├── test_text.py
│ │ │ │ ├── test_variables.py
│ │ │ │ └── test_widgets.py
│ │ │ ├── test_ttk
│ │ │ │ ├── __init__.py
│ │ │ │ ├── support.py
│ │ │ │ ├── test_extensions.py
│ │ │ │ ├── test_functions.py
│ │ │ │ ├── test_style.py
│ │ │ │ └── test_widgets.py
│ │ │ └── widget_tests.py
│ │ ├── Tix.py
│ │ ├── tkColorChooser.py
│ │ ├── tkCommonDialog.py
│ │ ├── Tkconstants.py
│ │ ├── Tkdnd.py
│ │ ├── tkFileDialog.py
│ │ ├── tkFont.py
│ │ ├── Tkinter.py
│ │ ├── tkMessageBox.py
│ │ ├── tkSimpleDialog.py
│ │ ├── ttk.py
│ │ └── turtle.py
│ ├── linecache.py
│ ├── linecache.pyc
│ ├── locale.py
│ ├── locale.pyc
│ ├── logging
│ │ ├── config.py
│ │ ├── config.pyc
│ │ ├── handlers.py
│ │ ├── handlers.pyc
│ │ ├── __init__.py
│ │ └── __init__.pyc
│ ├── _LWPCookieJar.py
│ ├── _LWPCookieJar.pyc
│ ├── macpath.py
│ ├── macurl2path.py
│ ├── mailbox.py
│ ├── mailcap.py
│ ├── markupbase.py
│ ├── markupbase.pyc
│ ├── md5.py
│ ├── mhlib.py
│ ├── mimetools.py
│ ├── mimetools.pyc
│ ├── mimetypes.py
│ ├── mimetypes.pyc
│ ├── MimeWriter.py
│ ├── mimify.py
│ ├── modulefinder.py
│ ├── _MozillaCookieJar.py
│ ├── _MozillaCookieJar.pyc
│ ├── msilib
│ │ ├── __init__.py
│ │ ├── schema.py
│ │ ├── sequence.py
│ │ └── text.py
│ ├── multifile.py
│ ├── multiprocessing
│ │ ├── connection.py
│ │ ├── dummy
│ │ │ ├── connection.py
│ │ │ └── __init__.py
│ │ ├── forking.py
│ │ ├── heap.py
│ │ ├── __init__.py
│ │ ├── managers.py
│ │ ├── pool.py
│ │ ├── process.py
│ │ ├── queues.py
│ │ ├── reduction.py
│ │ ├── sharedctypes.py
│ │ ├── synchronize.py
│ │ └── util.py
│ ├── mutex.py
│ ├── netrc.py
│ ├── new.py
│ ├── nntplib.py
│ ├── ntpath.py
│ ├── ntpath.pyc
│ ├── nturl2path.py
│ ├── nturl2path.pyc
│ ├── numbers.py
│ ├── opcode.py
│ ├── opcode.pyc
│ ├── optparse.py
│ ├── optparse.pyc
│ ├── os2emxpath.py
│ ├── os.py
│ ├── os.pyc
│ ├── _osx_support.py
│ ├── pdb.py
│ ├── __phello__.foo.py
│ ├── pickle.py
│ ├── pickletools.py
│ ├── pipes.py
│ ├── pkgutil.py
│ ├── pkgutil.pyc
│ ├── platform.py
│ ├── platform.pyc
│ ├── plistlib.py
│ ├── plistlib.pyc
│ ├── popen2.py
│ ├── poplib.py
│ ├── posixfile.py
│ ├── posixpath.py
│ ├── posixpath.pyc
│ ├── pprint.py
│ ├── pprint.pyc
│ ├── profile.py
│ ├── pstats.py
│ ├── pty.py
│ ├── pyclbr.py
│ ├── py_compile.py
│ ├── py_compile.pyc
│ ├── pydoc_data
│ │ ├── __init__.py
│ │ └── topics.py
│ ├── pydoc.py
│ ├── _pyio.py
│ ├── Queue.py
│ ├── Queue.pyc
│ ├── quopri.py
│ ├── quopri.pyc
│ ├── random.py
│ ├── random.pyc
│ ├── repr.py
│ ├── re.py
│ ├── re.pyc
│ ├── rexec.py
│ ├── rfc822.py
│ ├── rfc822.pyc
│ ├── rlcompleter.py
│ ├── robotparser.py
│ ├── runpy.py
│ ├── runpy.pyc
│ ├── sched.py
│ ├── sets.py
│ ├── sgmllib.py
│ ├── sha.py
│ ├── shelve.py
│ ├── shlex.py
│ ├── shlex.pyc
│ ├── shutil.py
│ ├── shutil.pyc
│ ├── SimpleHTTPServer.py
│ ├── SimpleXMLRPCServer.py
│ ├── site-packages
│ │ ├── easy_install.py
│ │ ├── easy_install.pyc
│ │ ├── pip
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── _internal
│ │ │ │ ├── build_env.py
│ │ │ │ ├── build_env.pyc
│ │ │ │ ├── cache.py
│ │ │ │ ├── cache.pyc
│ │ │ │ ├── cli
│ │ │ │ │ ├── autocompletion.py
│ │ │ │ │ ├── autocompletion.pyc
│ │ │ │ │ ├── base_command.py
│ │ │ │ │ ├── base_command.pyc
│ │ │ │ │ ├── cmdoptions.py
│ │ │ │ │ ├── cmdoptions.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── main_parser.py
│ │ │ │ │ ├── main_parser.pyc
│ │ │ │ │ ├── parser.py
│ │ │ │ │ ├── parser.pyc
│ │ │ │ │ ├── status_codes.py
│ │ │ │ │ └── status_codes.pyc
│ │ │ │ ├── commands
│ │ │ │ │ ├── check.py
│ │ │ │ │ ├── check.pyc
│ │ │ │ │ ├── completion.py
│ │ │ │ │ ├── completion.pyc
│ │ │ │ │ ├── configuration.py
│ │ │ │ │ ├── configuration.pyc
│ │ │ │ │ ├── download.py
│ │ │ │ │ ├── download.pyc
│ │ │ │ │ ├── freeze.py
│ │ │ │ │ ├── freeze.pyc
│ │ │ │ │ ├── hash.py
│ │ │ │ │ ├── hash.pyc
│ │ │ │ │ ├── help.py
│ │ │ │ │ ├── help.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── install.py
│ │ │ │ │ ├── install.pyc
│ │ │ │ │ ├── list.py
│ │ │ │ │ ├── list.pyc
│ │ │ │ │ ├── search.py
│ │ │ │ │ ├── search.pyc
│ │ │ │ │ ├── show.py
│ │ │ │ │ ├── show.pyc
│ │ │ │ │ ├── uninstall.py
│ │ │ │ │ ├── uninstall.pyc
│ │ │ │ │ ├── wheel.py
│ │ │ │ │ └── wheel.pyc
│ │ │ │ ├── configuration.py
│ │ │ │ ├── configuration.pyc
│ │ │ │ ├── download.py
│ │ │ │ ├── download.pyc
│ │ │ │ ├── exceptions.py
│ │ │ │ ├── exceptions.pyc
│ │ │ │ ├── index.py
│ │ │ │ ├── index.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── locations.py
│ │ │ │ ├── locations.pyc
│ │ │ │ ├── models
│ │ │ │ │ ├── candidate.py
│ │ │ │ │ ├── candidate.pyc
│ │ │ │ │ ├── format_control.py
│ │ │ │ │ ├── format_control.pyc
│ │ │ │ │ ├── index.py
│ │ │ │ │ ├── index.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── link.py
│ │ │ │ │ └── link.pyc
│ │ │ │ ├── operations
│ │ │ │ │ ├── check.py
│ │ │ │ │ ├── check.pyc
│ │ │ │ │ ├── freeze.py
│ │ │ │ │ ├── freeze.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── prepare.py
│ │ │ │ │ └── prepare.pyc
│ │ │ │ ├── pep425tags.py
│ │ │ │ ├── pep425tags.pyc
│ │ │ │ ├── pyproject.py
│ │ │ │ ├── pyproject.pyc
│ │ │ │ ├── req
│ │ │ │ │ ├── constructors.py
│ │ │ │ │ ├── constructors.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── req_file.py
│ │ │ │ │ ├── req_file.pyc
│ │ │ │ │ ├── req_install.py
│ │ │ │ │ ├── req_install.pyc
│ │ │ │ │ ├── req_set.py
│ │ │ │ │ ├── req_set.pyc
│ │ │ │ │ ├── req_tracker.py
│ │ │ │ │ ├── req_tracker.pyc
│ │ │ │ │ ├── req_uninstall.py
│ │ │ │ │ └── req_uninstall.pyc
│ │ │ │ ├── resolve.py
│ │ │ │ ├── resolve.pyc
│ │ │ │ ├── utils
│ │ │ │ │ ├── appdirs.py
│ │ │ │ │ ├── appdirs.pyc
│ │ │ │ │ ├── compat.py
│ │ │ │ │ ├── compat.pyc
│ │ │ │ │ ├── deprecation.py
│ │ │ │ │ ├── deprecation.pyc
│ │ │ │ │ ├── encoding.py
│ │ │ │ │ ├── encoding.pyc
│ │ │ │ │ ├── filesystem.py
│ │ │ │ │ ├── filesystem.pyc
│ │ │ │ │ ├── glibc.py
│ │ │ │ │ ├── glibc.pyc
│ │ │ │ │ ├── hashes.py
│ │ │ │ │ ├── hashes.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── logging.py
│ │ │ │ │ ├── logging.pyc
│ │ │ │ │ ├── misc.py
│ │ │ │ │ ├── misc.pyc
│ │ │ │ │ ├── models.py
│ │ │ │ │ ├── models.pyc
│ │ │ │ │ ├── outdated.py
│ │ │ │ │ ├── outdated.pyc
│ │ │ │ │ ├── packaging.py
│ │ │ │ │ ├── packaging.pyc
│ │ │ │ │ ├── setuptools_build.py
│ │ │ │ │ ├── setuptools_build.pyc
│ │ │ │ │ ├── temp_dir.py
│ │ │ │ │ ├── temp_dir.pyc
│ │ │ │ │ ├── typing.py
│ │ │ │ │ ├── typing.pyc
│ │ │ │ │ ├── ui.py
│ │ │ │ │ └── ui.pyc
│ │ │ │ ├── vcs
│ │ │ │ │ ├── bazaar.py
│ │ │ │ │ ├── bazaar.pyc
│ │ │ │ │ ├── git.py
│ │ │ │ │ ├── git.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── mercurial.py
│ │ │ │ │ ├── mercurial.pyc
│ │ │ │ │ ├── subversion.py
│ │ │ │ │ └── subversion.pyc
│ │ │ │ ├── wheel.py
│ │ │ │ └── wheel.pyc
│ │ │ ├── __main__.py
│ │ │ ├── __main__.pyc
│ │ │ └── _vendor
│ │ │ ├── appdirs.py
│ │ │ ├── appdirs.pyc
│ │ │ ├── cachecontrol
│ │ │ │ ├── adapter.py
│ │ │ │ ├── adapter.pyc
│ │ │ │ ├── cache.py
│ │ │ │ ├── cache.pyc
│ │ │ │ ├── caches
│ │ │ │ │ ├── file_cache.py
│ │ │ │ │ ├── file_cache.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── redis_cache.py
│ │ │ │ │ └── redis_cache.pyc
│ │ │ │ ├── _cmd.py
│ │ │ │ ├── _cmd.pyc
│ │ │ │ ├── compat.py
│ │ │ │ ├── compat.pyc
│ │ │ │ ├── controller.py
│ │ │ │ ├── controller.pyc
│ │ │ │ ├── filewrapper.py
│ │ │ │ ├── filewrapper.pyc
│ │ │ │ ├── heuristics.py
│ │ │ │ ├── heuristics.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── serialize.py
│ │ │ │ ├── serialize.pyc
│ │ │ │ ├── wrapper.py
│ │ │ │ └── wrapper.pyc
│ │ │ ├── certifi
│ │ │ │ ├── cacert.pem
│ │ │ │ ├── core.py
│ │ │ │ ├── core.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── __main__.py
│ │ │ │ └── __main__.pyc
│ │ │ ├── chardet
│ │ │ │ ├── big5freq.py
│ │ │ │ ├── big5freq.pyc
│ │ │ │ ├── big5prober.py
│ │ │ │ ├── big5prober.pyc
│ │ │ │ ├── chardistribution.py
│ │ │ │ ├── chardistribution.pyc
│ │ │ │ ├── charsetgroupprober.py
│ │ │ │ ├── charsetgroupprober.pyc
│ │ │ │ ├── charsetprober.py
│ │ │ │ ├── charsetprober.pyc
│ │ │ │ ├── cli
│ │ │ │ │ ├── chardetect.py
│ │ │ │ │ ├── chardetect.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── __init__.pyc
│ │ │ │ ├── codingstatemachine.py
│ │ │ │ ├── codingstatemachine.pyc
│ │ │ │ ├── compat.py
│ │ │ │ ├── compat.pyc
│ │ │ │ ├── cp949prober.py
│ │ │ │ ├── cp949prober.pyc
│ │ │ │ ├── enums.py
│ │ │ │ ├── enums.pyc
│ │ │ │ ├── escprober.py
│ │ │ │ ├── escprober.pyc
│ │ │ │ ├── escsm.py
│ │ │ │ ├── escsm.pyc
│ │ │ │ ├── eucjpprober.py
│ │ │ │ ├── eucjpprober.pyc
│ │ │ │ ├── euckrfreq.py
│ │ │ │ ├── euckrfreq.pyc
│ │ │ │ ├── euckrprober.py
│ │ │ │ ├── euckrprober.pyc
│ │ │ │ ├── euctwfreq.py
│ │ │ │ ├── euctwfreq.pyc
│ │ │ │ ├── euctwprober.py
│ │ │ │ ├── euctwprober.pyc
│ │ │ │ ├── gb2312freq.py
│ │ │ │ ├── gb2312freq.pyc
│ │ │ │ ├── gb2312prober.py
│ │ │ │ ├── gb2312prober.pyc
│ │ │ │ ├── hebrewprober.py
│ │ │ │ ├── hebrewprober.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── jisfreq.py
│ │ │ │ ├── jisfreq.pyc
│ │ │ │ ├── jpcntx.py
│ │ │ │ ├── jpcntx.pyc
│ │ │ │ ├── langbulgarianmodel.py
│ │ │ │ ├── langbulgarianmodel.pyc
│ │ │ │ ├── langcyrillicmodel.py
│ │ │ │ ├── langcyrillicmodel.pyc
│ │ │ │ ├── langgreekmodel.py
│ │ │ │ ├── langgreekmodel.pyc
│ │ │ │ ├── langhebrewmodel.py
│ │ │ │ ├── langhebrewmodel.pyc
│ │ │ │ ├── langhungarianmodel.py
│ │ │ │ ├── langhungarianmodel.pyc
│ │ │ │ ├── langthaimodel.py
│ │ │ │ ├── langthaimodel.pyc
│ │ │ │ ├── langturkishmodel.py
│ │ │ │ ├── langturkishmodel.pyc
│ │ │ │ ├── latin1prober.py
│ │ │ │ ├── latin1prober.pyc
│ │ │ │ ├── mbcharsetprober.py
│ │ │ │ ├── mbcharsetprober.pyc
│ │ │ │ ├── mbcsgroupprober.py
│ │ │ │ ├── mbcsgroupprober.pyc
│ │ │ │ ├── mbcssm.py
│ │ │ │ ├── mbcssm.pyc
│ │ │ │ ├── sbcharsetprober.py
│ │ │ │ ├── sbcharsetprober.pyc
│ │ │ │ ├── sbcsgroupprober.py
│ │ │ │ ├── sbcsgroupprober.pyc
│ │ │ │ ├── sjisprober.py
│ │ │ │ ├── sjisprober.pyc
│ │ │ │ ├── universaldetector.py
│ │ │ │ ├── universaldetector.pyc
│ │ │ │ ├── utf8prober.py
│ │ │ │ ├── utf8prober.pyc
│ │ │ │ ├── version.py
│ │ │ │ └── version.pyc
│ │ │ ├── colorama
│ │ │ │ ├── ansi.py
│ │ │ │ ├── ansi.pyc
│ │ │ │ ├── ansitowin32.py
│ │ │ │ ├── ansitowin32.pyc
│ │ │ │ ├── initialise.py
│ │ │ │ ├── initialise.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── win32.py
│ │ │ │ ├── win32.pyc
│ │ │ │ ├── winterm.py
│ │ │ │ └── winterm.pyc
│ │ │ ├── distlib
│ │ │ │ ├── _backport
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── misc.py
│ │ │ │ │ ├── misc.pyc
│ │ │ │ │ ├── shutil.py
│ │ │ │ │ ├── shutil.pyc
│ │ │ │ │ ├── sysconfig.cfg
│ │ │ │ │ ├── sysconfig.py
│ │ │ │ │ ├── sysconfig.pyc
│ │ │ │ │ ├── tarfile.py
│ │ │ │ │ └── tarfile.pyc
│ │ │ │ ├── compat.py
│ │ │ │ ├── compat.pyc
│ │ │ │ ├── database.py
│ │ │ │ ├── database.pyc
│ │ │ │ ├── index.py
│ │ │ │ ├── index.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── locators.py
│ │ │ │ ├── locators.pyc
│ │ │ │ ├── manifest.py
│ │ │ │ ├── manifest.pyc
│ │ │ │ ├── markers.py
│ │ │ │ ├── markers.pyc
│ │ │ │ ├── metadata.py
│ │ │ │ ├── metadata.pyc
│ │ │ │ ├── resources.py
│ │ │ │ ├── resources.pyc
│ │ │ │ ├── scripts.py
│ │ │ │ ├── scripts.pyc
│ │ │ │ ├── t32.exe
│ │ │ │ ├── t64.exe
│ │ │ │ ├── util.py
│ │ │ │ ├── util.pyc
│ │ │ │ ├── version.py
│ │ │ │ ├── version.pyc
│ │ │ │ ├── w32.exe
│ │ │ │ ├── w64.exe
│ │ │ │ ├── wheel.py
│ │ │ │ └── wheel.pyc
│ │ │ ├── distro.py
│ │ │ ├── distro.pyc
│ │ │ ├── html5lib
│ │ │ │ ├── constants.py
│ │ │ │ ├── constants.pyc
│ │ │ │ ├── filters
│ │ │ │ │ ├── alphabeticalattributes.py
│ │ │ │ │ ├── alphabeticalattributes.pyc
│ │ │ │ │ ├── base.py
│ │ │ │ │ ├── base.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── inject_meta_charset.py
│ │ │ │ │ ├── inject_meta_charset.pyc
│ │ │ │ │ ├── lint.py
│ │ │ │ │ ├── lint.pyc
│ │ │ │ │ ├── optionaltags.py
│ │ │ │ │ ├── optionaltags.pyc
│ │ │ │ │ ├── sanitizer.py
│ │ │ │ │ ├── sanitizer.pyc
│ │ │ │ │ ├── whitespace.py
│ │ │ │ │ └── whitespace.pyc
│ │ │ │ ├── html5parser.py
│ │ │ │ ├── html5parser.pyc
│ │ │ │ ├── _ihatexml.py
│ │ │ │ ├── _ihatexml.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── _inputstream.py
│ │ │ │ ├── _inputstream.pyc
│ │ │ │ ├── serializer.py
│ │ │ │ ├── serializer.pyc
│ │ │ │ ├── _tokenizer.py
│ │ │ │ ├── _tokenizer.pyc
│ │ │ │ ├── treeadapters
│ │ │ │ │ ├── genshi.py
│ │ │ │ │ ├── genshi.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── sax.py
│ │ │ │ │ └── sax.pyc
│ │ │ │ ├── treebuilders
│ │ │ │ │ ├── base.py
│ │ │ │ │ ├── base.pyc
│ │ │ │ │ ├── dom.py
│ │ │ │ │ ├── dom.pyc
│ │ │ │ │ ├── etree_lxml.py
│ │ │ │ │ ├── etree_lxml.pyc
│ │ │ │ │ ├── etree.py
│ │ │ │ │ ├── etree.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── __init__.pyc
│ │ │ │ ├── treewalkers
│ │ │ │ │ ├── base.py
│ │ │ │ │ ├── base.pyc
│ │ │ │ │ ├── dom.py
│ │ │ │ │ ├── dom.pyc
│ │ │ │ │ ├── etree_lxml.py
│ │ │ │ │ ├── etree_lxml.pyc
│ │ │ │ │ ├── etree.py
│ │ │ │ │ ├── etree.pyc
│ │ │ │ │ ├── genshi.py
│ │ │ │ │ ├── genshi.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── __init__.pyc
│ │ │ │ ├── _trie
│ │ │ │ │ ├── _base.py
│ │ │ │ │ ├── _base.pyc
│ │ │ │ │ ├── datrie.py
│ │ │ │ │ ├── datrie.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── py.py
│ │ │ │ │ └── py.pyc
│ │ │ │ ├── _utils.py
│ │ │ │ └── _utils.pyc
│ │ │ ├── idna
│ │ │ │ ├── codec.py
│ │ │ │ ├── codec.pyc
│ │ │ │ ├── compat.py
│ │ │ │ ├── compat.pyc
│ │ │ │ ├── core.py
│ │ │ │ ├── core.pyc
│ │ │ │ ├── idnadata.py
│ │ │ │ ├── idnadata.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── intranges.py
│ │ │ │ ├── intranges.pyc
│ │ │ │ ├── package_data.py
│ │ │ │ ├── package_data.pyc
│ │ │ │ ├── uts46data.py
│ │ │ │ └── uts46data.pyc
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── ipaddress.py
│ │ │ ├── ipaddress.pyc
│ │ │ ├── lockfile
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── linklockfile.py
│ │ │ │ ├── linklockfile.pyc
│ │ │ │ ├── mkdirlockfile.py
│ │ │ │ ├── mkdirlockfile.pyc
│ │ │ │ ├── pidlockfile.py
│ │ │ │ ├── pidlockfile.pyc
│ │ │ │ ├── sqlitelockfile.py
│ │ │ │ ├── sqlitelockfile.pyc
│ │ │ │ ├── symlinklockfile.py
│ │ │ │ └── symlinklockfile.pyc
│ │ │ ├── msgpack
│ │ │ │ ├── exceptions.py
│ │ │ │ ├── exceptions.pyc
│ │ │ │ ├── fallback.py
│ │ │ │ ├── fallback.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── _version.py
│ │ │ │ └── _version.pyc
│ │ │ ├── packaging
│ │ │ │ ├── __about__.py
│ │ │ │ ├── __about__.pyc
│ │ │ │ ├── _compat.py
│ │ │ │ ├── _compat.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── markers.py
│ │ │ │ ├── markers.pyc
│ │ │ │ ├── requirements.py
│ │ │ │ ├── requirements.pyc
│ │ │ │ ├── specifiers.py
│ │ │ │ ├── specifiers.pyc
│ │ │ │ ├── _structures.py
│ │ │ │ ├── _structures.pyc
│ │ │ │ ├── utils.py
│ │ │ │ ├── utils.pyc
│ │ │ │ ├── version.py
│ │ │ │ └── version.pyc
│ │ │ ├── pep517
│ │ │ │ ├── check.py
│ │ │ │ ├── check.pyc
│ │ │ │ ├── colorlog.py
│ │ │ │ ├── colorlog.pyc
│ │ │ │ ├── compat.py
│ │ │ │ ├── compat.pyc
│ │ │ │ ├── envbuild.py
│ │ │ │ ├── envbuild.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── _in_process.py
│ │ │ │ ├── _in_process.pyc
│ │ │ │ ├── wrappers.py
│ │ │ │ └── wrappers.pyc
│ │ │ ├── pkg_resources
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── py31compat.py
│ │ │ │ └── py31compat.pyc
│ │ │ ├── progress
│ │ │ │ ├── bar.py
│ │ │ │ ├── bar.pyc
│ │ │ │ ├── counter.py
│ │ │ │ ├── counter.pyc
│ │ │ │ ├── helpers.py
│ │ │ │ ├── helpers.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── spinner.py
│ │ │ │ └── spinner.pyc
│ │ │ ├── pyparsing.py
│ │ │ ├── pyparsing.pyc
│ │ │ ├── pytoml
│ │ │ │ ├── core.py
│ │ │ │ ├── core.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── parser.py
│ │ │ │ ├── parser.pyc
│ │ │ │ ├── writer.py
│ │ │ │ └── writer.pyc
│ │ │ ├── requests
│ │ │ │ ├── adapters.py
│ │ │ │ ├── adapters.pyc
│ │ │ │ ├── api.py
│ │ │ │ ├── api.pyc
│ │ │ │ ├── auth.py
│ │ │ │ ├── auth.pyc
│ │ │ │ ├── certs.py
│ │ │ │ ├── certs.pyc
│ │ │ │ ├── compat.py
│ │ │ │ ├── compat.pyc
│ │ │ │ ├── cookies.py
│ │ │ │ ├── cookies.pyc
│ │ │ │ ├── exceptions.py
│ │ │ │ ├── exceptions.pyc
│ │ │ │ ├── help.py
│ │ │ │ ├── help.pyc
│ │ │ │ ├── hooks.py
│ │ │ │ ├── hooks.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── _internal_utils.py
│ │ │ │ ├── _internal_utils.pyc
│ │ │ │ ├── models.py
│ │ │ │ ├── models.pyc
│ │ │ │ ├── packages.py
│ │ │ │ ├── packages.pyc
│ │ │ │ ├── sessions.py
│ │ │ │ ├── sessions.pyc
│ │ │ │ ├── status_codes.py
│ │ │ │ ├── status_codes.pyc
│ │ │ │ ├── structures.py
│ │ │ │ ├── structures.pyc
│ │ │ │ ├── utils.py
│ │ │ │ ├── utils.pyc
│ │ │ │ ├── __version__.py
│ │ │ │ └── __version__.pyc
│ │ │ ├── retrying.py
│ │ │ ├── retrying.pyc
│ │ │ ├── six.py
│ │ │ ├── six.pyc
│ │ │ ├── urllib3
│ │ │ │ ├── _collections.py
│ │ │ │ ├── _collections.pyc
│ │ │ │ ├── connectionpool.py
│ │ │ │ ├── connectionpool.pyc
│ │ │ │ ├── connection.py
│ │ │ │ ├── connection.pyc
│ │ │ │ ├── contrib
│ │ │ │ │ ├── appengine.py
│ │ │ │ │ ├── appengine.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── ntlmpool.py
│ │ │ │ │ ├── ntlmpool.pyc
│ │ │ │ │ ├── pyopenssl.py
│ │ │ │ │ ├── pyopenssl.pyc
│ │ │ │ │ ├── _securetransport
│ │ │ │ │ │ ├── bindings.py
│ │ │ │ │ │ ├── bindings.pyc
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ │ ├── low_level.py
│ │ │ │ │ │ └── low_level.pyc
│ │ │ │ │ ├── securetransport.py
│ │ │ │ │ ├── securetransport.pyc
│ │ │ │ │ ├── socks.py
│ │ │ │ │ └── socks.pyc
│ │ │ │ ├── exceptions.py
│ │ │ │ ├── exceptions.pyc
│ │ │ │ ├── fields.py
│ │ │ │ ├── fields.pyc
│ │ │ │ ├── filepost.py
│ │ │ │ ├── filepost.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── packages
│ │ │ │ │ ├── backports
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ │ ├── makefile.py
│ │ │ │ │ │ └── makefile.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── ordered_dict.py
│ │ │ │ │ ├── ordered_dict.pyc
│ │ │ │ │ ├── six.py
│ │ │ │ │ ├── six.pyc
│ │ │ │ │ └── ssl_match_hostname
│ │ │ │ │ ├── _implementation.py
│ │ │ │ │ ├── _implementation.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── __init__.pyc
│ │ │ │ ├── poolmanager.py
│ │ │ │ ├── poolmanager.pyc
│ │ │ │ ├── request.py
│ │ │ │ ├── request.pyc
│ │ │ │ ├── response.py
│ │ │ │ ├── response.pyc
│ │ │ │ └── util
│ │ │ │ ├── connection.py
│ │ │ │ ├── connection.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── queue.py
│ │ │ │ ├── queue.pyc
│ │ │ │ ├── request.py
│ │ │ │ ├── request.pyc
│ │ │ │ ├── response.py
│ │ │ │ ├── response.pyc
│ │ │ │ ├── retry.py
│ │ │ │ ├── retry.pyc
│ │ │ │ ├── ssl_.py
│ │ │ │ ├── ssl_.pyc
│ │ │ │ ├── timeout.py
│ │ │ │ ├── timeout.pyc
│ │ │ │ ├── url.py
│ │ │ │ ├── url.pyc
│ │ │ │ ├── wait.py
│ │ │ │ └── wait.pyc
│ │ │ └── webencodings
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── labels.py
│ │ │ ├── labels.pyc
│ │ │ ├── mklabels.py
│ │ │ ├── mklabels.pyc
│ │ │ ├── tests.py
│ │ │ ├── tests.pyc
│ │ │ ├── x_user_defined.py
│ │ │ └── x_user_defined.pyc
│ │ ├── pip-18.1.dist-info
│ │ │ ├── entry_points.txt
│ │ │ ├── INSTALLER
│ │ │ ├── LICENSE.txt
│ │ │ ├── METADATA
│ │ │ ├── RECORD
│ │ │ ├── top_level.txt
│ │ │ └── WHEEL
│ │ ├── pkg_resources
│ │ │ ├── extern
│ │ │ │ ├── __init__.py
│ │ │ │ └── __init__.pyc
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── py31compat.py
│ │ │ ├── py31compat.pyc
│ │ │ └── _vendor
│ │ │ ├── appdirs.py
│ │ │ ├── appdirs.pyc
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── packaging
│ │ │ │ ├── __about__.py
│ │ │ │ ├── __about__.pyc
│ │ │ │ ├── _compat.py
│ │ │ │ ├── _compat.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── markers.py
│ │ │ │ ├── markers.pyc
│ │ │ │ ├── requirements.py
│ │ │ │ ├── requirements.pyc
│ │ │ │ ├── specifiers.py
│ │ │ │ ├── specifiers.pyc
│ │ │ │ ├── _structures.py
│ │ │ │ ├── _structures.pyc
│ │ │ │ ├── utils.py
│ │ │ │ ├── utils.pyc
│ │ │ │ ├── version.py
│ │ │ │ └── version.pyc
│ │ │ ├── pyparsing.py
│ │ │ ├── pyparsing.pyc
│ │ │ ├── six.py
│ │ │ └── six.pyc
│ │ ├── README.txt
│ │ ├── setuptools
│ │ │ ├── archive_util.py
│ │ │ ├── archive_util.pyc
│ │ │ ├── build_meta.py
│ │ │ ├── build_meta.pyc
│ │ │ ├── cli-32.exe
│ │ │ ├── cli-64.exe
│ │ │ ├── cli.exe
│ │ │ ├── command
│ │ │ │ ├── alias.py
│ │ │ │ ├── alias.pyc
│ │ │ │ ├── bdist_egg.py
│ │ │ │ ├── bdist_egg.pyc
│ │ │ │ ├── bdist_rpm.py
│ │ │ │ ├── bdist_rpm.pyc
│ │ │ │ ├── bdist_wininst.py
│ │ │ │ ├── bdist_wininst.pyc
│ │ │ │ ├── build_clib.py
│ │ │ │ ├── build_clib.pyc
│ │ │ │ ├── build_ext.py
│ │ │ │ ├── build_ext.pyc
│ │ │ │ ├── build_py.py
│ │ │ │ ├── build_py.pyc
│ │ │ │ ├── develop.py
│ │ │ │ ├── develop.pyc
│ │ │ │ ├── dist_info.py
│ │ │ │ ├── dist_info.pyc
│ │ │ │ ├── easy_install.py
│ │ │ │ ├── easy_install.pyc
│ │ │ │ ├── egg_info.py
│ │ │ │ ├── egg_info.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── install_egg_info.py
│ │ │ │ ├── install_egg_info.pyc
│ │ │ │ ├── install_lib.py
│ │ │ │ ├── install_lib.pyc
│ │ │ │ ├── install.py
│ │ │ │ ├── install.pyc
│ │ │ │ ├── install_scripts.py
│ │ │ │ ├── install_scripts.pyc
│ │ │ │ ├── launcher manifest.xml
│ │ │ │ ├── py36compat.py
│ │ │ │ ├── py36compat.pyc
│ │ │ │ ├── register.py
│ │ │ │ ├── register.pyc
│ │ │ │ ├── rotate.py
│ │ │ │ ├── rotate.pyc
│ │ │ │ ├── saveopts.py
│ │ │ │ ├── saveopts.pyc
│ │ │ │ ├── sdist.py
│ │ │ │ ├── sdist.pyc
│ │ │ │ ├── setopt.py
│ │ │ │ ├── setopt.pyc
│ │ │ │ ├── test.py
│ │ │ │ ├── test.pyc
│ │ │ │ ├── upload_docs.py
│ │ │ │ ├── upload_docs.pyc
│ │ │ │ ├── upload.py
│ │ │ │ └── upload.pyc
│ │ │ ├── config.py
│ │ │ ├── config.pyc
│ │ │ ├── depends.py
│ │ │ ├── depends.pyc
│ │ │ ├── _deprecation_warning.py
│ │ │ ├── _deprecation_warning.pyc
│ │ │ ├── dep_util.py
│ │ │ ├── dep_util.pyc
│ │ │ ├── dist.py
│ │ │ ├── dist.pyc
│ │ │ ├── extension.py
│ │ │ ├── extension.pyc
│ │ │ ├── extern
│ │ │ │ ├── __init__.py
│ │ │ │ └── __init__.pyc
│ │ │ ├── glibc.py
│ │ │ ├── glibc.pyc
│ │ │ ├── glob.py
│ │ │ ├── glob.pyc
│ │ │ ├── gui-32.exe
│ │ │ ├── gui-64.exe
│ │ │ ├── gui.exe
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── launch.py
│ │ │ ├── launch.pyc
│ │ │ ├── lib2to3_ex.py
│ │ │ ├── lib2to3_ex.pyc
│ │ │ ├── monkey.py
│ │ │ ├── monkey.pyc
│ │ │ ├── msvc.py
│ │ │ ├── msvc.pyc
│ │ │ ├── namespaces.py
│ │ │ ├── namespaces.pyc
│ │ │ ├── package_index.py
│ │ │ ├── package_index.pyc
│ │ │ ├── pep425tags.py
│ │ │ ├── pep425tags.pyc
│ │ │ ├── py27compat.py
│ │ │ ├── py27compat.pyc
│ │ │ ├── py31compat.py
│ │ │ ├── py31compat.pyc
│ │ │ ├── py33compat.py
│ │ │ ├── py33compat.pyc
│ │ │ ├── py36compat.py
│ │ │ ├── py36compat.pyc
│ │ │ ├── sandbox.py
│ │ │ ├── sandbox.pyc
│ │ │ ├── script (dev).tmpl
│ │ │ ├── script.tmpl
│ │ │ ├── site-patch.py
│ │ │ ├── site-patch.pyc
│ │ │ ├── ssl_support.py
│ │ │ ├── ssl_support.pyc
│ │ │ ├── unicode_utils.py
│ │ │ ├── unicode_utils.pyc
│ │ │ ├── _vendor
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── packaging
│ │ │ │ │ ├── __about__.py
│ │ │ │ │ ├── __about__.pyc
│ │ │ │ │ ├── _compat.py
│ │ │ │ │ ├── _compat.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── markers.py
│ │ │ │ │ ├── markers.pyc
│ │ │ │ │ ├── requirements.py
│ │ │ │ │ ├── requirements.pyc
│ │ │ │ │ ├── specifiers.py
│ │ │ │ │ ├── specifiers.pyc
│ │ │ │ │ ├── _structures.py
│ │ │ │ │ ├── _structures.pyc
│ │ │ │ │ ├── utils.py
│ │ │ │ │ ├── utils.pyc
│ │ │ │ │ ├── version.py
│ │ │ │ │ └── version.pyc
│ │ │ │ ├── pyparsing.py
│ │ │ │ ├── pyparsing.pyc
│ │ │ │ ├── six.py
│ │ │ │ └── six.pyc
│ │ │ ├── version.py
│ │ │ ├── version.pyc
│ │ │ ├── wheel.py
│ │ │ ├── wheel.pyc
│ │ │ ├── windows_support.py
│ │ │ └── windows_support.pyc
│ │ └── setuptools-40.6.2.dist-info
│ │ ├── dependency_links.txt
│ │ ├── entry_points.txt
│ │ ├── INSTALLER
│ │ ├── LICENSE
│ │ ├── METADATA
│ │ ├── RECORD
│ │ ├── top_level.txt
│ │ ├── WHEEL
│ │ └── zip-safe
│ ├── site.py
│ ├── site.pyc
│ ├── smtpd.py
│ ├── smtplib.py
│ ├── sndhdr.py
│ ├── socket.py
│ ├── socket.pyc
│ ├── SocketServer.py
│ ├── SocketServer.pyc
│ ├── sqlite3
│ │ ├── dbapi2.py
│ │ ├── dump.py
│ │ ├── __init__.py
│ │ └── test
│ │ ├── dbapi.py
│ │ ├── dump.py
│ │ ├── factory.py
│ │ ├── hooks.py
│ │ ├── __init__.py
│ │ ├── py25tests.py
│ │ ├── regression.py
│ │ ├── transactions.py
│ │ ├── types.py
│ │ └── userfunctions.py
│ ├── sre_compile.py
│ ├── sre_compile.pyc
│ ├── sre_constants.py
│ ├── sre_constants.pyc
│ ├── sre_parse.py
│ ├── sre_parse.pyc
│ ├── sre.py
│ ├── ssl.py
│ ├── ssl.pyc
│ ├── stat.py
│ ├── stat.pyc
│ ├── statvfs.py
│ ├── StringIO.py
│ ├── StringIO.pyc
│ ├── stringold.py
│ ├── stringprep.py
│ ├── stringprep.pyc
│ ├── string.py
│ ├── string.pyc
│ ├── _strptime.py
│ ├── struct.py
│ ├── struct.pyc
│ ├── subprocess.py
│ ├── subprocess.pyc
│ ├── sunaudio.py
│ ├── sunau.py
│ ├── symbol.py
│ ├── symtable.py
│ ├── sysconfig.py
│ ├── sysconfig.pyc
│ ├── tabnanny.py
│ ├── tarfile.py
│ ├── tarfile.pyc
│ ├── telnetlib.py
│ ├── tempfile.py
│ ├── tempfile.pyc
│ ├── test
│ │ ├── 185test.db
│ │ ├── allsans.pem
│ │ ├── audiodata
│ │ │ ├── pluck-pcm16.aiff
│ │ │ ├── pluck-pcm16.au
│ │ │ ├── pluck-pcm16.wav
│ │ │ ├── pluck-pcm24.aiff
│ │ │ ├── pluck-pcm24.wav
│ │ │ ├── pluck-pcm32.aiff
│ │ │ ├── pluck-pcm32.au
│ │ │ ├── pluck-pcm32.wav
│ │ │ ├── pluck-pcm8.aiff
│ │ │ ├── pluck-pcm8.au
│ │ │ ├── pluck-pcm8.wav
│ │ │ ├── pluck-ulaw.aifc
│ │ │ └── pluck-ulaw.au
│ │ ├── audiotest.au
│ │ ├── audiotests.py
│ │ ├── autotest.py
│ │ ├── badcert.pem
│ │ ├── bad_coding2.py
│ │ ├── bad_coding3.py
│ │ ├── bad_coding.py
│ │ ├── badkey.pem
│ │ ├── badsyntax_future3.py
│ │ ├── badsyntax_future4.py
│ │ ├── badsyntax_future5.py
│ │ ├── badsyntax_future6.py
│ │ ├── badsyntax_future7.py
│ │ ├── badsyntax_future8.py
│ │ ├── badsyntax_future9.py
│ │ ├── badsyntax_nocaret.py
│ │ ├── bisect_cmd.py
│ │ ├── capath
│ │ │ ├── 0e4015b9.0
│ │ │ ├── 4e1295a3.0
│ │ │ ├── 5ed36f99.0
│ │ │ ├── 6e88d7b8.0
│ │ │ ├── 99d0fa06.0
│ │ │ └── ce7b8643.0
│ │ ├── cfgparser.1
│ │ ├── cjkencodings
│ │ │ ├── big5hkscs.txt
│ │ │ ├── big5hkscs-utf8.txt
│ │ │ ├── big5.txt
│ │ │ ├── big5-utf8.txt
│ │ │ ├── cp949.txt
│ │ │ ├── cp949-utf8.txt
│ │ │ ├── euc_jisx0213.txt
│ │ │ ├── euc_jisx0213-utf8.txt
│ │ │ ├── euc_jp.txt
│ │ │ ├── euc_jp-utf8.txt
│ │ │ ├── euc_kr.txt
│ │ │ ├── euc_kr-utf8.txt
│ │ │ ├── gb18030.txt
│ │ │ ├── gb18030-utf8.txt
│ │ │ ├── gb2312.txt
│ │ │ ├── gb2312-utf8.txt
│ │ │ ├── gbk.txt
│ │ │ ├── gbk-utf8.txt
│ │ │ ├── hz.txt
│ │ │ ├── hz-utf8.txt
│ │ │ ├── iso2022_jp.txt
│ │ │ ├── iso2022_jp-utf8.txt
│ │ │ ├── iso2022_kr.txt
│ │ │ ├── iso2022_kr-utf8.txt
│ │ │ ├── johab.txt
│ │ │ ├── johab-utf8.txt
│ │ │ ├── shift_jis.txt
│ │ │ ├── shift_jis-utf8.txt
│ │ │ ├── shift_jisx0213.txt
│ │ │ └── shift_jisx0213-utf8.txt
│ │ ├── cmath_testcases.txt
│ │ ├── crashers
│ │ │ ├── bogus_code_obj.py
│ │ │ ├── borrowed_ref_1.py
│ │ │ ├── borrowed_ref_2.py
│ │ │ ├── buffer_mutate.py
│ │ │ ├── compiler_recursion.py
│ │ │ ├── decref_before_assignment.py
│ │ │ ├── gc_has_finalizer.py
│ │ │ ├── gc_inspection.py
│ │ │ ├── infinite_loop_re.py
│ │ │ ├── loosing_mro_ref.py
│ │ │ ├── mutation_inside_cyclegc.py
│ │ │ ├── nasty_eq_vs_dict.py
│ │ │ ├── recursion_limit_too_high.py
│ │ │ ├── recursive_call.py
│ │ │ └── warnings_del_crasher.py
│ │ ├── curses_tests.py
│ │ ├── decimaltestdata
│ │ │ ├── abs.decTest
│ │ │ ├── add.decTest
│ │ │ ├── and.decTest
│ │ │ ├── base.decTest
│ │ │ ├── clamp.decTest
│ │ │ ├── class.decTest
│ │ │ ├── compare.decTest
│ │ │ ├── comparetotal.decTest
│ │ │ ├── comparetotmag.decTest
│ │ │ ├── copyabs.decTest
│ │ │ ├── copy.decTest
│ │ │ ├── copynegate.decTest
│ │ │ ├── copysign.decTest
│ │ │ ├── ddAbs.decTest
│ │ │ ├── ddAdd.decTest
│ │ │ ├── ddAnd.decTest
│ │ │ ├── ddBase.decTest
│ │ │ ├── ddCanonical.decTest
│ │ │ ├── ddClass.decTest
│ │ │ ├── ddCompare.decTest
│ │ │ ├── ddCompareSig.decTest
│ │ │ ├── ddCompareTotal.decTest
│ │ │ ├── ddCompareTotalMag.decTest
│ │ │ ├── ddCopyAbs.decTest
│ │ │ ├── ddCopy.decTest
│ │ │ ├── ddCopyNegate.decTest
│ │ │ ├── ddCopySign.decTest
│ │ │ ├── ddDivide.decTest
│ │ │ ├── ddDivideInt.decTest
│ │ │ ├── ddEncode.decTest
│ │ │ ├── ddFMA.decTest
│ │ │ ├── ddInvert.decTest
│ │ │ ├── ddLogB.decTest
│ │ │ ├── ddMax.decTest
│ │ │ ├── ddMaxMag.decTest
│ │ │ ├── ddMin.decTest
│ │ │ ├── ddMinMag.decTest
│ │ │ ├── ddMinus.decTest
│ │ │ ├── ddMultiply.decTest
│ │ │ ├── ddNextMinus.decTest
│ │ │ ├── ddNextPlus.decTest
│ │ │ ├── ddNextToward.decTest
│ │ │ ├── ddOr.decTest
│ │ │ ├── ddPlus.decTest
│ │ │ ├── ddQuantize.decTest
│ │ │ ├── ddReduce.decTest
│ │ │ ├── ddRemainder.decTest
│ │ │ ├── ddRemainderNear.decTest
│ │ │ ├── ddRotate.decTest
│ │ │ ├── ddSameQuantum.decTest
│ │ │ ├── ddScaleB.decTest
│ │ │ ├── ddShift.decTest
│ │ │ ├── ddSubtract.decTest
│ │ │ ├── ddToIntegral.decTest
│ │ │ ├── ddXor.decTest
│ │ │ ├── decDouble.decTest
│ │ │ ├── decQuad.decTest
│ │ │ ├── decSingle.decTest
│ │ │ ├── divide.decTest
│ │ │ ├── divideint.decTest
│ │ │ ├── dqAbs.decTest
│ │ │ ├── dqAdd.decTest
│ │ │ ├── dqAnd.decTest
│ │ │ ├── dqBase.decTest
│ │ │ ├── dqCanonical.decTest
│ │ │ ├── dqClass.decTest
│ │ │ ├── dqCompare.decTest
│ │ │ ├── dqCompareSig.decTest
│ │ │ ├── dqCompareTotal.decTest
│ │ │ ├── dqCompareTotalMag.decTest
│ │ │ ├── dqCopyAbs.decTest
│ │ │ ├── dqCopy.decTest
│ │ │ ├── dqCopyNegate.decTest
│ │ │ ├── dqCopySign.decTest
│ │ │ ├── dqDivide.decTest
│ │ │ ├── dqDivideInt.decTest
│ │ │ ├── dqEncode.decTest
│ │ │ ├── dqFMA.decTest
│ │ │ ├── dqInvert.decTest
│ │ │ ├── dqLogB.decTest
│ │ │ ├── dqMax.decTest
│ │ │ ├── dqMaxMag.decTest
│ │ │ ├── dqMin.decTest
│ │ │ ├── dqMinMag.decTest
│ │ │ ├── dqMinus.decTest
│ │ │ ├── dqMultiply.decTest
│ │ │ ├── dqNextMinus.decTest
│ │ │ ├── dqNextPlus.decTest
│ │ │ ├── dqNextToward.decTest
│ │ │ ├── dqOr.decTest
│ │ │ ├── dqPlus.decTest
│ │ │ ├── dqQuantize.decTest
│ │ │ ├── dqReduce.decTest
│ │ │ ├── dqRemainder.decTest
│ │ │ ├── dqRemainderNear.decTest
│ │ │ ├── dqRotate.decTest
│ │ │ ├── dqSameQuantum.decTest
│ │ │ ├── dqScaleB.decTest
│ │ │ ├── dqShift.decTest
│ │ │ ├── dqSubtract.decTest
│ │ │ ├── dqToIntegral.decTest
│ │ │ ├── dqXor.decTest
│ │ │ ├── dsBase.decTest
│ │ │ ├── dsEncode.decTest
│ │ │ ├── exp.decTest
│ │ │ ├── extra.decTest
│ │ │ ├── fma.decTest
│ │ │ ├── inexact.decTest
│ │ │ ├── invert.decTest
│ │ │ ├── ln.decTest
│ │ │ ├── log10.decTest
│ │ │ ├── logb.decTest
│ │ │ ├── max.decTest
│ │ │ ├── maxmag.decTest
│ │ │ ├── min.decTest
│ │ │ ├── minmag.decTest
│ │ │ ├── minus.decTest
│ │ │ ├── multiply.decTest
│ │ │ ├── nextminus.decTest
│ │ │ ├── nextplus.decTest
│ │ │ ├── nexttoward.decTest
│ │ │ ├── or.decTest
│ │ │ ├── plus.decTest
│ │ │ ├── power.decTest
│ │ │ ├── powersqrt.decTest
│ │ │ ├── quantize.decTest
│ │ │ ├── randomBound32.decTest
│ │ │ ├── randoms.decTest
│ │ │ ├── reduce.decTest
│ │ │ ├── remainder.decTest
│ │ │ ├── remainderNear.decTest
│ │ │ ├── rescale.decTest
│ │ │ ├── rotate.decTest
│ │ │ ├── rounding.decTest
│ │ │ ├── samequantum.decTest
│ │ │ ├── scaleb.decTest
│ │ │ ├── shift.decTest
│ │ │ ├── squareroot.decTest
│ │ │ ├── subtract.decTest
│ │ │ ├── testall.decTest
│ │ │ ├── tointegral.decTest
│ │ │ ├── tointegralx.decTest
│ │ │ └── xor.decTest
│ │ ├── doctest_aliases.py
│ │ ├── double_const.py
│ │ ├── empty.vbs
│ │ ├── exception_hierarchy.txt
│ │ ├── ffdh3072.pem
│ │ ├── floating_points.txt
│ │ ├── fork_wait.py
│ │ ├── formatfloat_testcases.txt
│ │ ├── gdb_sample.py
│ │ ├── greyrgb.uue
│ │ ├── ieee754.txt
│ │ ├── imghdrdata
│ │ │ ├── python.bmp
│ │ │ ├── python.gif
│ │ │ ├── python.jpg
│ │ │ ├── python.pbm
│ │ │ ├── python.pgm
│ │ │ ├── python.png
│ │ │ ├── python.ppm
│ │ │ ├── python.ras
│ │ │ ├── python.sgi
│ │ │ ├── python.tiff
│ │ │ └── python.xbm
│ │ ├── infinite_reload.py
│ │ ├── __init__.py
│ │ ├── inspect_fodder2.py
│ │ ├── inspect_fodder.py
│ │ ├── keycert2.pem
│ │ ├── keycert3.pem
│ │ ├── keycert4.pem
│ │ ├── keycert.passwd.pem
│ │ ├── keycert.pem
│ │ ├── leakers
│ │ │ ├── __init__.py
│ │ │ ├── README.txt
│ │ │ ├── test_ctypes.py
│ │ │ ├── test_dictself.py
│ │ │ ├── test_gestalt.py
│ │ │ └── test_selftype.py
│ │ ├── list_tests.py
│ │ ├── lock_tests.py
│ │ ├── __main__.py
│ │ ├── make_ssl_certs.py
│ │ ├── mapping_tests.py
│ │ ├── math_testcases.txt
│ │ ├── _mock_backport.py
│ │ ├── mp_fork_bomb.py
│ │ ├── multibytecodec_support.py
│ │ ├── nokia.pem
│ │ ├── nullbytecert.pem
│ │ ├── nullcert.pem
│ │ ├── outstanding_bugs.py
│ │ ├── pickletester.py
│ │ ├── profilee.py
│ │ ├── pycacert.pem
│ │ ├── pyclbr_input.py
│ │ ├── pydocfodder.py
│ │ ├── pydoc_mod.py
│ │ ├── pystone.py
│ │ ├── pythoninfo.py
│ │ ├── randv2_32.pck
│ │ ├── randv2_64.pck
│ │ ├── randv3.pck
│ │ ├── regrtest.py
│ │ ├── relimport.py
│ │ ├── reperf.py
│ │ ├── re_tests.py
│ │ ├── revocation.crl
│ │ ├── sample_doctest_no_docstrings.py
│ │ ├── sample_doctest_no_doctests.py
│ │ ├── sample_doctest.py
│ │ ├── script_helper.py
│ │ ├── selfsigned_pythontestdotnet.pem
│ │ ├── seq_tests.py
│ │ ├── sgml_input.html
│ │ ├── Sine-1000Hz-300ms.aif
│ │ ├── sortperf.py
│ │ ├── ssl_cert.pem
│ │ ├── ssl_key.passwd.pem
│ │ ├── ssl_key.pem
│ │ ├── ssl_servers.py
│ │ ├── ssltests.py
│ │ ├── string_tests.py
│ │ ├── subprocessdata
│ │ │ └── sigchild_ignore.py
│ │ ├── support
│ │ │ ├── __init__.py
│ │ │ └── script_helper.py
│ │ ├── symlink_support.py
│ │ ├── talos-2019-0758.pem
│ │ ├── test_abc.py
│ │ ├── test_abstract_numbers.py
│ │ ├── test_aepack.py
│ │ ├── test_aifc.py
│ │ ├── test___all__.py
│ │ ├── testall.py
│ │ ├── test_al.py
│ │ ├── test_anydbm.py
│ │ ├── test_applesingle.py
│ │ ├── test_argparse.py
│ │ ├── test_array.py
│ │ ├── test_ascii_formatd.py
│ │ ├── test_ast.py
│ │ ├── test_asynchat.py
│ │ ├── test_asyncore.py
│ │ ├── test_atexit.py
│ │ ├── test_audioop.py
│ │ ├── test_augassign.py
│ │ ├── test_base64.py
│ │ ├── test_bastion.py
│ │ ├── test_bdb.py
│ │ ├── test_bigaddrspace.py
│ │ ├── test_bigmem.py
│ │ ├── test_binascii.py
│ │ ├── test_binhex.py
│ │ ├── test_binop.py
│ │ ├── test_bisect.py
│ │ ├── test_bool.py
│ │ ├── test_bsddb185.py
│ │ ├── test_bsddb3.py
│ │ ├── test_bsddb.py
│ │ ├── test_buffer.py
│ │ ├── test_bufio.py
│ │ ├── test_builtin.py
│ │ ├── test_bytes.py
│ │ ├── test_bz2.py
│ │ ├── test_calendar.py
│ │ ├── test_call.py
│ │ ├── test_capi.py
│ │ ├── test_cd.py
│ │ ├── test_cfgparser.py
│ │ ├── test_cgi.py
│ │ ├── test_charmapcodec.py
│ │ ├── test_class.py
│ │ ├── test_cl.py
│ │ ├── test_cmath.py
│ │ ├── test_cmd_line.py
│ │ ├── test_cmd_line_script.py
│ │ ├── test_cmd.py
│ │ ├── test_codeccallbacks.py
│ │ ├── test_codecencodings_cn.py
│ │ ├── test_codecencodings_hk.py
│ │ ├── test_codecencodings_iso2022.py
│ │ ├── test_codecencodings_jp.py
│ │ ├── test_codecencodings_kr.py
│ │ ├── test_codecencodings_tw.py
│ │ ├── test_codecmaps_cn.py
│ │ ├── test_codecmaps_hk.py
│ │ ├── test_codecmaps_jp.py
│ │ ├── test_codecmaps_kr.py
│ │ ├── test_codecmaps_tw.py
│ │ ├── testcodec.py
│ │ ├── test_codecs.py
│ │ ├── test_codeop.py
│ │ ├── test_code.py
│ │ ├── test_coercion.py
│ │ ├── test_collections.py
│ │ ├── test_colorsys.py
│ │ ├── test_commands.py
│ │ ├── test_compare.py
│ │ ├── test_compileall.py
│ │ ├── test_compile.py
│ │ ├── test_compiler.py
│ │ ├── test_complex_args.py
│ │ ├── test_complex.py
│ │ ├── test_contains.py
│ │ ├── test_contextlib.py
│ │ ├── test_cookielib.py
│ │ ├── test_cookie.py
│ │ ├── test_copy.py
│ │ ├── test_copy_reg.py
│ │ ├── test_cpickle.py
│ │ ├── test_cprofile.py
│ │ ├── test_crypt.py
│ │ ├── test_csv.py
│ │ ├── test_ctypes.py
│ │ ├── test_curses.py
│ │ ├── test_datetime.py
│ │ ├── test_dbm.py
│ │ ├── test_decimal.py
│ │ ├── test_decorators.py
│ │ ├── test_defaultdict.py
│ │ ├── test_deque.py
│ │ ├── test_descr.py
│ │ ├── test_descrtut.py
│ │ ├── test_dictcomps.py
│ │ ├── test_dict.py
│ │ ├── test_dictviews.py
│ │ ├── test_difflib_expect.html
│ │ ├── test_difflib.py
│ │ ├── test_dircache.py
│ │ ├── test_dis.py
│ │ ├── test_distutils.py
│ │ ├── test_dl.py
│ │ ├── test_doctest2.py
│ │ ├── test_doctest2.txt
│ │ ├── test_doctest3.txt
│ │ ├── test_doctest4.txt
│ │ ├── test_doctest.py
│ │ ├── test_doctest.txt
│ │ ├── test_docxmlrpc.py
│ │ ├── test_dumbdbm.py
│ │ ├── test_dummy_threading.py
│ │ ├── test_dummy_thread.py
│ │ ├── test_email_codecs.py
│ │ ├── test_email.py
│ │ ├── test_email_renamed.py
│ │ ├── test_ensurepip.py
│ │ ├── test_enumerate.py
│ │ ├── test_eof.py
│ │ ├── test_epoll.py
│ │ ├── test_errno.py
│ │ ├── test_exceptions.py
│ │ ├── test_exception_variations.py
│ │ ├── test_extcall.py
│ │ ├── test_fcntl.py
│ │ ├── test_file2k.py
│ │ ├── test_filecmp.py
│ │ ├── test_file_eintr.py
│ │ ├── test_fileinput.py
│ │ ├── test_fileio.py
│ │ ├── test_file.py
│ │ ├── test_float.py
│ │ ├── test_fnmatch.py
│ │ ├── test_fork1.py
│ │ ├── test_format.py
│ │ ├── test_fpformat.py
│ │ ├── test_fractions.py
│ │ ├── test_frozen.py
│ │ ├── test_ftplib.py
│ │ ├── test_funcattrs.py
│ │ ├── test_functools.py
│ │ ├── test_future1.py
│ │ ├── test_future2.py
│ │ ├── test_future3.py
│ │ ├── test_future4.py
│ │ ├── test_future5.py
│ │ ├── test_future_builtins.py
│ │ ├── test___future__.py
│ │ ├── test_future.py
│ │ ├── test_gc.py
│ │ ├── test_gdbm.py
│ │ ├── test_gdb.py
│ │ ├── test_generators.py
│ │ ├── test_genericpath.py
│ │ ├── test_genexps.py
│ │ ├── test_getargs2.py
│ │ ├── test_getargs.py
│ │ ├── test_getopt.py
│ │ ├── test_gettext.py
│ │ ├── test_global.py
│ │ ├── test_glob.py
│ │ ├── test_gl.py
│ │ ├── test_grammar.py
│ │ ├── test_grp.py
│ │ ├── test_gzip.py
│ │ ├── test_hashlib.py
│ │ ├── test_hash.py
│ │ ├── test_heapq.py
│ │ ├── test_hmac.py
│ │ ├── test_hotshot.py
│ │ ├── test_htmllib.py
│ │ ├── test_htmlparser.py
│ │ ├── test_httplib.py
│ │ ├── test_httpservers.py
│ │ ├── test_idle.py
│ │ ├── test_imageop.py
│ │ ├── test_imaplib.py
│ │ ├── test_imgfile.py
│ │ ├── test_imghdr.py
│ │ ├── testimgr.uue
│ │ ├── testimg.uue
│ │ ├── test_importhooks.py
│ │ ├── test_importlib.py
│ │ ├── test_import_magic.py
│ │ ├── test_import.py
│ │ ├── test_imp.py
│ │ ├── test_index.py
│ │ ├── test_inspect.py
│ │ ├── test_int_literal.py
│ │ ├── test_int.py
│ │ ├── test_ioctl.py
│ │ ├── test_io.py
│ │ ├── test_isinstance.py
│ │ ├── test_iterlen.py
│ │ ├── test_iter.py
│ │ ├── test_itertools.py
│ │ ├── test_json.py
│ │ ├── test_kqueue.py
│ │ ├── test_largefile.py
│ │ ├── test_lib2to3.py
│ │ ├── test_linecache.py
│ │ ├── test_linuxaudiodev.py
│ │ ├── test_list.py
│ │ ├── test__locale.py
│ │ ├── test_locale.py
│ │ ├── test_logging.py
│ │ ├── test_longexp.py
│ │ ├── test_long_future.py
│ │ ├── test_long.py
│ │ ├── test_macos.py
│ │ ├── test_macostools.py
│ │ ├── test_macpath.py
│ │ ├── test_macurl2path.py
│ │ ├── test_mailbox.py
│ │ ├── test_marshal.py
│ │ ├── test_math.py
│ │ ├── test_md5.py
│ │ ├── test_memoryio.py
│ │ ├── test_memoryview.py
│ │ ├── test_mhlib.py
│ │ ├── test_mimetools.py
│ │ ├── test_mimetypes.py
│ │ ├── test_MimeWriter.py
│ │ ├── test_minidom.py
│ │ ├── test_mmap.py
│ │ ├── test_modulefinder.py
│ │ ├── test_module.py
│ │ ├── test_msilib.py
│ │ ├── test_multibytecodec.py
│ │ ├── test_multifile.py
│ │ ├── test_multiprocessing.py
│ │ ├── test_mutants.py
│ │ ├── test_mutex.py
│ │ ├── test_netrc.py
│ │ ├── test_new.py
│ │ ├── test_nis.py
│ │ ├── test_nntplib.py
│ │ ├── test_normalization.py
│ │ ├── test_ntpath.py
│ │ ├── test_old_mailbox.py
│ │ ├── test_opcodes.py
│ │ ├── test_openpty.py
│ │ ├── test_operator.py
│ │ ├── test_optparse.py
│ │ ├── test_ordered_dict.py
│ │ ├── test_os.py
│ │ ├── test_ossaudiodev.py
│ │ ├── test__osx_support.py
│ │ ├── test_parser.py
│ │ ├── test_pdb.py
│ │ ├── test_peepholer.py
│ │ ├── test_pep247.py
│ │ ├── test_pep277.py
│ │ ├── test_pep352.py
│ │ ├── test_pickle.py
│ │ ├── test_pickletools.py
│ │ ├── test_pipes.py
│ │ ├── test_pkgimport.py
│ │ ├── test_pkg.py
│ │ ├── test_pkgutil.py
│ │ ├── test_platform.py
│ │ ├── test_plistlib.py
│ │ ├── test_poll.py
│ │ ├── test_popen2.py
│ │ ├── test_popen.py
│ │ ├── test_poplib.py
│ │ ├── test_posixpath.py
│ │ ├── test_posix.py
│ │ ├── test_pow.py
│ │ ├── test_pprint.py
│ │ ├── test_print.py
│ │ ├── test_profile.py
│ │ ├── test_property.py
│ │ ├── test_pstats.py
│ │ ├── test_pty.py
│ │ ├── test_pwd.py
│ │ ├── test_py3kwarn.py
│ │ ├── test_pyclbr.py
│ │ ├── test_py_compile.py
│ │ ├── test_pydoc.py
│ │ ├── test_pyexpat.py
│ │ ├── test_queue.py
│ │ ├── test_quopri.py
│ │ ├── test_random.py
│ │ ├── test_readline.py
│ │ ├── test_regrtest.py
│ │ ├── test_repr.py
│ │ ├── test_re.py
│ │ ├── test_resource.py
│ │ ├── test_rfc822.py
│ │ ├── testrgb.uue
│ │ ├── test_richcmp.py
│ │ ├── test_rlcompleter.py
│ │ ├── test_robotparser.py
│ │ ├── test_runpy.py
│ │ ├── test_sax.py
│ │ ├── test_scope.py
│ │ ├── test_scriptpackages.py
│ │ ├── test_select.py
│ │ ├── test_setcomps.py
│ │ ├── test_set.py
│ │ ├── test_sets.py
│ │ ├── test_sgmllib.py
│ │ ├── test_sha.py
│ │ ├── test_shelve.py
│ │ ├── test_shlex.py
│ │ ├── test_shutil.py
│ │ ├── test_signal.py
│ │ ├── test_SimpleHTTPServer.py
│ │ ├── test_site.py
│ │ ├── test_slice.py
│ │ ├── test_smtplib.py
│ │ ├── test_smtpnet.py
│ │ ├── test_socket.py
│ │ ├── test_socketserver.py
│ │ ├── test_softspace.py
│ │ ├── test_sort.py
│ │ ├── test_source_encoding.py
│ │ ├── test_spwd.py
│ │ ├── test_sqlite.py
│ │ ├── test_ssl.py
│ │ ├── test_startfile.py
│ │ ├── test_stat.py
│ │ ├── test_strftime.py
│ │ ├── test_StringIO.py
│ │ ├── test_stringprep.py
│ │ ├── test_string.py
│ │ ├── test_strop.py
│ │ ├── test_strptime.py
│ │ ├── test_str.py
│ │ ├── test_strtod.py
│ │ ├── test_structmembers.py
│ │ ├── test_struct.py
│ │ ├── test_structseq.py
│ │ ├── test_subprocess.py
│ │ ├── test_sunaudiodev.py
│ │ ├── test_sunau.py
│ │ ├── test_sundry.py
│ │ ├── test_support.py
│ │ ├── test_symtable.py
│ │ ├── test_syntax.py
│ │ ├── test_sysconfig.py
│ │ ├── test_sys.py
│ │ ├── test_sys_setprofile.py
│ │ ├── test_sys_settrace.py
│ │ ├── test_tarfile.py
│ │ ├── testtar.tar
│ │ ├── test_tcl.py
│ │ ├── test_telnetlib.py
│ │ ├── test_tempfile.py
│ │ ├── test_test_support.py
│ │ ├── test_textwrap.py
│ │ ├── test_threaded_import.py
│ │ ├── test_threadedtempfile.py
│ │ ├── test_threading_local.py
│ │ ├── test_threading.py
│ │ ├── test_thread.py
│ │ ├── test_threadsignals.py
│ │ ├── test_timeit.py
│ │ ├── test_timeout.py
│ │ ├── test_time.py
│ │ ├── test_tk.py
│ │ ├── test_tokenize.py
│ │ ├── test_tools.py
│ │ ├── test_traceback.py
│ │ ├── test_trace.py
│ │ ├── test_transformer.py
│ │ ├── test_ttk_guionly.py
│ │ ├── test_ttk_textonly.py
│ │ ├── test_tuple.py
│ │ ├── test_turtle.py
│ │ ├── test_typechecks.py
│ │ ├── test_types.py
│ │ ├── test_ucn.py
│ │ ├── test_unary.py
│ │ ├── test_undocumented_details.py
│ │ ├── test_unicodedata.py
│ │ ├── test_unicode_file.py
│ │ ├── test_unicode.py
│ │ ├── test_unittest.py
│ │ ├── test_univnewlines2k.py
│ │ ├── test_univnewlines.py
│ │ ├── test_unpack.py
│ │ ├── test_urllib2_localnet.py
│ │ ├── test_urllib2net.py
│ │ ├── test_urllib2.py
│ │ ├── test_urllibnet.py
│ │ ├── test_urllib.py
│ │ ├── test_urlparse.py
│ │ ├── test_userdict.py
│ │ ├── test_userlist.py
│ │ ├── test_userstring.py
│ │ ├── test_uuid.py
│ │ ├── test_uu.py
│ │ ├── test_wait3.py
│ │ ├── test_wait4.py
│ │ ├── test_warnings.py
│ │ ├── test_wave.py
│ │ ├── test_weakref.py
│ │ ├── test_weakset.py
│ │ ├── test_whichdb.py
│ │ ├── test_winreg.py
│ │ ├── test_winsound.py
│ │ ├── test_with.py
│ │ ├── test_wsgiref.py
│ │ ├── test_xdrlib.py
│ │ ├── test_xml_etree_c.py
│ │ ├── test_xml_etree.py
│ │ ├── test_xmllib.py
│ │ ├── test_xmlrpc.py
│ │ ├── test_xpickle.py
│ │ ├── test_xrange.py
│ │ ├── test_zipfile64.py
│ │ ├── test_zipfile.py
│ │ ├── test_zipimport.py
│ │ ├── test_zipimport_support.py
│ │ ├── test_zlib.py
│ │ ├── tf_inherit_check.py
│ │ ├── threaded_import_hangers.py
│ │ ├── time_hashlib.py
│ │ ├── tokenize_tests.txt
│ │ ├── tracedmodules
│ │ │ ├── __init__.py
│ │ │ └── testmod.py
│ │ ├── warning_tests.py
│ │ ├── win_console_handler.py
│ │ ├── xmltestdata
│ │ │ ├── expat224_utf8_bug.xml
│ │ │ ├── simple-ns.xml
│ │ │ ├── simple.xml
│ │ │ ├── test.xml
│ │ │ └── test.xml.out
│ │ ├── xmltests.py
│ │ └── zipdir.zip
│ ├── textwrap.py
│ ├── textwrap.pyc
│ ├── this.py
│ ├── _threading_local.py
│ ├── threading.py
│ ├── threading.pyc
│ ├── timeit.py
│ ├── toaiff.py
│ ├── tokenize.py
│ ├── tokenize.pyc
│ ├── token.py
│ ├── token.pyc
│ ├── traceback.py
│ ├── traceback.pyc
│ ├── trace.py
│ ├── tty.py
│ ├── types.py
│ ├── types.pyc
│ ├── unittest
│ │ ├── case.py
│ │ ├── __init__.py
│ │ ├── loader.py
│ │ ├── __main__.py
│ │ ├── main.py
│ │ ├── result.py
│ │ ├── runner.py
│ │ ├── signals.py
│ │ ├── suite.py
│ │ ├── test
│ │ │ ├── dummy.py
│ │ │ ├── __init__.py
│ │ │ ├── support.py
│ │ │ ├── test_assertions.py
│ │ │ ├── test_break.py
│ │ │ ├── test_case.py
│ │ │ ├── test_discovery.py
│ │ │ ├── test_functiontestcase.py
│ │ │ ├── test_loader.py
│ │ │ ├── test_program.py
│ │ │ ├── test_result.py
│ │ │ ├── test_runner.py
│ │ │ ├── test_setups.py
│ │ │ ├── test_skipping.py
│ │ │ └── test_suite.py
│ │ └── util.py
│ ├── urllib2.py
│ ├── urllib2.pyc
│ ├── urllib.py
│ ├── urllib.pyc
│ ├── urlparse.py
│ ├── urlparse.pyc
│ ├── UserDict.py
│ ├── UserDict.pyc
│ ├── UserList.py
│ ├── user.py
│ ├── UserString.py
│ ├── uuid.py
│ ├── uu.py
│ ├── uu.pyc
│ ├── warnings.py
│ ├── warnings.pyc
│ ├── wave.py
│ ├── weakref.py
│ ├── weakref.pyc
│ ├── _weakrefset.py
│ ├── _weakrefset.pyc
│ ├── webbrowser.py
│ ├── whichdb.py
│ ├── wsgiref
│ │ ├── handlers.py
│ │ ├── headers.py
│ │ ├── __init__.py
│ │ ├── simple_server.py
│ │ ├── util.py
│ │ └── validate.py
│ ├── xdrlib.py
│ ├── xml
│ │ ├── dom
│ │ │ ├── domreg.py
│ │ │ ├── expatbuilder.py
│ │ │ ├── __init__.py
│ │ │ ├── minicompat.py
│ │ │ ├── minidom.py
│ │ │ ├── NodeFilter.py
│ │ │ ├── pulldom.py
│ │ │ └── xmlbuilder.py
│ │ ├── etree
│ │ │ ├── cElementTree.py
│ │ │ ├── cElementTree.pyc
│ │ │ ├── ElementInclude.py
│ │ │ ├── ElementPath.py
│ │ │ ├── ElementPath.pyc
│ │ │ ├── ElementTree.py
│ │ │ ├── ElementTree.pyc
│ │ │ ├── __init__.py
│ │ │ └── __init__.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── parsers
│ │ │ ├── expat.py
│ │ │ ├── expat.pyc
│ │ │ ├── __init__.py
│ │ │ └── __init__.pyc
│ │ └── sax
│ │ ├── _exceptions.py
│ │ ├── _exceptions.pyc
│ │ ├── expatreader.py
│ │ ├── handler.py
│ │ ├── handler.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── saxutils.py
│ │ ├── saxutils.pyc
│ │ ├── xmlreader.py
│ │ └── xmlreader.pyc
│ ├── xmllib.py
│ ├── xmlrpclib.py
│ ├── xmlrpclib.pyc
│ ├── zipfile.py
│ └── zipfile.pyc
├── libs
│ ├── _bsddb.lib
│ ├── bz2.lib
│ ├── _ctypes.lib
│ ├── _ctypes_test.lib
│ ├── _elementtree.lib
│ ├── _hashlib.lib
│ ├── libpython27.a
│ ├── _msi.lib
│ ├── _multiprocessing.lib
│ ├── pyexpat.lib
│ ├── python27.lib
│ ├── select.lib
│ ├── _socket.lib
│ ├── _sqlite3.lib
│ ├── _ssl.lib
│ ├── _testcapi.lib
│ ├── _tkinter.lib
│ ├── unicodedata.lib
│ └── winsound.lib
├── LICENSE.txt
├── Microsoft.VC90.CRT.manifest
├── msvcr90.dll
├── NEWS.txt
├── python27.dll
├── python.exe
├── pythonw.exe
├── README.txt
├── Scripts
│ ├── easy_install-2.7.exe
│ ├── easy_install.exe
│ ├── pip2.7.exe
│ ├── pip2.exe
│ └── pip.exe
├── tcl
│ ├── dde1.3
│ │ ├── pkgIndex.tcl
│ │ └── tcldde13.dll
│ ├── reg1.2
│ │ ├── pkgIndex.tcl
│ │ └── tclreg12.dll
│ ├── tcl8
│ │ ├── 8.4
│ │ │ ├── http-2.7.12.tm
│ │ │ ├── platform
│ │ │ │ └── shell-1.1.4.tm
│ │ │ └── platform-1.0.12.tm
│ │ └── 8.5
│ │ ├── msgcat-1.5.2.tm
│ │ └── tcltest-2.3.5.tm
│ ├── tcl8.5
│ │ ├── auto.tcl
│ │ ├── clock.tcl
│ │ ├── encoding
│ │ │ ├── ascii.enc
│ │ │ ├── big5.enc
│ │ │ ├── cp1250.enc
│ │ │ ├── cp1251.enc
│ │ │ ├── cp1252.enc
│ │ │ ├── cp1253.enc
│ │ │ ├── cp1254.enc
│ │ │ ├── cp1255.enc
│ │ │ ├── cp1256.enc
│ │ │ ├── cp1257.enc
│ │ │ ├── cp1258.enc
│ │ │ ├── cp437.enc
│ │ │ ├── cp737.enc
│ │ │ ├── cp775.enc
│ │ │ ├── cp850.enc
│ │ │ ├── cp852.enc
│ │ │ ├── cp855.enc
│ │ │ ├── cp857.enc
│ │ │ ├── cp860.enc
│ │ │ ├── cp861.enc
│ │ │ ├── cp862.enc
│ │ │ ├── cp863.enc
│ │ │ ├── cp864.enc
│ │ │ ├── cp865.enc
│ │ │ ├── cp866.enc
│ │ │ ├── cp869.enc
│ │ │ ├── cp874.enc
│ │ │ ├── cp932.enc
│ │ │ ├── cp936.enc
│ │ │ ├── cp949.enc
│ │ │ ├── cp950.enc
│ │ │ ├── dingbats.enc
│ │ │ ├── ebcdic.enc
│ │ │ ├── euc-cn.enc
│ │ │ ├── euc-jp.enc
│ │ │ ├── euc-kr.enc
│ │ │ ├── gb12345.enc
│ │ │ ├── gb1988.enc
│ │ │ ├── gb2312.enc
│ │ │ ├── gb2312-raw.enc
│ │ │ ├── iso2022.enc
│ │ │ ├── iso2022-jp.enc
│ │ │ ├── iso2022-kr.enc
│ │ │ ├── iso8859-10.enc
│ │ │ ├── iso8859-13.enc
│ │ │ ├── iso8859-14.enc
│ │ │ ├── iso8859-15.enc
│ │ │ ├── iso8859-16.enc
│ │ │ ├── iso8859-1.enc
│ │ │ ├── iso8859-2.enc
│ │ │ ├── iso8859-3.enc
│ │ │ ├── iso8859-4.enc
│ │ │ ├── iso8859-5.enc
│ │ │ ├── iso8859-6.enc
│ │ │ ├── iso8859-7.enc
│ │ │ ├── iso8859-8.enc
│ │ │ ├── iso8859-9.enc
│ │ │ ├── jis0201.enc
│ │ │ ├── jis0208.enc
│ │ │ ├── jis0212.enc
│ │ │ ├── koi8-r.enc
│ │ │ ├── koi8-u.enc
│ │ │ ├── ksc5601.enc
│ │ │ ├── macCentEuro.enc
│ │ │ ├── macCroatian.enc
│ │ │ ├── macCyrillic.enc
│ │ │ ├── macDingbats.enc
│ │ │ ├── macGreek.enc
│ │ │ ├── macIceland.enc
│ │ │ ├── macJapan.enc
│ │ │ ├── macRoman.enc
│ │ │ ├── macRomania.enc
│ │ │ ├── macThai.enc
│ │ │ ├── macTurkish.enc
│ │ │ ├── macUkraine.enc
│ │ │ ├── shiftjis.enc
│ │ │ ├── symbol.enc
│ │ │ └── tis-620.enc
│ │ ├── history.tcl
│ │ ├── http1.0
│ │ │ ├── http.tcl
│ │ │ └── pkgIndex.tcl
│ │ ├── init.tcl
│ │ ├── msgs
│ │ │ ├── af.msg
│ │ │ ├── af_za.msg
│ │ │ ├── ar_in.msg
│ │ │ ├── ar_jo.msg
│ │ │ ├── ar_lb.msg
│ │ │ ├── ar.msg
│ │ │ ├── ar_sy.msg
│ │ │ ├── be.msg
│ │ │ ├── bg.msg
│ │ │ ├── bn_in.msg
│ │ │ ├── bn.msg
│ │ │ ├── ca.msg
│ │ │ ├── cs.msg
│ │ │ ├── da.msg
│ │ │ ├── de_at.msg
│ │ │ ├── de_be.msg
│ │ │ ├── de.msg
│ │ │ ├── el.msg
│ │ │ ├── en_au.msg
│ │ │ ├── en_be.msg
│ │ │ ├── en_bw.msg
│ │ │ ├── en_ca.msg
│ │ │ ├── en_gb.msg
│ │ │ ├── en_hk.msg
│ │ │ ├── en_ie.msg
│ │ │ ├── en_in.msg
│ │ │ ├── en_nz.msg
│ │ │ ├── en_ph.msg
│ │ │ ├── en_sg.msg
│ │ │ ├── en_za.msg
│ │ │ ├── en_zw.msg
│ │ │ ├── eo.msg
│ │ │ ├── es_ar.msg
│ │ │ ├── es_bo.msg
│ │ │ ├── es_cl.msg
│ │ │ ├── es_co.msg
│ │ │ ├── es_cr.msg
│ │ │ ├── es_do.msg
│ │ │ ├── es_ec.msg
│ │ │ ├── es_gt.msg
│ │ │ ├── es_hn.msg
│ │ │ ├── es.msg
│ │ │ ├── es_mx.msg
│ │ │ ├── es_ni.msg
│ │ │ ├── es_pa.msg
│ │ │ ├── es_pe.msg
│ │ │ ├── es_pr.msg
│ │ │ ├── es_py.msg
│ │ │ ├── es_sv.msg
│ │ │ ├── es_uy.msg
│ │ │ ├── es_ve.msg
│ │ │ ├── et.msg
│ │ │ ├── eu_es.msg
│ │ │ ├── eu.msg
│ │ │ ├── fa_in.msg
│ │ │ ├── fa_ir.msg
│ │ │ ├── fa.msg
│ │ │ ├── fi.msg
│ │ │ ├── fo_fo.msg
│ │ │ ├── fo.msg
│ │ │ ├── fr_be.msg
│ │ │ ├── fr_ca.msg
│ │ │ ├── fr_ch.msg
│ │ │ ├── fr.msg
│ │ │ ├── ga_ie.msg
│ │ │ ├── ga.msg
│ │ │ ├── gl_es.msg
│ │ │ ├── gl.msg
│ │ │ ├── gv_gb.msg
│ │ │ ├── gv.msg
│ │ │ ├── he.msg
│ │ │ ├── hi_in.msg
│ │ │ ├── hi.msg
│ │ │ ├── hr.msg
│ │ │ ├── hu.msg
│ │ │ ├── id_id.msg
│ │ │ ├── id.msg
│ │ │ ├── is.msg
│ │ │ ├── it_ch.msg
│ │ │ ├── it.msg
│ │ │ ├── ja.msg
│ │ │ ├── kl_gl.msg
│ │ │ ├── kl.msg
│ │ │ ├── kok_in.msg
│ │ │ ├── kok.msg
│ │ │ ├── ko_kr.msg
│ │ │ ├── ko.msg
│ │ │ ├── kw_gb.msg
│ │ │ ├── kw.msg
│ │ │ ├── lt.msg
│ │ │ ├── lv.msg
│ │ │ ├── mk.msg
│ │ │ ├── mr_in.msg
│ │ │ ├── mr.msg
│ │ │ ├── ms.msg
│ │ │ ├── ms_my.msg
│ │ │ ├── mt.msg
│ │ │ ├── nb.msg
│ │ │ ├── nl_be.msg
│ │ │ ├── nl.msg
│ │ │ ├── nn.msg
│ │ │ ├── pl.msg
│ │ │ ├── pt_br.msg
│ │ │ ├── pt.msg
│ │ │ ├── ro.msg
│ │ │ ├── ru.msg
│ │ │ ├── ru_ua.msg
│ │ │ ├── sh.msg
│ │ │ ├── sk.msg
│ │ │ ├── sl.msg
│ │ │ ├── sq.msg
│ │ │ ├── sr.msg
│ │ │ ├── sv.msg
│ │ │ ├── sw.msg
│ │ │ ├── ta_in.msg
│ │ │ ├── ta.msg
│ │ │ ├── te_in.msg
│ │ │ ├── te.msg
│ │ │ ├── th.msg
│ │ │ ├── tr.msg
│ │ │ ├── uk.msg
│ │ │ ├── vi.msg
│ │ │ ├── zh_cn.msg
│ │ │ ├── zh_hk.msg
│ │ │ ├── zh.msg
│ │ │ ├── zh_sg.msg
│ │ │ └── zh_tw.msg
│ │ ├── opt0.4
│ │ │ ├── optparse.tcl
│ │ │ └── pkgIndex.tcl
│ │ ├── package.tcl
│ │ ├── parray.tcl
│ │ ├── safe.tcl
│ │ ├── tclIndex
│ │ ├── tm.tcl
│ │ ├── tzdata
│ │ │ ├── Africa
│ │ │ │ ├── Abidjan
│ │ │ │ ├── Accra
│ │ │ │ ├── Addis_Ababa
│ │ │ │ ├── Algiers
│ │ │ │ ├── Asmara
│ │ │ │ ├── Asmera
│ │ │ │ ├── Bamako
│ │ │ │ ├── Bangui
│ │ │ │ ├── Banjul
│ │ │ │ ├── Bissau
│ │ │ │ ├── Blantyre
│ │ │ │ ├── Brazzaville
│ │ │ │ ├── Bujumbura
│ │ │ │ ├── Cairo
│ │ │ │ ├── Casablanca
│ │ │ │ ├── Ceuta
│ │ │ │ ├── Conakry
│ │ │ │ ├── Dakar
│ │ │ │ ├── Dar_es_Salaam
│ │ │ │ ├── Djibouti
│ │ │ │ ├── Douala
│ │ │ │ ├── El_Aaiun
│ │ │ │ ├── Freetown
│ │ │ │ ├── Gaborone
│ │ │ │ ├── Harare
│ │ │ │ ├── Johannesburg
│ │ │ │ ├── Juba
│ │ │ │ ├── Kampala
│ │ │ │ ├── Khartoum
│ │ │ │ ├── Kigali
│ │ │ │ ├── Kinshasa
│ │ │ │ ├── Lagos
│ │ │ │ ├── Libreville
│ │ │ │ ├── Lome
│ │ │ │ ├── Luanda
│ │ │ │ ├── Lubumbashi
│ │ │ │ ├── Lusaka
│ │ │ │ ├── Malabo
│ │ │ │ ├── Maputo
│ │ │ │ ├── Maseru
│ │ │ │ ├── Mbabane
│ │ │ │ ├── Mogadishu
│ │ │ │ ├── Monrovia
│ │ │ │ ├── Nairobi
│ │ │ │ ├── Ndjamena
│ │ │ │ ├── Niamey
│ │ │ │ ├── Nouakchott
│ │ │ │ ├── Ouagadougou
│ │ │ │ ├── Porto-Novo
│ │ │ │ ├── Sao_Tome
│ │ │ │ ├── Timbuktu
│ │ │ │ ├── Tripoli
│ │ │ │ ├── Tunis
│ │ │ │ └── Windhoek
│ │ │ ├── America
│ │ │ │ ├── Adak
│ │ │ │ ├── Anchorage
│ │ │ │ ├── Anguilla
│ │ │ │ ├── Antigua
│ │ │ │ ├── Araguaina
│ │ │ │ ├── Argentina
│ │ │ │ │ ├── Buenos_Aires
│ │ │ │ │ ├── Catamarca
│ │ │ │ │ ├── ComodRivadavia
│ │ │ │ │ ├── Cordoba
│ │ │ │ │ ├── Jujuy
│ │ │ │ │ ├── La_Rioja
│ │ │ │ │ ├── Mendoza
│ │ │ │ │ ├── Rio_Gallegos
│ │ │ │ │ ├── Salta
│ │ │ │ │ ├── San_Juan
│ │ │ │ │ ├── San_Luis
│ │ │ │ │ ├── Tucuman
│ │ │ │ │ └── Ushuaia
│ │ │ │ ├── Aruba
│ │ │ │ ├── Asuncion
│ │ │ │ ├── Atikokan
│ │ │ │ ├── Atka
│ │ │ │ ├── Bahia
│ │ │ │ ├── Bahia_Banderas
│ │ │ │ ├── Barbados
│ │ │ │ ├── Belem
│ │ │ │ ├── Belize
│ │ │ │ ├── Blanc-Sablon
│ │ │ │ ├── Boa_Vista
│ │ │ │ ├── Bogota
│ │ │ │ ├── Boise
│ │ │ │ ├── Buenos_Aires
│ │ │ │ ├── Cambridge_Bay
│ │ │ │ ├── Campo_Grande
│ │ │ │ ├── Cancun
│ │ │ │ ├── Caracas
│ │ │ │ ├── Catamarca
│ │ │ │ ├── Cayenne
│ │ │ │ ├── Cayman
│ │ │ │ ├── Chicago
│ │ │ │ ├── Chihuahua
│ │ │ │ ├── Coral_Harbour
│ │ │ │ ├── Cordoba
│ │ │ │ ├── Costa_Rica
│ │ │ │ ├── Creston
│ │ │ │ ├── Cuiaba
│ │ │ │ ├── Curacao
│ │ │ │ ├── Danmarkshavn
│ │ │ │ ├── Dawson
│ │ │ │ ├── Dawson_Creek
│ │ │ │ ├── Denver
│ │ │ │ ├── Detroit
│ │ │ │ ├── Dominica
│ │ │ │ ├── Edmonton
│ │ │ │ ├── Eirunepe
│ │ │ │ ├── El_Salvador
│ │ │ │ ├── Ensenada
│ │ │ │ ├── Fortaleza
│ │ │ │ ├── Fort_Wayne
│ │ │ │ ├── Glace_Bay
│ │ │ │ ├── Godthab
│ │ │ │ ├── Goose_Bay
│ │ │ │ ├── Grand_Turk
│ │ │ │ ├── Grenada
│ │ │ │ ├── Guadeloupe
│ │ │ │ ├── Guatemala
│ │ │ │ ├── Guayaquil
│ │ │ │ ├── Guyana
│ │ │ │ ├── Halifax
│ │ │ │ ├── Havana
│ │ │ │ ├── Hermosillo
│ │ │ │ ├── Indiana
│ │ │ │ │ ├── Indianapolis
│ │ │ │ │ ├── Knox
│ │ │ │ │ ├── Marengo
│ │ │ │ │ ├── Petersburg
│ │ │ │ │ ├── Tell_City
│ │ │ │ │ ├── Vevay
│ │ │ │ │ ├── Vincennes
│ │ │ │ │ └── Winamac
│ │ │ │ ├── Indianapolis
│ │ │ │ ├── Inuvik
│ │ │ │ ├── Iqaluit
│ │ │ │ ├── Jamaica
│ │ │ │ ├── Jujuy
│ │ │ │ ├── Juneau
│ │ │ │ ├── Kentucky
│ │ │ │ │ ├── Louisville
│ │ │ │ │ └── Monticello
│ │ │ │ ├── Knox_IN
│ │ │ │ ├── Kralendijk
│ │ │ │ ├── La_Paz
│ │ │ │ ├── Lima
│ │ │ │ ├── Los_Angeles
│ │ │ │ ├── Louisville
│ │ │ │ ├── Lower_Princes
│ │ │ │ ├── Maceio
│ │ │ │ ├── Managua
│ │ │ │ ├── Manaus
│ │ │ │ ├── Marigot
│ │ │ │ ├── Martinique
│ │ │ │ ├── Matamoros
│ │ │ │ ├── Mazatlan
│ │ │ │ ├── Mendoza
│ │ │ │ ├── Menominee
│ │ │ │ ├── Merida
│ │ │ │ ├── Metlakatla
│ │ │ │ ├── Mexico_City
│ │ │ │ ├── Miquelon
│ │ │ │ ├── Moncton
│ │ │ │ ├── Monterrey
│ │ │ │ ├── Montevideo
│ │ │ │ ├── Montreal
│ │ │ │ ├── Montserrat
│ │ │ │ ├── Nassau
│ │ │ │ ├── New_York
│ │ │ │ ├── Nipigon
│ │ │ │ ├── Nome
│ │ │ │ ├── Noronha
│ │ │ │ ├── North_Dakota
│ │ │ │ │ ├── Beulah
│ │ │ │ │ ├── Center
│ │ │ │ │ └── New_Salem
│ │ │ │ ├── Ojinaga
│ │ │ │ ├── Panama
│ │ │ │ ├── Pangnirtung
│ │ │ │ ├── Paramaribo
│ │ │ │ ├── Phoenix
│ │ │ │ ├── Port-au-Prince
│ │ │ │ ├── Porto_Acre
│ │ │ │ ├── Port_of_Spain
│ │ │ │ ├── Porto_Velho
│ │ │ │ ├── Puerto_Rico
│ │ │ │ ├── Rainy_River
│ │ │ │ ├── Rankin_Inlet
│ │ │ │ ├── Recife
│ │ │ │ ├── Regina
│ │ │ │ ├── Resolute
│ │ │ │ ├── Rio_Branco
│ │ │ │ ├── Rosario
│ │ │ │ ├── Santa_Isabel
│ │ │ │ ├── Santarem
│ │ │ │ ├── Santiago
│ │ │ │ ├── Santo_Domingo
│ │ │ │ ├── Sao_Paulo
│ │ │ │ ├── Scoresbysund
│ │ │ │ ├── Shiprock
│ │ │ │ ├── Sitka
│ │ │ │ ├── St_Barthelemy
│ │ │ │ ├── St_Johns
│ │ │ │ ├── St_Kitts
│ │ │ │ ├── St_Lucia
│ │ │ │ ├── St_Thomas
│ │ │ │ ├── St_Vincent
│ │ │ │ ├── Swift_Current
│ │ │ │ ├── Tegucigalpa
│ │ │ │ ├── Thule
│ │ │ │ ├── Thunder_Bay
│ │ │ │ ├── Tijuana
│ │ │ │ ├── Toronto
│ │ │ │ ├── Tortola
│ │ │ │ ├── Vancouver
│ │ │ │ ├── Virgin
│ │ │ │ ├── Whitehorse
│ │ │ │ ├── Winnipeg
│ │ │ │ ├── Yakutat
│ │ │ │ └── Yellowknife
│ │ │ ├── Antarctica
│ │ │ │ ├── Casey
│ │ │ │ ├── Davis
│ │ │ │ ├── DumontDUrville
│ │ │ │ ├── Macquarie
│ │ │ │ ├── Mawson
│ │ │ │ ├── McMurdo
│ │ │ │ ├── Palmer
│ │ │ │ ├── Rothera
│ │ │ │ ├── South_Pole
│ │ │ │ ├── Syowa
│ │ │ │ └── Vostok
│ │ │ ├── Arctic
│ │ │ │ └── Longyearbyen
│ │ │ ├── Asia
│ │ │ │ ├── Aden
│ │ │ │ ├── Almaty
│ │ │ │ ├── Amman
│ │ │ │ ├── Anadyr
│ │ │ │ ├── Aqtau
│ │ │ │ ├── Aqtobe
│ │ │ │ ├── Ashgabat
│ │ │ │ ├── Ashkhabad
│ │ │ │ ├── Baghdad
│ │ │ │ ├── Bahrain
│ │ │ │ ├── Baku
│ │ │ │ ├── Bangkok
│ │ │ │ ├── Beirut
│ │ │ │ ├── Bishkek
│ │ │ │ ├── Brunei
│ │ │ │ ├── Calcutta
│ │ │ │ ├── Choibalsan
│ │ │ │ ├── Chongqing
│ │ │ │ ├── Chungking
│ │ │ │ ├── Colombo
│ │ │ │ ├── Dacca
│ │ │ │ ├── Damascus
│ │ │ │ ├── Dhaka
│ │ │ │ ├── Dili
│ │ │ │ ├── Dubai
│ │ │ │ ├── Dushanbe
│ │ │ │ ├── Gaza
│ │ │ │ ├── Harbin
│ │ │ │ ├── Hebron
│ │ │ │ ├── Ho_Chi_Minh
│ │ │ │ ├── Hong_Kong
│ │ │ │ ├── Hovd
│ │ │ │ ├── Irkutsk
│ │ │ │ ├── Istanbul
│ │ │ │ ├── Jakarta
│ │ │ │ ├── Jayapura
│ │ │ │ ├── Jerusalem
│ │ │ │ ├── Kabul
│ │ │ │ ├── Kamchatka
│ │ │ │ ├── Karachi
│ │ │ │ ├── Kashgar
│ │ │ │ ├── Kathmandu
│ │ │ │ ├── Katmandu
│ │ │ │ ├── Khandyga
│ │ │ │ ├── Kolkata
│ │ │ │ ├── Krasnoyarsk
│ │ │ │ ├── Kuala_Lumpur
│ │ │ │ ├── Kuching
│ │ │ │ ├── Kuwait
│ │ │ │ ├── Macao
│ │ │ │ ├── Macau
│ │ │ │ ├── Magadan
│ │ │ │ ├── Makassar
│ │ │ │ ├── Manila
│ │ │ │ ├── Muscat
│ │ │ │ ├── Nicosia
│ │ │ │ ├── Novokuznetsk
│ │ │ │ ├── Novosibirsk
│ │ │ │ ├── Omsk
│ │ │ │ ├── Oral
│ │ │ │ ├── Phnom_Penh
│ │ │ │ ├── Pontianak
│ │ │ │ ├── Pyongyang
│ │ │ │ ├── Qatar
│ │ │ │ ├── Qyzylorda
│ │ │ │ ├── Rangoon
│ │ │ │ ├── Riyadh
│ │ │ │ ├── Saigon
│ │ │ │ ├── Sakhalin
│ │ │ │ ├── Samarkand
│ │ │ │ ├── Seoul
│ │ │ │ ├── Shanghai
│ │ │ │ ├── Singapore
│ │ │ │ ├── Taipei
│ │ │ │ ├── Tashkent
│ │ │ │ ├── Tbilisi
│ │ │ │ ├── Tehran
│ │ │ │ ├── Tel_Aviv
│ │ │ │ ├── Thimbu
│ │ │ │ ├── Thimphu
│ │ │ │ ├── Tokyo
│ │ │ │ ├── Ujung_Pandang
│ │ │ │ ├── Ulaanbaatar
│ │ │ │ ├── Ulan_Bator
│ │ │ │ ├── Urumqi
│ │ │ │ ├── Ust-Nera
│ │ │ │ ├── Vientiane
│ │ │ │ ├── Vladivostok
│ │ │ │ ├── Yakutsk
│ │ │ │ ├── Yekaterinburg
│ │ │ │ └── Yerevan
│ │ │ ├── Atlantic
│ │ │ │ ├── Azores
│ │ │ │ ├── Bermuda
│ │ │ │ ├── Canary
│ │ │ │ ├── Cape_Verde
│ │ │ │ ├── Faeroe
│ │ │ │ ├── Faroe
│ │ │ │ ├── Jan_Mayen
│ │ │ │ ├── Madeira
│ │ │ │ ├── Reykjavik
│ │ │ │ ├── South_Georgia
│ │ │ │ ├── Stanley
│ │ │ │ └── St_Helena
│ │ │ ├── Australia
│ │ │ │ ├── ACT
│ │ │ │ ├── Adelaide
│ │ │ │ ├── Brisbane
│ │ │ │ ├── Broken_Hill
│ │ │ │ ├── Canberra
│ │ │ │ ├── Currie
│ │ │ │ ├── Darwin
│ │ │ │ ├── Eucla
│ │ │ │ ├── Hobart
│ │ │ │ ├── LHI
│ │ │ │ ├── Lindeman
│ │ │ │ ├── Lord_Howe
│ │ │ │ ├── Melbourne
│ │ │ │ ├── North
│ │ │ │ ├── NSW
│ │ │ │ ├── Perth
│ │ │ │ ├── Queensland
│ │ │ │ ├── South
│ │ │ │ ├── Sydney
│ │ │ │ ├── Tasmania
│ │ │ │ ├── Victoria
│ │ │ │ ├── West
│ │ │ │ └── Yancowinna
│ │ │ ├── Brazil
│ │ │ │ ├── Acre
│ │ │ │ ├── DeNoronha
│ │ │ │ ├── East
│ │ │ │ └── West
│ │ │ ├── Canada
│ │ │ │ ├── Atlantic
│ │ │ │ ├── Central
│ │ │ │ ├── Eastern
│ │ │ │ ├── East-Saskatchewan
│ │ │ │ ├── Mountain
│ │ │ │ ├── Newfoundland
│ │ │ │ ├── Pacific
│ │ │ │ ├── Saskatchewan
│ │ │ │ └── Yukon
│ │ │ ├── CET
│ │ │ ├── Chile
│ │ │ │ ├── Continental
│ │ │ │ └── EasterIsland
│ │ │ ├── CST6CDT
│ │ │ ├── Cuba
│ │ │ ├── EET
│ │ │ ├── Egypt
│ │ │ ├── Eire
│ │ │ ├── EST
│ │ │ ├── EST5EDT
│ │ │ ├── Etc
│ │ │ │ ├── GMT
│ │ │ │ ├── GMT 0
│ │ │ │ ├── GMT-0
│ │ │ │ ├── GMT0
│ │ │ │ ├── GMT 1
│ │ │ │ ├── GMT-1
│ │ │ │ ├── GMT 10
│ │ │ │ ├── GMT-10
│ │ │ │ ├── GMT 11
│ │ │ │ ├── GMT-11
│ │ │ │ ├── GMT 12
│ │ │ │ ├── GMT-12
│ │ │ │ ├── GMT-13
│ │ │ │ ├── GMT-14
│ │ │ │ ├── GMT 2
│ │ │ │ ├── GMT-2
│ │ │ │ ├── GMT 3
│ │ │ │ ├── GMT-3
│ │ │ │ ├── GMT 4
│ │ │ │ ├── GMT-4
│ │ │ │ ├── GMT 5
│ │ │ │ ├── GMT-5
│ │ │ │ ├── GMT 6
│ │ │ │ ├── GMT-6
│ │ │ │ ├── GMT 7
│ │ │ │ ├── GMT-7
│ │ │ │ ├── GMT 8
│ │ │ │ ├── GMT-8
│ │ │ │ ├── GMT 9
│ │ │ │ ├── GMT-9
│ │ │ │ ├── Greenwich
│ │ │ │ ├── UCT
│ │ │ │ ├── Universal
│ │ │ │ ├── UTC
│ │ │ │ └── Zulu
│ │ │ ├── Europe
│ │ │ │ ├── Amsterdam
│ │ │ │ ├── Andorra
│ │ │ │ ├── Athens
│ │ │ │ ├── Belfast
│ │ │ │ ├── Belgrade
│ │ │ │ ├── Berlin
│ │ │ │ ├── Bratislava
│ │ │ │ ├── Brussels
│ │ │ │ ├── Bucharest
│ │ │ │ ├── Budapest
│ │ │ │ ├── Busingen
│ │ │ │ ├── Chisinau
│ │ │ │ ├── Copenhagen
│ │ │ │ ├── Dublin
│ │ │ │ ├── Gibraltar
│ │ │ │ ├── Guernsey
│ │ │ │ ├── Helsinki
│ │ │ │ ├── Isle_of_Man
│ │ │ │ ├── Istanbul
│ │ │ │ ├── Jersey
│ │ │ │ ├── Kaliningrad
│ │ │ │ ├── Kiev
│ │ │ │ ├── Lisbon
│ │ │ │ ├── Ljubljana
│ │ │ │ ├── London
│ │ │ │ ├── Luxembourg
│ │ │ │ ├── Madrid
│ │ │ │ ├── Malta
│ │ │ │ ├── Mariehamn
│ │ │ │ ├── Minsk
│ │ │ │ ├── Monaco
│ │ │ │ ├── Moscow
│ │ │ │ ├── Nicosia
│ │ │ │ ├── Oslo
│ │ │ │ ├── Paris
│ │ │ │ ├── Podgorica
│ │ │ │ ├── Prague
│ │ │ │ ├── Riga
│ │ │ │ ├── Rome
│ │ │ │ ├── Samara
│ │ │ │ ├── San_Marino
│ │ │ │ ├── Sarajevo
│ │ │ │ ├── Simferopol
│ │ │ │ ├── Skopje
│ │ │ │ ├── Sofia
│ │ │ │ ├── Stockholm
│ │ │ │ ├── Tallinn
│ │ │ │ ├── Tirane
│ │ │ │ ├── Tiraspol
│ │ │ │ ├── Uzhgorod
│ │ │ │ ├── Vaduz
│ │ │ │ ├── Vatican
│ │ │ │ ├── Vienna
│ │ │ │ ├── Vilnius
│ │ │ │ ├── Volgograd
│ │ │ │ ├── Warsaw
│ │ │ │ ├── Zagreb
│ │ │ │ ├── Zaporozhye
│ │ │ │ └── Zurich
│ │ │ ├── GB
│ │ │ ├── GB-Eire
│ │ │ ├── GMT
│ │ │ ├── GMT 0
│ │ │ ├── GMT-0
│ │ │ ├── GMT0
│ │ │ ├── Greenwich
│ │ │ ├── Hongkong
│ │ │ ├── HST
│ │ │ ├── Iceland
│ │ │ ├── Indian
│ │ │ │ ├── Antananarivo
│ │ │ │ ├── Chagos
│ │ │ │ ├── Christmas
│ │ │ │ ├── Cocos
│ │ │ │ ├── Comoro
│ │ │ │ ├── Kerguelen
│ │ │ │ ├── Mahe
│ │ │ │ ├── Maldives
│ │ │ │ ├── Mauritius
│ │ │ │ ├── Mayotte
│ │ │ │ └── Reunion
│ │ │ ├── Iran
│ │ │ ├── Israel
│ │ │ ├── Jamaica
│ │ │ ├── Japan
│ │ │ ├── Kwajalein
│ │ │ ├── Libya
│ │ │ ├── MET
│ │ │ ├── Mexico
│ │ │ │ ├── BajaNorte
│ │ │ │ ├── BajaSur
│ │ │ │ └── General
│ │ │ ├── MST
│ │ │ ├── MST7MDT
│ │ │ ├── Navajo
│ │ │ ├── NZ
│ │ │ ├── NZ-CHAT
│ │ │ ├── Pacific
│ │ │ │ ├── Apia
│ │ │ │ ├── Auckland
│ │ │ │ ├── Chatham
│ │ │ │ ├── Chuuk
│ │ │ │ ├── Easter
│ │ │ │ ├── Efate
│ │ │ │ ├── Enderbury
│ │ │ │ ├── Fakaofo
│ │ │ │ ├── Fiji
│ │ │ │ ├── Funafuti
│ │ │ │ ├── Galapagos
│ │ │ │ ├── Gambier
│ │ │ │ ├── Guadalcanal
│ │ │ │ ├── Guam
│ │ │ │ ├── Honolulu
│ │ │ │ ├── Johnston
│ │ │ │ ├── Kiritimati
│ │ │ │ ├── Kosrae
│ │ │ │ ├── Kwajalein
│ │ │ │ ├── Majuro
│ │ │ │ ├── Marquesas
│ │ │ │ ├── Midway
│ │ │ │ ├── Nauru
│ │ │ │ ├── Niue
│ │ │ │ ├── Norfolk
│ │ │ │ ├── Noumea
│ │ │ │ ├── Pago_Pago
│ │ │ │ ├── Palau
│ │ │ │ ├── Pitcairn
│ │ │ │ ├── Pohnpei
│ │ │ │ ├── Ponape
│ │ │ │ ├── Port_Moresby
│ │ │ │ ├── Rarotonga
│ │ │ │ ├── Saipan
│ │ │ │ ├── Samoa
│ │ │ │ ├── Tahiti
│ │ │ │ ├── Tarawa
│ │ │ │ ├── Tongatapu
│ │ │ │ ├── Truk
│ │ │ │ ├── Wake
│ │ │ │ ├── Wallis
│ │ │ │ └── Yap
│ │ │ ├── Poland
│ │ │ ├── Portugal
│ │ │ ├── PRC
│ │ │ ├── PST8PDT
│ │ │ ├── ROC
│ │ │ ├── ROK
│ │ │ ├── Singapore
│ │ │ ├── SystemV
│ │ │ │ ├── AST4
│ │ │ │ ├── AST4ADT
│ │ │ │ ├── CST6
│ │ │ │ ├── CST6CDT
│ │ │ │ ├── EST5
│ │ │ │ ├── EST5EDT
│ │ │ │ ├── HST10
│ │ │ │ ├── MST7
│ │ │ │ ├── MST7MDT
│ │ │ │ ├── PST8
│ │ │ │ ├── PST8PDT
│ │ │ │ ├── YST9
│ │ │ │ └── YST9YDT
│ │ │ ├── Turkey
│ │ │ ├── UCT
│ │ │ ├── Universal
│ │ │ ├── US
│ │ │ │ ├── Alaska
│ │ │ │ ├── Aleutian
│ │ │ │ ├── Arizona
│ │ │ │ ├── Central
│ │ │ │ ├── Eastern
│ │ │ │ ├── East-Indiana
│ │ │ │ ├── Hawaii
│ │ │ │ ├── Indiana-Starke
│ │ │ │ ├── Michigan
│ │ │ │ ├── Mountain
│ │ │ │ ├── Pacific
│ │ │ │ ├── Pacific-New
│ │ │ │ └── Samoa
│ │ │ ├── UTC
│ │ │ ├── WET
│ │ │ ├── W-SU
│ │ │ └── Zulu
│ │ └── word.tcl
│ ├── tcl85.lib
│ ├── tclConfig.sh
│ ├── tclstub85.lib
│ ├── tix8.4.3
│ │ ├── Balloon.tcl
│ │ ├── bitmaps
│ │ │ ├── act_fold.gif
│ │ │ ├── act_fold.xbm
│ │ │ ├── act_fold.xpm
│ │ │ ├── balarrow.xbm
│ │ │ ├── cbxarrow.xbm
│ │ │ ├── ck_def.xbm
│ │ │ ├── ck_off.xbm
│ │ │ ├── ck_on.xbm
│ │ │ ├── cross.xbm
│ │ │ ├── decr.xbm
│ │ │ ├── drop.xbm
│ │ │ ├── file.gif
│ │ │ ├── file.xbm
│ │ │ ├── file.xpm
│ │ │ ├── folder.gif
│ │ │ ├── folder.xbm
│ │ │ ├── folder.xpm
│ │ │ ├── harddisk.xbm
│ │ │ ├── hourglas.mask
│ │ │ ├── hourglas.xbm
│ │ │ ├── incr.xbm
│ │ │ ├── info.gif
│ │ │ ├── info.xpm
│ │ │ ├── maximize.xbm
│ │ │ ├── minimize.xbm
│ │ │ ├── minusarm.gif
│ │ │ ├── minusarm.xbm
│ │ │ ├── minusarm.xpm
│ │ │ ├── minus.gif
│ │ │ ├── minus.xbm
│ │ │ ├── minus.xpm
│ │ │ ├── mktransgif.tcl
│ │ │ ├── network.xbm
│ │ │ ├── no_entry.gif
│ │ │ ├── no_entry.xpm
│ │ │ ├── openfile.xbm
│ │ │ ├── openfold.gif
│ │ │ ├── openfold.xbm
│ │ │ ├── openfold.xpm
│ │ │ ├── plusarm.gif
│ │ │ ├── plusarm.xbm
│ │ │ ├── plusarm.xpm
│ │ │ ├── plus.gif
│ │ │ ├── plus.xbm
│ │ │ ├── plus.xpm
│ │ │ ├── resize1.xbm
│ │ │ ├── resize2.xbm
│ │ │ ├── restore.xbm
│ │ │ ├── srcfile.gif
│ │ │ ├── srcfile.xbm
│ │ │ ├── srcfile.xpm
│ │ │ ├── system.xbm
│ │ │ ├── textfile.gif
│ │ │ ├── textfile.xbm
│ │ │ ├── textfile.xpm
│ │ │ ├── tick.xbm
│ │ │ ├── warning.gif
│ │ │ └── warning.xpm
│ │ ├── BtnBox.tcl
│ │ ├── ChkList.tcl
│ │ ├── CObjView.tcl
│ │ ├── ComboBox.tcl
│ │ ├── Compat.tcl
│ │ ├── Console.tcl
│ │ ├── Control.tcl
│ │ ├── DefSchm.tcl
│ │ ├── demos
│ │ │ ├── bitmaps
│ │ │ │ ├── about.xpm
│ │ │ │ ├── bold.xbm
│ │ │ │ ├── capital.xbm
│ │ │ │ ├── centerj.xbm
│ │ │ │ ├── code.xpm
│ │ │ │ ├── combobox.xbm
│ │ │ │ ├── combobox.xpm
│ │ │ │ ├── drivea.xbm
│ │ │ │ ├── drivea.xpm
│ │ │ │ ├── exit.xpm
│ │ │ │ ├── filebox.xbm
│ │ │ │ ├── filebox.xpm
│ │ │ │ ├── harddisk.xbm
│ │ │ │ ├── harddisk.xpm
│ │ │ │ ├── italic.xbm
│ │ │ │ ├── justify.xbm
│ │ │ │ ├── leftj.xbm
│ │ │ │ ├── network.xbm
│ │ │ │ ├── network.xpm
│ │ │ │ ├── netw.xbm
│ │ │ │ ├── netw.xpm
│ │ │ │ ├── optmenu.xpm
│ │ │ │ ├── rightj.xbm
│ │ │ │ ├── select.xpm
│ │ │ │ ├── tix.gif
│ │ │ │ └── underlin.xbm
│ │ │ ├── MkChoose.tcl
│ │ │ ├── MkDirLis.tcl
│ │ │ ├── MkSample.tcl
│ │ │ ├── MkScroll.tcl
│ │ │ ├── samples
│ │ │ │ ├── AllSampl.tcl
│ │ │ │ ├── ArrowBtn.tcl
│ │ │ │ ├── Balloon.tcl
│ │ │ │ ├── BtnBox.tcl
│ │ │ │ ├── ChkList.tcl
│ │ │ │ ├── CmpImg1.tcl
│ │ │ │ ├── CmpImg2.tcl
│ │ │ │ ├── CmpImg3.tcl
│ │ │ │ ├── CmpImg4.tcl
│ │ │ │ ├── CmpImg.tcl
│ │ │ │ ├── CObjView.tcl
│ │ │ │ ├── ComboBox.tcl
│ │ │ │ ├── Control.tcl
│ │ │ │ ├── DirDlg.tcl
│ │ │ │ ├── DirList.tcl
│ │ │ │ ├── DirTree.tcl
│ │ │ │ ├── DragDrop.tcl
│ │ │ │ ├── DynTree.tcl
│ │ │ │ ├── EditGrid.tcl
│ │ │ │ ├── EFileDlg.tcl
│ │ │ │ ├── FileDlg.tcl
│ │ │ │ ├── FileEnt.tcl
│ │ │ │ ├── HList1.tcl
│ │ │ │ ├── LabEntry.tcl
│ │ │ │ ├── LabFrame.tcl
│ │ │ │ ├── ListNBK.tcl
│ │ │ │ ├── Meter.tcl
│ │ │ │ ├── NoteBook.tcl
│ │ │ │ ├── OptMenu.tcl
│ │ │ │ ├── PanedWin.tcl
│ │ │ │ ├── PopMenu.tcl
│ │ │ │ ├── Sample.tcl
│ │ │ │ ├── Select.tcl
│ │ │ │ ├── SGrid0.tcl
│ │ │ │ ├── SGrid1.tcl
│ │ │ │ ├── SHList2.tcl
│ │ │ │ ├── SHList.tcl
│ │ │ │ ├── SListBox.tcl
│ │ │ │ ├── StdBBox.tcl
│ │ │ │ ├── SText.tcl
│ │ │ │ ├── STList1.tcl
│ │ │ │ ├── STList2.tcl
│ │ │ │ ├── STList3.tcl
│ │ │ │ ├── SWindow.tcl
│ │ │ │ ├── Tree.tcl
│ │ │ │ ├── Xpm1.tcl
│ │ │ │ └── Xpm.tcl
│ │ │ ├── tclIndex
│ │ │ ├── tixwidgets.tcl
│ │ │ └── widget
│ │ ├── DialogS.tcl
│ │ ├── DirBox.tcl
│ │ ├── DirDlg.tcl
│ │ ├── DirList.tcl
│ │ ├── DirTree.tcl
│ │ ├── DragDrop.tcl
│ │ ├── DtlList.tcl
│ │ ├── EFileBox.tcl
│ │ ├── EFileDlg.tcl
│ │ ├── Event.tcl
│ │ ├── FileBox.tcl
│ │ ├── FileCbx.tcl
│ │ ├── FileDlg.tcl
│ │ ├── FileEnt.tcl
│ │ ├── FloatEnt.tcl
│ │ ├── fs.tcl
│ │ ├── Grid.tcl
│ │ ├── HListDD.tcl
│ │ ├── HList.tcl
│ │ ├── IconView.tcl
│ │ ├── Init.tcl
│ │ ├── LabEntry.tcl
│ │ ├── LabFrame.tcl
│ │ ├── LabWidg.tcl
│ │ ├── ListNBk.tcl
│ │ ├── Makefile
│ │ ├── Meter.tcl
│ │ ├── MultView.tcl
│ │ ├── NoteBook.tcl
│ │ ├── OldUtil.tcl
│ │ ├── OptMenu.tcl
│ │ ├── PanedWin.tcl
│ │ ├── pkgIndex.tcl
│ │ ├── PopMenu.tcl
│ │ ├── pref
│ │ │ ├── 10Point.fs
│ │ │ ├── 10Point.fsc
│ │ │ ├── 12Point.fs
│ │ │ ├── 12Point.fsc
│ │ │ ├── 14Point.fs
│ │ │ ├── 14Point.fsc
│ │ │ ├── Bisque.cs
│ │ │ ├── Bisque.csc
│ │ │ ├── Blue.cs
│ │ │ ├── Blue.csc
│ │ │ ├── Gray.cs
│ │ │ ├── Gray.csc
│ │ │ ├── Makefile
│ │ │ ├── Old12Pt.fs
│ │ │ ├── Old14Pt.fs
│ │ │ ├── pkgIndex.tcl
│ │ │ ├── SGIGray.cs
│ │ │ ├── SGIGray.csc
│ │ │ ├── TixGray.cs
│ │ │ ├── TixGray.csc
│ │ │ ├── tixmkpref
│ │ │ ├── TK.cs
│ │ │ ├── TK.csc
│ │ │ ├── TK.fs
│ │ │ ├── TK.fsc
│ │ │ ├── TkWin.cs
│ │ │ ├── TkWin.csc
│ │ │ ├── TkWin.fs
│ │ │ ├── TkWin.fsc
│ │ │ ├── WmDefault.cs
│ │ │ ├── WmDefault.csc
│ │ │ ├── WmDefault.fs
│ │ │ ├── WmDefault.fsc
│ │ │ ├── WmDefault.py
│ │ │ ├── WmDefault.tcl
│ │ │ └── WmDefault.txt
│ │ ├── Primitiv.tcl
│ │ ├── ResizeH.tcl
│ │ ├── Select.tcl
│ │ ├── SGrid.tcl
│ │ ├── Shell.tcl
│ │ ├── SHList.tcl
│ │ ├── SimpDlg.tcl
│ │ ├── SListBox.tcl
│ │ ├── StackWin.tcl
│ │ ├── StatBar.tcl
│ │ ├── StdBBox.tcl
│ │ ├── StdShell.tcl
│ │ ├── SText.tcl
│ │ ├── STList.tcl
│ │ ├── SWidget.tcl
│ │ ├── SWindow.tcl
│ │ ├── tix84.dll
│ │ ├── tix84.lib
│ │ ├── Tix.tcl
│ │ ├── TList.tcl
│ │ ├── Tree.tcl
│ │ ├── Utils.tcl
│ │ ├── Variable.tcl
│ │ ├── VResize.tcl
│ │ ├── VStack.tcl
│ │ ├── VTree.tcl
│ │ └── WInfo.tcl
│ ├── tk8.5
│ │ ├── bgerror.tcl
│ │ ├── button.tcl
│ │ ├── choosedir.tcl
│ │ ├── clrpick.tcl
│ │ ├── comdlg.tcl
│ │ ├── console.tcl
│ │ ├── demos
│ │ │ ├── anilabel.tcl
│ │ │ ├── aniwave.tcl
│ │ │ ├── arrow.tcl
│ │ │ ├── bind.tcl
│ │ │ ├── bitmap.tcl
│ │ │ ├── browse
│ │ │ ├── button.tcl
│ │ │ ├── check.tcl
│ │ │ ├── clrpick.tcl
│ │ │ ├── colors.tcl
│ │ │ ├── combo.tcl
│ │ │ ├── cscroll.tcl
│ │ │ ├── ctext.tcl
│ │ │ ├── dialog1.tcl
│ │ │ ├── dialog2.tcl
│ │ │ ├── en.msg
│ │ │ ├── entry1.tcl
│ │ │ ├── entry2.tcl
│ │ │ ├── entry3.tcl
│ │ │ ├── filebox.tcl
│ │ │ ├── floor.tcl
│ │ │ ├── form.tcl
│ │ │ ├── goldberg.tcl
│ │ │ ├── hello
│ │ │ ├── hscale.tcl
│ │ │ ├── icon.tcl
│ │ │ ├── image1.tcl
│ │ │ ├── image2.tcl
│ │ │ ├── images
│ │ │ │ ├── earth.gif
│ │ │ │ ├── earthris.gif
│ │ │ │ ├── face.xbm
│ │ │ │ ├── flagdown.xbm
│ │ │ │ ├── flagup.xbm
│ │ │ │ ├── gray25.xbm
│ │ │ │ ├── letters.xbm
│ │ │ │ ├── noletter.xbm
│ │ │ │ ├── pattern.xbm
│ │ │ │ ├── tcllogo.gif
│ │ │ │ └── teapot.ppm
│ │ │ ├── items.tcl
│ │ │ ├── ixset
│ │ │ ├── knightstour.tcl
│ │ │ ├── labelframe.tcl
│ │ │ ├── label.tcl
│ │ │ ├── license.terms
│ │ │ ├── mclist.tcl
│ │ │ ├── menubu.tcl
│ │ │ ├── menu.tcl
│ │ │ ├── msgbox.tcl
│ │ │ ├── nl.msg
│ │ │ ├── paned1.tcl
│ │ │ ├── paned2.tcl
│ │ │ ├── pendulum.tcl
│ │ │ ├── plot.tcl
│ │ │ ├── puzzle.tcl
│ │ │ ├── radio.tcl
│ │ │ ├── README
│ │ │ ├── rmt
│ │ │ ├── rolodex
│ │ │ ├── ruler.tcl
│ │ │ ├── sayings.tcl
│ │ │ ├── search.tcl
│ │ │ ├── spin.tcl
│ │ │ ├── square
│ │ │ ├── states.tcl
│ │ │ ├── style.tcl
│ │ │ ├── tclIndex
│ │ │ ├── tcolor
│ │ │ ├── textpeer.tcl
│ │ │ ├── text.tcl
│ │ │ ├── timer
│ │ │ ├── toolbar.tcl
│ │ │ ├── tree.tcl
│ │ │ ├── ttkbut.tcl
│ │ │ ├── ttkmenu.tcl
│ │ │ ├── ttknote.tcl
│ │ │ ├── ttkpane.tcl
│ │ │ ├── ttkprogress.tcl
│ │ │ ├── ttkscale.tcl
│ │ │ ├── twind.tcl
│ │ │ ├── unicodeout.tcl
│ │ │ ├── vscale.tcl
│ │ │ └── widget
│ │ ├── dialog.tcl
│ │ ├── entry.tcl
│ │ ├── focus.tcl
│ │ ├── images
│ │ │ ├── logo100.gif
│ │ │ ├── logo64.gif
│ │ │ ├── logo.eps
│ │ │ ├── logoLarge.gif
│ │ │ ├── logoMed.gif
│ │ │ ├── pwrdLogo100.gif
│ │ │ ├── pwrdLogo150.gif
│ │ │ ├── pwrdLogo175.gif
│ │ │ ├── pwrdLogo200.gif
│ │ │ ├── pwrdLogo75.gif
│ │ │ ├── pwrdLogo.eps
│ │ │ ├── README
│ │ │ └── tai-ku.gif
│ │ ├── license.terms
│ │ ├── listbox.tcl
│ │ ├── menu.tcl
│ │ ├── mkpsenc.tcl
│ │ ├── msgbox.tcl
│ │ ├── msgs
│ │ │ ├── cs.msg
│ │ │ ├── da.msg
│ │ │ ├── de.msg
│ │ │ ├── el.msg
│ │ │ ├── en_gb.msg
│ │ │ ├── en.msg
│ │ │ ├── eo.msg
│ │ │ ├── es.msg
│ │ │ ├── fr.msg
│ │ │ ├── hu.msg
│ │ │ ├── it.msg
│ │ │ ├── nl.msg
│ │ │ ├── pl.msg
│ │ │ ├── pt.msg
│ │ │ ├── ru.msg
│ │ │ └── sv.msg
│ │ ├── obsolete.tcl
│ │ ├── optMenu.tcl
│ │ ├── palette.tcl
│ │ ├── panedwindow.tcl
│ │ ├── pkgIndex.tcl
│ │ ├── safetk.tcl
│ │ ├── scale.tcl
│ │ ├── scrlbar.tcl
│ │ ├── spinbox.tcl
│ │ ├── tclIndex
│ │ ├── tearoff.tcl
│ │ ├── text.tcl
│ │ ├── tkfbox.tcl
│ │ ├── tk.tcl
│ │ ├── ttk
│ │ │ ├── altTheme.tcl
│ │ │ ├── aquaTheme.tcl
│ │ │ ├── button.tcl
│ │ │ ├── clamTheme.tcl
│ │ │ ├── classicTheme.tcl
│ │ │ ├── combobox.tcl
│ │ │ ├── cursors.tcl
│ │ │ ├── defaults.tcl
│ │ │ ├── entry.tcl
│ │ │ ├── fonts.tcl
│ │ │ ├── menubutton.tcl
│ │ │ ├── notebook.tcl
│ │ │ ├── panedwindow.tcl
│ │ │ ├── progress.tcl
│ │ │ ├── scale.tcl
│ │ │ ├── scrollbar.tcl
│ │ │ ├── sizegrip.tcl
│ │ │ ├── spinbox.tcl
│ │ │ ├── treeview.tcl
│ │ │ ├── ttk.tcl
│ │ │ ├── utils.tcl
│ │ │ ├── vistaTheme.tcl
│ │ │ ├── winTheme.tcl
│ │ │ └── xpTheme.tcl
│ │ ├── unsupported.tcl
│ │ └── xmfbox.tcl
│ ├── tk85.lib
│ └── tkstub85.lib
└── Tools
├── i18n
│ ├── makelocalealias.py
│ ├── msgfmt.py
│ └── pygettext.py
├── pynche
│ ├── ChipViewer.py
│ ├── ColorDB.py
│ ├── DetailsViewer.py
│ ├── html40colors.txt
│ ├── __init__.py
│ ├── ListViewer.py
│ ├── Main.py
│ ├── namedcolors.txt
│ ├── pyColorChooser.py
│ ├── pynche.pyw
│ ├── PyncheWidget.py
│ ├── README.txt
│ ├── StripViewer.py
│ ├── Switchboard.py
│ ├── TextViewer.py
│ ├── TypeinViewer.py
│ ├── webcolors.txt
│ ├── websafe.txt
│ └── X
│ ├── rgb.txt
│ └── xlicense.txt
├── Scripts
│ ├── 2to3.py
│ ├── analyze_dxp.py
│ ├── byext.py
│ ├── byteyears.py
│ ├── checkappend.py
│ ├── checkpip.py
│ ├── checkpyc.py
│ ├── classfix.py
│ ├── cleanfuture.py
│ ├── combinerefs.py
│ ├── copytime.py
│ ├── crlf.py
│ ├── cvsfiles.py
│ ├── db2pickle.py
│ ├── diff.py
│ ├── dutree.py
│ ├── eptags.py
│ ├── finddiv.py
│ ├── findlinksto.py
│ ├── findnocoding.py
│ ├── find_recursionlimit.py
│ ├── fixcid.py
│ ├── fixdiv.py
│ ├── fixheader.py
│ ├── fixnotice.py
│ ├── fixps.py
│ ├── google.py
│ ├── gprof2html.py
│ ├── h2py.py
│ ├── hotshotmain.py
│ ├── ifdef.py
│ ├── lfcr.py
│ ├── linktree.py
│ ├── lll.py
│ ├── logmerge.py
│ ├── mailerdaemon.py
│ ├── md5sum.py
│ ├── methfix.py
│ ├── mkreal.py
│ ├── ndiff.py
│ ├── nm2def.py
│ ├── objgraph.py
│ ├── parseentities.py
│ ├── patchcheck.py
│ ├── pathfix.py
│ ├── pdeps.py
│ ├── pickle2db.py
│ ├── pindent.py
│ ├── ptags.py
│ ├── pydocgui.pyw
│ ├── pysource.py
│ ├── README.txt
│ ├── redemo.py
│ ├── reindent.py
│ ├── reindent-rst.py
│ ├── rgrep.py
│ ├── serve.py
│ ├── setup.py
│ ├── suff.py
│ ├── svneol.py
│ ├── texcheck.py
│ ├── texi2html.py
│ ├── treesync.py
│ ├── untabify.py
│ ├── which.py
│ ├── win_add2path.py
│ └── xxci.py
├── versioncheck
│ ├── _checkversion.py
│ ├── checkversions.py
│ ├── pyversioncheck.py
│ └── README.txt
└── webchecker
├── README.txt
├── tktools.py
├── wcgui.py
├── wcmac.py
├── webchecker.py
├── websucker.py
└── wsgui.py
175 directories, 4172 files
根据官方安装包制作的纯净免安装文件...1、该目录可解压到任意路径,如F:\Python27。 2、需在系统环境变量PATH中,加入F:\Python27;F:\Python27\Scripts。 3、pip安装文件包,需用 python -m pip install xxxx 的形式。
【实例截图】
文件清单
└── Python27
├── DLLs
│ ├── _bsddb.pyd
│ ├── bz2.pyd
│ ├── _ctypes.pyd
│ ├── _ctypes_test.pyd
│ ├── _elementtree.pyd
│ ├── _hashlib.pyd
│ ├── _msi.pyd
│ ├── _multiprocessing.pyd
│ ├── pyc.ico
│ ├── pyexpat.pyd
│ ├── py.ico
│ ├── select.pyd
│ ├── _socket.pyd
│ ├── sqlite3.dll
│ ├── _sqlite3.pyd
│ ├── _ssl.pyd
│ ├── tcl85.dll
│ ├── tclpip85.dll
│ ├── _testcapi.pyd
│ ├── tk85.dll
│ ├── _tkinter.pyd
│ ├── unicodedata.pyd
│ └── winsound.pyd
├── Doc
│ └── python2716.chm
├── include
│ ├── abstract.h
│ ├── asdl.h
│ ├── ast.h
│ ├── bitset.h
│ ├── boolobject.h
│ ├── bufferobject.h
│ ├── bytearrayobject.h
│ ├── bytes_methods.h
│ ├── bytesobject.h
│ ├── cellobject.h
│ ├── ceval.h
│ ├── classobject.h
│ ├── cobject.h
│ ├── codecs.h
│ ├── code.h
│ ├── compile.h
│ ├── complexobject.h
│ ├── cStringIO.h
│ ├── datetime.h
│ ├── descrobject.h
│ ├── dictobject.h
│ ├── dtoa.h
│ ├── enumobject.h
│ ├── errcode.h
│ ├── eval.h
│ ├── fileobject.h
│ ├── floatobject.h
│ ├── frameobject.h
│ ├── funcobject.h
│ ├── genobject.h
│ ├── graminit.h
│ ├── grammar.h
│ ├── import.h
│ ├── intobject.h
│ ├── intrcheck.h
│ ├── iterobject.h
│ ├── listobject.h
│ ├── longintrepr.h
│ ├── longobject.h
│ ├── marshal.h
│ ├── memoryobject.h
│ ├── metagrammar.h
│ ├── methodobject.h
│ ├── modsupport.h
│ ├── moduleobject.h
│ ├── node.h
│ ├── object.h
│ ├── objimpl.h
│ ├── opcode.h
│ ├── osdefs.h
│ ├── parsetok.h
│ ├── patchlevel.h
│ ├── pgen.h
│ ├── pgenheaders.h
│ ├── pyarena.h
│ ├── pycapsule.h
│ ├── pyconfig.h
│ ├── pyctype.h
│ ├── py_curses.h
│ ├── pydebug.h
│ ├── pyerrors.h
│ ├── pyexpat.h
│ ├── pyfpe.h
│ ├── pygetopt.h
│ ├── pymacconfig.h
│ ├── pymactoolbox.h
│ ├── pymath.h
│ ├── pymem.h
│ ├── pyport.h
│ ├── pystate.h
│ ├── pystrcmp.h
│ ├── pystrtod.h
│ ├── Python-ast.h
│ ├── Python.h
│ ├── pythonrun.h
│ ├── pythread.h
│ ├── rangeobject.h
│ ├── setobject.h
│ ├── sliceobject.h
│ ├── stringobject.h
│ ├── structmember.h
│ ├── structseq.h
│ ├── symtable.h
│ ├── sysmodule.h
│ ├── timefuncs.h
│ ├── token.h
│ ├── traceback.h
│ ├── tupleobject.h
│ ├── ucnhash.h
│ ├── unicodeobject.h
│ ├── warnings.h
│ └── weakrefobject.h
├── Lib
│ ├── _abcoll.py
│ ├── _abcoll.pyc
│ ├── abc.py
│ ├── abc.pyc
│ ├── aifc.py
│ ├── antigravity.py
│ ├── anydbm.py
│ ├── argparse.py
│ ├── argparse.pyc
│ ├── ast.py
│ ├── asynchat.py
│ ├── asyncore.py
│ ├── atexit.py
│ ├── atexit.pyc
│ ├── audiodev.py
│ ├── base64.py
│ ├── base64.pyc
│ ├── BaseHTTPServer.py
│ ├── Bastion.py
│ ├── bdb.py
│ ├── binhex.py
│ ├── bisect.py
│ ├── bisect.pyc
│ ├── bsddb
│ │ ├── dbobj.py
│ │ ├── db.py
│ │ ├── dbrecio.py
│ │ ├── dbshelve.py
│ │ ├── dbtables.py
│ │ ├── dbutils.py
│ │ ├── __init__.py
│ │ └── test
│ │ ├── __init__.py
│ │ ├── test_all.py
│ │ ├── test_associate.py
│ │ ├── test_basics.py
│ │ ├── test_compare.py
│ │ ├── test_compat.py
│ │ ├── test_cursor_pget_bug.py
│ │ ├── test_dbenv.py
│ │ ├── test_dbobj.py
│ │ ├── test_db.py
│ │ ├── test_dbshelve.py
│ │ ├── test_dbtables.py
│ │ ├── test_distributed_transactions.py
│ │ ├── test_early_close.py
│ │ ├── test_fileid.py
│ │ ├── test_get_none.py
│ │ ├── test_join.py
│ │ ├── test_lock.py
│ │ ├── test_misc.py
│ │ ├── test_pickle.py
│ │ ├── test_queue.py
│ │ ├── test_recno.py
│ │ ├── test_replication.py
│ │ ├── test_sequence.py
│ │ └── test_thread.py
│ ├── calendar.py
│ ├── calendar.pyc
│ ├── CGIHTTPServer.py
│ ├── cgi.py
│ ├── cgi.pyc
│ ├── cgitb.py
│ ├── chunk.py
│ ├── cmd.py
│ ├── codecs.py
│ ├── codecs.pyc
│ ├── codeop.py
│ ├── code.py
│ ├── collections.py
│ ├── collections.pyc
│ ├── colorsys.py
│ ├── commands.py
│ ├── compileall.py
│ ├── compileall.pyc
│ ├── compiler
│ │ ├── ast.py
│ │ ├── consts.py
│ │ ├── future.py
│ │ ├── __init__.py
│ │ ├── misc.py
│ │ ├── pyassem.py
│ │ ├── pycodegen.py
│ │ ├── symbols.py
│ │ ├── syntax.py
│ │ ├── transformer.py
│ │ └── visitor.py
│ ├── ConfigParser.py
│ ├── ConfigParser.pyc
│ ├── contextlib.py
│ ├── contextlib.pyc
│ ├── cookielib.py
│ ├── cookielib.pyc
│ ├── Cookie.py
│ ├── Cookie.pyc
│ ├── copy.py
│ ├── copy.pyc
│ ├── copy_reg.py
│ ├── copy_reg.pyc
│ ├── cProfile.py
│ ├── csv.py
│ ├── csv.pyc
│ ├── ctypes
│ │ ├── _endian.py
│ │ ├── _endian.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── macholib
│ │ │ ├── dyld.py
│ │ │ ├── dylib.py
│ │ │ ├── framework.py
│ │ │ └── __init__.py
│ │ ├── test
│ │ │ ├── __init__.py
│ │ │ ├── runtests.py
│ │ │ ├── test_anon.py
│ │ │ ├── test_array_in_pointer.py
│ │ │ ├── test_arrays.py
│ │ │ ├── test_as_parameter.py
│ │ │ ├── test_bitfields.py
│ │ │ ├── test_buffers.py
│ │ │ ├── test_byteswap.py
│ │ │ ├── test_callbacks.py
│ │ │ ├── test_cast.py
│ │ │ ├── test_cfuncs.py
│ │ │ ├── test_checkretval.py
│ │ │ ├── test_delattr.py
│ │ │ ├── test_errno.py
│ │ │ ├── test_find.py
│ │ │ ├── test_frombuffer.py
│ │ │ ├── test_funcptr.py
│ │ │ ├── test_functions.py
│ │ │ ├── test_incomplete.py
│ │ │ ├── test_init.py
│ │ │ ├── test_internals.py
│ │ │ ├── test_keeprefs.py
│ │ │ ├── test_libc.py
│ │ │ ├── test_loading.py
│ │ │ ├── test_macholib.py
│ │ │ ├── test_memfunctions.py
│ │ │ ├── test_numbers.py
│ │ │ ├── test_objects.py
│ │ │ ├── test_parameters.py
│ │ │ ├── test_pep3118.py
│ │ │ ├── test_pickling.py
│ │ │ ├── test_pointers.py
│ │ │ ├── test_prototypes.py
│ │ │ ├── test_python_api.py
│ │ │ ├── test_random_things.py
│ │ │ ├── test_refcounts.py
│ │ │ ├── test_repr.py
│ │ │ ├── test_returnfuncptrs.py
│ │ │ ├── test_simplesubclasses.py
│ │ │ ├── test_sizes.py
│ │ │ ├── test_slicing.py
│ │ │ ├── test_stringptr.py
│ │ │ ├── test_strings.py
│ │ │ ├── test_struct_fields.py
│ │ │ ├── test_structures.py
│ │ │ ├── test_unaligned_structures.py
│ │ │ ├── test_unicode.py
│ │ │ ├── test_values.py
│ │ │ ├── test_varsize_struct.py
│ │ │ ├── test_win32.py
│ │ │ └── test_wintypes.py
│ │ ├── util.py
│ │ ├── wintypes.py
│ │ └── wintypes.pyc
│ ├── curses
│ │ ├── ascii.py
│ │ ├── has_key.py
│ │ ├── __init__.py
│ │ ├── panel.py
│ │ ├── textpad.py
│ │ └── wrapper.py
│ ├── dbhash.py
│ ├── decimal.py
│ ├── difflib.py
│ ├── dircache.py
│ ├── dis.py
│ ├── dis.pyc
│ ├── distutils
│ │ ├── archive_util.py
│ │ ├── archive_util.pyc
│ │ ├── bcppcompiler.py
│ │ ├── ccompiler.py
│ │ ├── cmd.py
│ │ ├── cmd.pyc
│ │ ├── command
│ │ │ ├── bdist_dumb.py
│ │ │ ├── bdist_msi.py
│ │ │ ├── bdist.py
│ │ │ ├── bdist_rpm.py
│ │ │ ├── bdist_wininst.py
│ │ │ ├── build_clib.py
│ │ │ ├── build_ext.py
│ │ │ ├── build.py
│ │ │ ├── build.pyc
│ │ │ ├── build_py.py
│ │ │ ├── build_scripts.py
│ │ │ ├── check.py
│ │ │ ├── clean.py
│ │ │ ├── config.py
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── install_data.py
│ │ │ ├── install_egg_info.py
│ │ │ ├── install_headers.py
│ │ │ ├── install_lib.py
│ │ │ ├── install.py
│ │ │ ├── install.pyc
│ │ │ ├── install_scripts.py
│ │ │ ├── register.py
│ │ │ ├── sdist.py
│ │ │ ├── upload.py
│ │ │ ├── wininst-6.0.exe
│ │ │ ├── wininst-7.1.exe
│ │ │ ├── wininst-8.0.exe
│ │ │ ├── wininst-9.0-amd64.exe
│ │ │ └── wininst-9.0.exe
│ │ ├── config.py
│ │ ├── config.pyc
│ │ ├── core.py
│ │ ├── core.pyc
│ │ ├── cygwinccompiler.py
│ │ ├── debug.py
│ │ ├── debug.pyc
│ │ ├── dep_util.py
│ │ ├── dep_util.pyc
│ │ ├── dir_util.py
│ │ ├── dir_util.pyc
│ │ ├── dist.py
│ │ ├── dist.pyc
│ │ ├── emxccompiler.py
│ │ ├── errors.py
│ │ ├── errors.pyc
│ │ ├── extension.py
│ │ ├── extension.pyc
│ │ ├── fancy_getopt.py
│ │ ├── fancy_getopt.pyc
│ │ ├── filelist.py
│ │ ├── file_util.py
│ │ ├── file_util.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── log.py
│ │ ├── log.pyc
│ │ ├── msvc9compiler.py
│ │ ├── msvccompiler.py
│ │ ├── spawn.py
│ │ ├── spawn.pyc
│ │ ├── sysconfig.py
│ │ ├── sysconfig.pyc
│ │ ├── tests
│ │ │ ├── __init__.py
│ │ │ ├── Setup.sample
│ │ │ ├── setuptools_build_ext.py
│ │ │ ├── setuptools_extension.py
│ │ │ ├── support.py
│ │ │ ├── test_archive_util.py
│ │ │ ├── test_bdist_dumb.py
│ │ │ ├── test_bdist_msi.py
│ │ │ ├── test_bdist.py
│ │ │ ├── test_bdist_rpm.py
│ │ │ ├── test_bdist_wininst.py
│ │ │ ├── test_build_clib.py
│ │ │ ├── test_build_ext.py
│ │ │ ├── test_build.py
│ │ │ ├── test_build_py.py
│ │ │ ├── test_build_scripts.py
│ │ │ ├── test_ccompiler.py
│ │ │ ├── test_check.py
│ │ │ ├── test_clean.py
│ │ │ ├── test_cmd.py
│ │ │ ├── test_config_cmd.py
│ │ │ ├── test_config.py
│ │ │ ├── test_core.py
│ │ │ ├── test_dep_util.py
│ │ │ ├── test_dir_util.py
│ │ │ ├── test_dist.py
│ │ │ ├── test_filelist.py
│ │ │ ├── test_file_util.py
│ │ │ ├── test_install_data.py
│ │ │ ├── test_install_headers.py
│ │ │ ├── test_install_lib.py
│ │ │ ├── test_install.py
│ │ │ ├── test_install_scripts.py
│ │ │ ├── test_msvc9compiler.py
│ │ │ ├── test_register.py
│ │ │ ├── test_sdist.py
│ │ │ ├── test_spawn.py
│ │ │ ├── test_sysconfig.py
│ │ │ ├── test_text_file.py
│ │ │ ├── test_unixccompiler.py
│ │ │ ├── test_upload.py
│ │ │ ├── test_util.py
│ │ │ ├── test_versionpredicate.py
│ │ │ └── test_version.py
│ │ ├── text_file.py
│ │ ├── unixccompiler.py
│ │ ├── util.py
│ │ ├── util.pyc
│ │ ├── versionpredicate.py
│ │ └── version.py
│ ├── doctest.py
│ ├── DocXMLRPCServer.py
│ ├── dumbdbm.py
│ ├── dummy_threading.py
│ ├── dummy_thread.py
│ │ ├── base64mime.py
│ │ ├── base64mime.pyc
│ │ ├── charset.py
│ │ ├── charset.pyc
│ │ ├── encoders.py
│ │ ├── encoders.pyc
│ │ ├── errors.py
│ │ ├── errors.pyc
│ │ ├── feedparser.py
│ │ ├── feedparser.pyc
│ │ ├── generator.py
│ │ ├── header.py
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── iterators.py
│ │ ├── iterators.pyc
│ │ ├── message.py
│ │ ├── message.pyc
│ │ ├── mime
│ │ │ ├── application.py
│ │ │ ├── audio.py
│ │ │ ├── base.py
│ │ │ ├── image.py
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── message.py
│ │ │ ├── multipart.py
│ │ │ ├── nonmultipart.py
│ │ │ └── text.py
│ │ ├── _parseaddr.py
│ │ ├── _parseaddr.pyc
│ │ ├── parser.py
│ │ ├── parser.pyc
│ │ ├── quoprimime.py
│ │ ├── quoprimime.pyc
│ │ ├── test
│ │ │ ├── data
│ │ │ │ ├── audiotest.au
│ │ │ │ ├── msg_01.txt
│ │ │ │ ├── msg_02.txt
│ │ │ │ ├── msg_03.txt
│ │ │ │ ├── msg_04.txt
│ │ │ │ ├── msg_05.txt
│ │ │ │ ├── msg_06.txt
│ │ │ │ ├── msg_07.txt
│ │ │ │ ├── msg_08.txt
│ │ │ │ ├── msg_09.txt
│ │ │ │ ├── msg_10.txt
│ │ │ │ ├── msg_11.txt
│ │ │ │ ├── msg_12a.txt
│ │ │ │ ├── msg_12.txt
│ │ │ │ ├── msg_13.txt
│ │ │ │ ├── msg_14.txt
│ │ │ │ ├── msg_15.txt
│ │ │ │ ├── msg_16.txt
│ │ │ │ ├── msg_17.txt
│ │ │ │ ├── msg_18.txt
│ │ │ │ ├── msg_19.txt
│ │ │ │ ├── msg_20.txt
│ │ │ │ ├── msg_21.txt
│ │ │ │ ├── msg_22.txt
│ │ │ │ ├── msg_23.txt
│ │ │ │ ├── msg_24.txt
│ │ │ │ ├── msg_25.txt
│ │ │ │ ├── msg_26.txt
│ │ │ │ ├── msg_27.txt
│ │ │ │ ├── msg_28.txt
│ │ │ │ ├── msg_29.txt
│ │ │ │ ├── msg_30.txt
│ │ │ │ ├── msg_31.txt
│ │ │ │ ├── msg_32.txt
│ │ │ │ ├── msg_33.txt
│ │ │ │ ├── msg_34.txt
│ │ │ │ ├── msg_35.txt
│ │ │ │ ├── msg_36.txt
│ │ │ │ ├── msg_37.txt
│ │ │ │ ├── msg_38.txt
│ │ │ │ ├── msg_39.txt
│ │ │ │ ├── msg_40.txt
│ │ │ │ ├── msg_41.txt
│ │ │ │ ├── msg_42.txt
│ │ │ │ ├── msg_43.txt
│ │ │ │ ├── msg_44.txt
│ │ │ │ ├── msg_45.txt
│ │ │ │ ├── msg_46.txt
│ │ │ │ └── PyBanner048.gif
│ │ │ ├── __init__.py
│ │ │ ├── test_email_codecs.py
│ │ │ ├── test_email_codecs_renamed.py
│ │ │ ├── test_email.py
│ │ │ ├── test_email_renamed.py
│ │ │ └── test_email_torture.py
│ │ ├── utils.py
│ │ └── utils.pyc
│ ├── encodings
│ │ ├── aliases.py
│ │ ├── aliases.pyc
│ │ ├── ascii.py
│ │ ├── ascii.pyc
│ │ ├── base64_codec.py
│ │ ├── big5hkscs.py
│ │ ├── big5.py
│ │ ├── bz2_codec.py
│ │ ├── charmap.py
│ │ ├── cp037.py
│ │ ├── cp1006.py
│ │ ├── cp1026.py
│ │ ├── cp1140.py
│ │ ├── cp1250.py
│ │ ├── cp1251.py
│ │ ├── cp1252.py
│ │ ├── cp1253.py
│ │ ├── cp1254.py
│ │ ├── cp1255.py
│ │ ├── cp1256.py
│ │ ├── cp1257.py
│ │ ├── cp1258.py
│ │ ├── cp424.py
│ │ ├── cp437.py
│ │ ├── cp500.py
│ │ ├── cp720.py
│ │ ├── cp737.py
│ │ ├── cp775.py
│ │ ├── cp850.py
│ │ ├── cp852.py
│ │ ├── cp855.py
│ │ ├── cp856.py
│ │ ├── cp857.py
│ │ ├── cp858.py
│ │ ├── cp860.py
│ │ ├── cp861.py
│ │ ├── cp862.py
│ │ ├── cp863.py
│ │ ├── cp864.py
│ │ ├── cp865.py
│ │ ├── cp866.py
│ │ ├── cp869.py
│ │ ├── cp874.py
│ │ ├── cp875.py
│ │ ├── cp932.py
│ │ ├── cp949.py
│ │ ├── cp950.py
│ │ ├── euc_jis_2004.py
│ │ ├── euc_jisx0213.py
│ │ ├── euc_jp.py
│ │ ├── euc_kr.py
│ │ ├── gb18030.py
│ │ ├── gb2312.py
│ │ ├── gbk.py
│ │ ├── gbk.pyc
│ │ ├── hex_codec.py
│ │ ├── hp_roman8.py
│ │ ├── hz.py
│ │ ├── idna.py
│ │ ├── idna.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── iso2022_jp_1.py
│ │ ├── iso2022_jp_2004.py
│ │ ├── iso2022_jp_2.py
│ │ ├── iso2022_jp_3.py
│ │ ├── iso2022_jp_ext.py
│ │ ├── iso2022_jp.py
│ │ ├── iso2022_kr.py
│ │ ├── iso8859_10.py
│ │ ├── iso8859_11.py
│ │ ├── iso8859_13.py
│ │ ├── iso8859_14.py
│ │ ├── iso8859_15.py
│ │ ├── iso8859_16.py
│ │ ├── iso8859_1.py
│ │ ├── iso8859_2.py
│ │ ├── iso8859_3.py
│ │ ├── iso8859_4.py
│ │ ├── iso8859_5.py
│ │ ├── iso8859_6.py
│ │ ├── iso8859_7.py
│ │ ├── iso8859_8.py
│ │ ├── iso8859_9.py
│ │ ├── johab.py
│ │ ├── koi8_r.py
│ │ ├── koi8_u.py
│ │ ├── latin_1.py
│ │ ├── latin_1.pyc
│ │ ├── mac_arabic.py
│ │ ├── mac_centeuro.py
│ │ ├── mac_croatian.py
│ │ ├── mac_cyrillic.py
│ │ ├── mac_farsi.py
│ │ ├── mac_greek.py
│ │ ├── mac_iceland.py
│ │ ├── mac_latin2.py
│ │ ├── mac_romanian.py
│ │ ├── mac_roman.py
│ │ ├── mac_turkish.py
│ │ ├── mbcs.py
│ │ ├── mbcs.pyc
│ │ ├── palmos.py
│ │ ├── ptcp154.py
│ │ ├── punycode.py
│ │ ├── quopri_codec.py
│ │ ├── raw_unicode_escape.py
│ │ ├── rot_13.py
│ │ ├── shift_jis_2004.py
│ │ ├── shift_jis.py
│ │ ├── shift_jisx0213.py
│ │ ├── string_escape.py
│ │ ├── tis_620.py
│ │ ├── undefined.py
│ │ ├── unicode_escape.py
│ │ ├── unicode_internal.py
│ │ ├── utf_16_be.py
│ │ ├── utf_16_be.pyc
│ │ ├── utf_16_le.py
│ │ ├── utf_16_le.pyc
│ │ ├── utf_16.py
│ │ ├── utf_32_be.py
│ │ ├── utf_32_be.pyc
│ │ ├── utf_32_le.py
│ │ ├── utf_32.py
│ │ ├── utf_7.py
│ │ ├── utf_8.py
│ │ ├── utf_8.pyc
│ │ ├── utf_8_sig.py
│ │ ├── uu_codec.py
│ │ └── zlib_codec.py
│ ├── ensurepip
│ │ ├── _bundled
│ │ │ ├── pip-18.1-py2.py3-none-any.whl
│ │ │ └── setuptools-40.6.2-py2.py3-none-any.whl
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── __main__.py
│ │ └── _uninstall.py
│ ├── filecmp.py
│ ├── fileinput.py
│ ├── fnmatch.py
│ ├── fnmatch.pyc
│ ├── formatter.py
│ ├── fpformat.py
│ ├── fractions.py
│ ├── ftplib.py
│ ├── functools.py
│ ├── functools.pyc
│ ├── __future__.py
│ ├── __future__.pyc
│ ├── genericpath.py
│ ├── genericpath.pyc
│ ├── getopt.py
│ ├── getopt.pyc
│ ├── getpass.py
│ ├── getpass.pyc
│ ├── gettext.py
│ ├── gettext.pyc
│ ├── glob.py
│ ├── glob.pyc
│ ├── gzip.py
│ ├── gzip.pyc
│ ├── hashlib.py
│ ├── hashlib.pyc
│ ├── heapq.py
│ ├── heapq.pyc
│ ├── hmac.py
│ ├── hmac.pyc
│ ├── hotshot
│ │ ├── __init__.py
│ │ ├── log.py
│ │ ├── stats.py
│ │ └── stones.py
│ ├── htmlentitydefs.py
│ ├── htmlentitydefs.pyc
│ ├── htmllib.py
│ ├── HTMLParser.py
│ ├── HTMLParser.pyc
│ ├── httplib.py
│ ├── httplib.pyc
│ ├── idlelib
│ │ ├── aboutDialog.py
│ │ ├── AutoComplete.py
│ │ ├── AutoCompleteWindow.py
│ │ ├── AutoExpand.py
│ │ ├── Bindings.py
│ │ ├── CallTips.py
│ │ ├── CallTipWindow.py
│ │ ├── ClassBrowser.py
│ │ ├── CodeContext.py
│ │ ├── ColorDelegator.py
│ │ ├── configDialog.py
│ │ ├── config-extensions.def
│ │ ├── configHandler.py
│ │ ├── configHelpSourceEdit.py
│ │ ├── config-highlight.def
│ │ ├── config-keys.def
│ │ ├── config-main.def
│ │ ├── configSectionNameDialog.py
│ │ ├── CREDITS.txt
│ │ ├── Debugger.py
│ │ ├── Delegator.py
│ │ ├── dynOptionMenuWidget.py
│ │ ├── EditorWindow.py
│ │ ├── extend.txt
│ │ ├── FileList.py
│ │ ├── FormatParagraph.py
│ │ ├── GrepDialog.py
│ │ ├── help.html
│ │ ├── help.py
│ │ ├── help.txt
│ │ ├── HISTORY.txt
│ │ ├── HyperParser.py
│ │ ├── Icons
│ │ │ ├── folder.gif
│ │ │ ├── idle_16.gif
│ │ │ ├── idle_32.gif
│ │ │ ├── idle_48.gif
│ │ │ ├── idle.icns
│ │ │ ├── idle.ico
│ │ │ ├── minusnode.gif
│ │ │ ├── openfolder.gif
│ │ │ ├── plusnode.gif
│ │ │ ├── python.gif
│ │ │ └── tk.gif
│ │ ├── idle.bat
│ │ ├── IdleHistory.py
│ │ ├── idle.py
│ │ ├── idle.pyw
│ │ ├── idle_test
│ │ │ ├── htest.py
│ │ │ ├── __init__.py
│ │ │ ├── mock_idle.py
│ │ │ ├── mock_tk.py
│ │ │ ├── README.txt
│ │ │ ├── test_autocomplete.py
│ │ │ ├── test_autoexpand.py
│ │ │ ├── test_calltips.py
│ │ │ ├── test_configdialog.py
│ │ │ ├── test_config_name.py
│ │ │ ├── test_delegator.py
│ │ │ ├── test_editmenu.py
│ │ │ ├── test_formatparagraph.py
│ │ │ ├── test_grep.py
│ │ │ ├── test_helpabout.py
│ │ │ ├── test_hyperparser.py
│ │ │ ├── test_idlehistory.py
│ │ │ ├── test_io.py
│ │ │ ├── test_parenmatch.py
│ │ │ ├── test_pathbrowser.py
│ │ │ ├── test_rstrip.py
│ │ │ ├── test_searchdialogbase.py
│ │ │ ├── test_searchengine.py
│ │ │ ├── test_text.py
│ │ │ ├── test_textview.py
│ │ │ ├── test_warning.py
│ │ │ └── test_widgetredir.py
│ │ ├── idlever.py
│ │ ├── __init__.py
│ │ ├── IOBinding.py
│ │ ├── keybindingDialog.py
│ │ ├── macosxSupport.py
│ │ ├── MultiCall.py
│ │ ├── MultiStatusBar.py
│ │ ├── NEWS.txt
│ │ ├── ObjectBrowser.py
│ │ ├── OutputWindow.py
│ │ ├── ParenMatch.py
│ │ ├── PathBrowser.py
│ │ ├── Percolator.py
│ │ ├── PyParse.py
│ │ ├── PyShell.py
│ │ ├── README.txt
│ │ ├── RemoteDebugger.py
│ │ ├── RemoteObjectBrowser.py
│ │ ├── ReplaceDialog.py
│ │ ├── rpc.py
│ │ ├── RstripExtension.py
│ │ ├── run.py
│ │ ├── ScriptBinding.py
│ │ ├── ScrolledList.py
│ │ ├── SearchDialogBase.py
│ │ ├── SearchDialog.py
│ │ ├── SearchEngine.py
│ │ ├── StackViewer.py
│ │ ├── tabbedpages.py
│ │ ├── textView.py
│ │ ├── TODO.txt
│ │ ├── ToolTip.py
│ │ ├── TreeWidget.py
│ │ ├── UndoDelegator.py
│ │ ├── WidgetRedirector.py
│ │ ├── WindowList.py
│ │ └── ZoomHeight.py
│ ├── ihooks.py
│ ├── imaplib.py
│ ├── imghdr.py
│ ├── importlib
│ │ ├── __init__.py
│ │ └── __init__.pyc
│ ├── imputil.py
│ ├── inspect.py
│ ├── inspect.pyc
│ ├── io.py
│ ├── io.pyc
│ ├── json
│ │ ├── decoder.py
│ │ ├── decoder.pyc
│ │ ├── encoder.py
│ │ ├── encoder.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── scanner.py
│ │ ├── scanner.pyc
│ │ ├── tests
│ │ │ ├── __init__.py
│ │ │ ├── test_check_circular.py
│ │ │ ├── test_decode.py
│ │ │ ├── test_default.py
│ │ │ ├── test_dump.py
│ │ │ ├── test_encode_basestring_ascii.py
│ │ │ ├── test_fail.py
│ │ │ ├── test_float.py
│ │ │ ├── test_indent.py
│ │ │ ├── test_pass1.py
│ │ │ ├── test_pass2.py
│ │ │ ├── test_pass3.py
│ │ │ ├── test_recursion.py
│ │ │ ├── test_scanstring.py
│ │ │ ├── test_separators.py
│ │ │ ├── test_speedups.py
│ │ │ ├── test_tool.py
│ │ │ └── test_unicode.py
│ │ └── tool.py
│ ├── keyword.py
│ ├── keyword.pyc
│ ├── lib2to3
│ │ ├── btm_matcher.py
│ │ ├── btm_utils.py
│ │ ├── fixer_base.py
│ │ ├── fixer_util.py
│ │ ├── fixes
│ │ │ ├── fix_apply.py
│ │ │ ├── fix_asserts.py
│ │ │ ├── fix_basestring.py
│ │ │ ├── fix_buffer.py
│ │ │ ├── fix_dict.py
│ │ │ ├── fix_except.py
│ │ │ ├── fix_execfile.py
│ │ │ ├── fix_exec.py
│ │ │ ├── fix_exitfunc.py
│ │ │ ├── fix_filter.py
│ │ │ ├── fix_funcattrs.py
│ │ │ ├── fix_future.py
│ │ │ ├── fix_getcwdu.py
│ │ │ ├── fix_has_key.py
│ │ │ ├── fix_idioms.py
│ │ │ ├── fix_import.py
│ │ │ ├── fix_imports2.py
│ │ │ ├── fix_imports.py
│ │ │ ├── fix_input.py
│ │ │ ├── fix_intern.py
│ │ │ ├── fix_isinstance.py
│ │ │ ├── fix_itertools_imports.py
│ │ │ ├── fix_itertools.py
│ │ │ ├── fix_long.py
│ │ │ ├── fix_map.py
│ │ │ ├── fix_metaclass.py
│ │ │ ├── fix_methodattrs.py
│ │ │ ├── fix_ne.py
│ │ │ ├── fix_next.py
│ │ │ ├── fix_nonzero.py
│ │ │ ├── fix_numliterals.py
│ │ │ ├── fix_operator.py
│ │ │ ├── fix_paren.py
│ │ │ ├── fix_print.py
│ │ │ ├── fix_raise.py
│ │ │ ├── fix_raw_input.py
│ │ │ ├── fix_reduce.py
│ │ │ ├── fix_renames.py
│ │ │ ├── fix_repr.py
│ │ │ ├── fix_set_literal.py
│ │ │ ├── fix_standarderror.py
│ │ │ ├── fix_sys_exc.py
│ │ │ ├── fix_throw.py
│ │ │ ├── fix_tuple_params.py
│ │ │ ├── fix_types.py
│ │ │ ├── fix_unicode.py
│ │ │ ├── fix_urllib.py
│ │ │ ├── fix_ws_comma.py
│ │ │ ├── fix_xrange.py
│ │ │ ├── fix_xreadlines.py
│ │ │ ├── fix_zip.py
│ │ │ └── __init__.py
│ │ ├── Grammar.txt
│ │ ├── __init__.py
│ │ ├── __main__.py
│ │ ├── main.py
│ │ ├── patcomp.py
│ │ ├── PatternGrammar.txt
│ │ ├── pgen2
│ │ │ ├── conv.py
│ │ │ ├── driver.py
│ │ │ ├── grammar.py
│ │ │ ├── __init__.py
│ │ │ ├── literals.py
│ │ │ ├── parse.py
│ │ │ ├── pgen.py
│ │ │ ├── tokenize.py
│ │ │ └── token.py
│ │ ├── pygram.py
│ │ ├── pytree.py
│ │ ├── refactor.py
│ │ └── tests
│ │ ├── data
│ │ │ ├── bom.py
│ │ │ ├── crlf.py
│ │ │ ├── different_encoding.py
│ │ │ ├── false_encoding.py
│ │ │ ├── fixers
│ │ │ │ ├── bad_order.py
│ │ │ │ ├── myfixes
│ │ │ │ │ ├── fix_explicit.py
│ │ │ │ │ ├── fix_first.py
│ │ │ │ │ ├── fix_last.py
│ │ │ │ │ ├── fix_parrot.py
│ │ │ │ │ ├── fix_preorder.py
│ │ │ │ │ └── __init__.py
│ │ │ │ ├── no_fixer_cls.py
│ │ │ │ └── parrot_example.py
│ │ │ ├── infinite_recursion.py
│ │ │ ├── py2_test_grammar.py
│ │ │ └── py3_test_grammar.py
│ │ ├── __init__.py
│ │ ├── pytree_idempotency.py
│ │ ├── support.py
│ │ ├── test_all_fixers.py
│ │ ├── test_fixers.py
│ │ ├── test_main.py
│ │ ├── test_parser.py
│ │ ├── test_pytree.py
│ │ ├── test_refactor.py
│ │ └── test_util.py
│ ├── lib-tk
│ │ ├── Canvas.py
│ │ ├── Dialog.py
│ │ ├── FileDialog.py
│ │ ├── FixTk.py
│ │ ├── ScrolledText.py
│ │ ├── SimpleDialog.py
│ │ ├── test
│ │ │ ├── runtktests.py
│ │ │ ├── test_tkinter
│ │ │ │ ├── __init__.py
│ │ │ │ ├── test_font.py
│ │ │ │ ├── test_geometry_managers.py
│ │ │ │ ├── test_images.py
│ │ │ │ ├── test_loadtk.py
│ │ │ │ ├── test_misc.py
│ │ │ │ ├── test_text.py
│ │ │ │ ├── test_variables.py
│ │ │ │ └── test_widgets.py
│ │ │ ├── test_ttk
│ │ │ │ ├── __init__.py
│ │ │ │ ├── support.py
│ │ │ │ ├── test_extensions.py
│ │ │ │ ├── test_functions.py
│ │ │ │ ├── test_style.py
│ │ │ │ └── test_widgets.py
│ │ │ └── widget_tests.py
│ │ ├── Tix.py
│ │ ├── tkColorChooser.py
│ │ ├── tkCommonDialog.py
│ │ ├── Tkconstants.py
│ │ ├── Tkdnd.py
│ │ ├── tkFileDialog.py
│ │ ├── tkFont.py
│ │ ├── Tkinter.py
│ │ ├── tkMessageBox.py
│ │ ├── tkSimpleDialog.py
│ │ ├── ttk.py
│ │ └── turtle.py
│ ├── linecache.py
│ ├── linecache.pyc
│ ├── locale.py
│ ├── locale.pyc
│ ├── logging
│ │ ├── config.py
│ │ ├── config.pyc
│ │ ├── handlers.py
│ │ ├── handlers.pyc
│ │ ├── __init__.py
│ │ └── __init__.pyc
│ ├── _LWPCookieJar.py
│ ├── _LWPCookieJar.pyc
│ ├── macpath.py
│ ├── macurl2path.py
│ ├── mailbox.py
│ ├── mailcap.py
│ ├── markupbase.py
│ ├── markupbase.pyc
│ ├── md5.py
│ ├── mhlib.py
│ ├── mimetools.py
│ ├── mimetools.pyc
│ ├── mimetypes.py
│ ├── mimetypes.pyc
│ ├── MimeWriter.py
│ ├── mimify.py
│ ├── modulefinder.py
│ ├── _MozillaCookieJar.py
│ ├── _MozillaCookieJar.pyc
│ ├── msilib
│ │ ├── __init__.py
│ │ ├── schema.py
│ │ ├── sequence.py
│ │ └── text.py
│ ├── multifile.py
│ ├── multiprocessing
│ │ ├── connection.py
│ │ ├── dummy
│ │ │ ├── connection.py
│ │ │ └── __init__.py
│ │ ├── forking.py
│ │ ├── heap.py
│ │ ├── __init__.py
│ │ ├── managers.py
│ │ ├── pool.py
│ │ ├── process.py
│ │ ├── queues.py
│ │ ├── reduction.py
│ │ ├── sharedctypes.py
│ │ ├── synchronize.py
│ │ └── util.py
│ ├── mutex.py
│ ├── netrc.py
│ ├── new.py
│ ├── nntplib.py
│ ├── ntpath.py
│ ├── ntpath.pyc
│ ├── nturl2path.py
│ ├── nturl2path.pyc
│ ├── numbers.py
│ ├── opcode.py
│ ├── opcode.pyc
│ ├── optparse.py
│ ├── optparse.pyc
│ ├── os2emxpath.py
│ ├── os.py
│ ├── os.pyc
│ ├── _osx_support.py
│ ├── pdb.py
│ ├── __phello__.foo.py
│ ├── pickle.py
│ ├── pickletools.py
│ ├── pipes.py
│ ├── pkgutil.py
│ ├── pkgutil.pyc
│ ├── platform.py
│ ├── platform.pyc
│ ├── plistlib.py
│ ├── plistlib.pyc
│ ├── popen2.py
│ ├── poplib.py
│ ├── posixfile.py
│ ├── posixpath.py
│ ├── posixpath.pyc
│ ├── pprint.py
│ ├── pprint.pyc
│ ├── profile.py
│ ├── pstats.py
│ ├── pty.py
│ ├── pyclbr.py
│ ├── py_compile.py
│ ├── py_compile.pyc
│ ├── pydoc_data
│ │ ├── __init__.py
│ │ └── topics.py
│ ├── pydoc.py
│ ├── _pyio.py
│ ├── Queue.py
│ ├── Queue.pyc
│ ├── quopri.py
│ ├── quopri.pyc
│ ├── random.py
│ ├── random.pyc
│ ├── repr.py
│ ├── re.py
│ ├── re.pyc
│ ├── rexec.py
│ ├── rfc822.py
│ ├── rfc822.pyc
│ ├── rlcompleter.py
│ ├── robotparser.py
│ ├── runpy.py
│ ├── runpy.pyc
│ ├── sched.py
│ ├── sets.py
│ ├── sgmllib.py
│ ├── sha.py
│ ├── shelve.py
│ ├── shlex.py
│ ├── shlex.pyc
│ ├── shutil.py
│ ├── shutil.pyc
│ ├── SimpleHTTPServer.py
│ ├── SimpleXMLRPCServer.py
│ ├── site-packages
│ │ ├── easy_install.py
│ │ ├── easy_install.pyc
│ │ ├── pip
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── _internal
│ │ │ │ ├── build_env.py
│ │ │ │ ├── build_env.pyc
│ │ │ │ ├── cache.py
│ │ │ │ ├── cache.pyc
│ │ │ │ ├── cli
│ │ │ │ │ ├── autocompletion.py
│ │ │ │ │ ├── autocompletion.pyc
│ │ │ │ │ ├── base_command.py
│ │ │ │ │ ├── base_command.pyc
│ │ │ │ │ ├── cmdoptions.py
│ │ │ │ │ ├── cmdoptions.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── main_parser.py
│ │ │ │ │ ├── main_parser.pyc
│ │ │ │ │ ├── parser.py
│ │ │ │ │ ├── parser.pyc
│ │ │ │ │ ├── status_codes.py
│ │ │ │ │ └── status_codes.pyc
│ │ │ │ ├── commands
│ │ │ │ │ ├── check.py
│ │ │ │ │ ├── check.pyc
│ │ │ │ │ ├── completion.py
│ │ │ │ │ ├── completion.pyc
│ │ │ │ │ ├── configuration.py
│ │ │ │ │ ├── configuration.pyc
│ │ │ │ │ ├── download.py
│ │ │ │ │ ├── download.pyc
│ │ │ │ │ ├── freeze.py
│ │ │ │ │ ├── freeze.pyc
│ │ │ │ │ ├── hash.py
│ │ │ │ │ ├── hash.pyc
│ │ │ │ │ ├── help.py
│ │ │ │ │ ├── help.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── install.py
│ │ │ │ │ ├── install.pyc
│ │ │ │ │ ├── list.py
│ │ │ │ │ ├── list.pyc
│ │ │ │ │ ├── search.py
│ │ │ │ │ ├── search.pyc
│ │ │ │ │ ├── show.py
│ │ │ │ │ ├── show.pyc
│ │ │ │ │ ├── uninstall.py
│ │ │ │ │ ├── uninstall.pyc
│ │ │ │ │ ├── wheel.py
│ │ │ │ │ └── wheel.pyc
│ │ │ │ ├── configuration.py
│ │ │ │ ├── configuration.pyc
│ │ │ │ ├── download.py
│ │ │ │ ├── download.pyc
│ │ │ │ ├── exceptions.py
│ │ │ │ ├── exceptions.pyc
│ │ │ │ ├── index.py
│ │ │ │ ├── index.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── locations.py
│ │ │ │ ├── locations.pyc
│ │ │ │ ├── models
│ │ │ │ │ ├── candidate.py
│ │ │ │ │ ├── candidate.pyc
│ │ │ │ │ ├── format_control.py
│ │ │ │ │ ├── format_control.pyc
│ │ │ │ │ ├── index.py
│ │ │ │ │ ├── index.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── link.py
│ │ │ │ │ └── link.pyc
│ │ │ │ ├── operations
│ │ │ │ │ ├── check.py
│ │ │ │ │ ├── check.pyc
│ │ │ │ │ ├── freeze.py
│ │ │ │ │ ├── freeze.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── prepare.py
│ │ │ │ │ └── prepare.pyc
│ │ │ │ ├── pep425tags.py
│ │ │ │ ├── pep425tags.pyc
│ │ │ │ ├── pyproject.py
│ │ │ │ ├── pyproject.pyc
│ │ │ │ ├── req
│ │ │ │ │ ├── constructors.py
│ │ │ │ │ ├── constructors.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── req_file.py
│ │ │ │ │ ├── req_file.pyc
│ │ │ │ │ ├── req_install.py
│ │ │ │ │ ├── req_install.pyc
│ │ │ │ │ ├── req_set.py
│ │ │ │ │ ├── req_set.pyc
│ │ │ │ │ ├── req_tracker.py
│ │ │ │ │ ├── req_tracker.pyc
│ │ │ │ │ ├── req_uninstall.py
│ │ │ │ │ └── req_uninstall.pyc
│ │ │ │ ├── resolve.py
│ │ │ │ ├── resolve.pyc
│ │ │ │ ├── utils
│ │ │ │ │ ├── appdirs.py
│ │ │ │ │ ├── appdirs.pyc
│ │ │ │ │ ├── compat.py
│ │ │ │ │ ├── compat.pyc
│ │ │ │ │ ├── deprecation.py
│ │ │ │ │ ├── deprecation.pyc
│ │ │ │ │ ├── encoding.py
│ │ │ │ │ ├── encoding.pyc
│ │ │ │ │ ├── filesystem.py
│ │ │ │ │ ├── filesystem.pyc
│ │ │ │ │ ├── glibc.py
│ │ │ │ │ ├── glibc.pyc
│ │ │ │ │ ├── hashes.py
│ │ │ │ │ ├── hashes.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── logging.py
│ │ │ │ │ ├── logging.pyc
│ │ │ │ │ ├── misc.py
│ │ │ │ │ ├── misc.pyc
│ │ │ │ │ ├── models.py
│ │ │ │ │ ├── models.pyc
│ │ │ │ │ ├── outdated.py
│ │ │ │ │ ├── outdated.pyc
│ │ │ │ │ ├── packaging.py
│ │ │ │ │ ├── packaging.pyc
│ │ │ │ │ ├── setuptools_build.py
│ │ │ │ │ ├── setuptools_build.pyc
│ │ │ │ │ ├── temp_dir.py
│ │ │ │ │ ├── temp_dir.pyc
│ │ │ │ │ ├── typing.py
│ │ │ │ │ ├── typing.pyc
│ │ │ │ │ ├── ui.py
│ │ │ │ │ └── ui.pyc
│ │ │ │ ├── vcs
│ │ │ │ │ ├── bazaar.py
│ │ │ │ │ ├── bazaar.pyc
│ │ │ │ │ ├── git.py
│ │ │ │ │ ├── git.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── mercurial.py
│ │ │ │ │ ├── mercurial.pyc
│ │ │ │ │ ├── subversion.py
│ │ │ │ │ └── subversion.pyc
│ │ │ │ ├── wheel.py
│ │ │ │ └── wheel.pyc
│ │ │ ├── __main__.py
│ │ │ ├── __main__.pyc
│ │ │ └── _vendor
│ │ │ ├── appdirs.py
│ │ │ ├── appdirs.pyc
│ │ │ ├── cachecontrol
│ │ │ │ ├── adapter.py
│ │ │ │ ├── adapter.pyc
│ │ │ │ ├── cache.py
│ │ │ │ ├── cache.pyc
│ │ │ │ ├── caches
│ │ │ │ │ ├── file_cache.py
│ │ │ │ │ ├── file_cache.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── redis_cache.py
│ │ │ │ │ └── redis_cache.pyc
│ │ │ │ ├── _cmd.py
│ │ │ │ ├── _cmd.pyc
│ │ │ │ ├── compat.py
│ │ │ │ ├── compat.pyc
│ │ │ │ ├── controller.py
│ │ │ │ ├── controller.pyc
│ │ │ │ ├── filewrapper.py
│ │ │ │ ├── filewrapper.pyc
│ │ │ │ ├── heuristics.py
│ │ │ │ ├── heuristics.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── serialize.py
│ │ │ │ ├── serialize.pyc
│ │ │ │ ├── wrapper.py
│ │ │ │ └── wrapper.pyc
│ │ │ ├── certifi
│ │ │ │ ├── cacert.pem
│ │ │ │ ├── core.py
│ │ │ │ ├── core.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── __main__.py
│ │ │ │ └── __main__.pyc
│ │ │ ├── chardet
│ │ │ │ ├── big5freq.py
│ │ │ │ ├── big5freq.pyc
│ │ │ │ ├── big5prober.py
│ │ │ │ ├── big5prober.pyc
│ │ │ │ ├── chardistribution.py
│ │ │ │ ├── chardistribution.pyc
│ │ │ │ ├── charsetgroupprober.py
│ │ │ │ ├── charsetgroupprober.pyc
│ │ │ │ ├── charsetprober.py
│ │ │ │ ├── charsetprober.pyc
│ │ │ │ ├── cli
│ │ │ │ │ ├── chardetect.py
│ │ │ │ │ ├── chardetect.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── __init__.pyc
│ │ │ │ ├── codingstatemachine.py
│ │ │ │ ├── codingstatemachine.pyc
│ │ │ │ ├── compat.py
│ │ │ │ ├── compat.pyc
│ │ │ │ ├── cp949prober.py
│ │ │ │ ├── cp949prober.pyc
│ │ │ │ ├── enums.py
│ │ │ │ ├── enums.pyc
│ │ │ │ ├── escprober.py
│ │ │ │ ├── escprober.pyc
│ │ │ │ ├── escsm.py
│ │ │ │ ├── escsm.pyc
│ │ │ │ ├── eucjpprober.py
│ │ │ │ ├── eucjpprober.pyc
│ │ │ │ ├── euckrfreq.py
│ │ │ │ ├── euckrfreq.pyc
│ │ │ │ ├── euckrprober.py
│ │ │ │ ├── euckrprober.pyc
│ │ │ │ ├── euctwfreq.py
│ │ │ │ ├── euctwfreq.pyc
│ │ │ │ ├── euctwprober.py
│ │ │ │ ├── euctwprober.pyc
│ │ │ │ ├── gb2312freq.py
│ │ │ │ ├── gb2312freq.pyc
│ │ │ │ ├── gb2312prober.py
│ │ │ │ ├── gb2312prober.pyc
│ │ │ │ ├── hebrewprober.py
│ │ │ │ ├── hebrewprober.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── jisfreq.py
│ │ │ │ ├── jisfreq.pyc
│ │ │ │ ├── jpcntx.py
│ │ │ │ ├── jpcntx.pyc
│ │ │ │ ├── langbulgarianmodel.py
│ │ │ │ ├── langbulgarianmodel.pyc
│ │ │ │ ├── langcyrillicmodel.py
│ │ │ │ ├── langcyrillicmodel.pyc
│ │ │ │ ├── langgreekmodel.py
│ │ │ │ ├── langgreekmodel.pyc
│ │ │ │ ├── langhebrewmodel.py
│ │ │ │ ├── langhebrewmodel.pyc
│ │ │ │ ├── langhungarianmodel.py
│ │ │ │ ├── langhungarianmodel.pyc
│ │ │ │ ├── langthaimodel.py
│ │ │ │ ├── langthaimodel.pyc
│ │ │ │ ├── langturkishmodel.py
│ │ │ │ ├── langturkishmodel.pyc
│ │ │ │ ├── latin1prober.py
│ │ │ │ ├── latin1prober.pyc
│ │ │ │ ├── mbcharsetprober.py
│ │ │ │ ├── mbcharsetprober.pyc
│ │ │ │ ├── mbcsgroupprober.py
│ │ │ │ ├── mbcsgroupprober.pyc
│ │ │ │ ├── mbcssm.py
│ │ │ │ ├── mbcssm.pyc
│ │ │ │ ├── sbcharsetprober.py
│ │ │ │ ├── sbcharsetprober.pyc
│ │ │ │ ├── sbcsgroupprober.py
│ │ │ │ ├── sbcsgroupprober.pyc
│ │ │ │ ├── sjisprober.py
│ │ │ │ ├── sjisprober.pyc
│ │ │ │ ├── universaldetector.py
│ │ │ │ ├── universaldetector.pyc
│ │ │ │ ├── utf8prober.py
│ │ │ │ ├── utf8prober.pyc
│ │ │ │ ├── version.py
│ │ │ │ └── version.pyc
│ │ │ ├── colorama
│ │ │ │ ├── ansi.py
│ │ │ │ ├── ansi.pyc
│ │ │ │ ├── ansitowin32.py
│ │ │ │ ├── ansitowin32.pyc
│ │ │ │ ├── initialise.py
│ │ │ │ ├── initialise.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── win32.py
│ │ │ │ ├── win32.pyc
│ │ │ │ ├── winterm.py
│ │ │ │ └── winterm.pyc
│ │ │ ├── distlib
│ │ │ │ ├── _backport
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── misc.py
│ │ │ │ │ ├── misc.pyc
│ │ │ │ │ ├── shutil.py
│ │ │ │ │ ├── shutil.pyc
│ │ │ │ │ ├── sysconfig.cfg
│ │ │ │ │ ├── sysconfig.py
│ │ │ │ │ ├── sysconfig.pyc
│ │ │ │ │ ├── tarfile.py
│ │ │ │ │ └── tarfile.pyc
│ │ │ │ ├── compat.py
│ │ │ │ ├── compat.pyc
│ │ │ │ ├── database.py
│ │ │ │ ├── database.pyc
│ │ │ │ ├── index.py
│ │ │ │ ├── index.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── locators.py
│ │ │ │ ├── locators.pyc
│ │ │ │ ├── manifest.py
│ │ │ │ ├── manifest.pyc
│ │ │ │ ├── markers.py
│ │ │ │ ├── markers.pyc
│ │ │ │ ├── metadata.py
│ │ │ │ ├── metadata.pyc
│ │ │ │ ├── resources.py
│ │ │ │ ├── resources.pyc
│ │ │ │ ├── scripts.py
│ │ │ │ ├── scripts.pyc
│ │ │ │ ├── t32.exe
│ │ │ │ ├── t64.exe
│ │ │ │ ├── util.py
│ │ │ │ ├── util.pyc
│ │ │ │ ├── version.py
│ │ │ │ ├── version.pyc
│ │ │ │ ├── w32.exe
│ │ │ │ ├── w64.exe
│ │ │ │ ├── wheel.py
│ │ │ │ └── wheel.pyc
│ │ │ ├── distro.py
│ │ │ ├── distro.pyc
│ │ │ ├── html5lib
│ │ │ │ ├── constants.py
│ │ │ │ ├── constants.pyc
│ │ │ │ ├── filters
│ │ │ │ │ ├── alphabeticalattributes.py
│ │ │ │ │ ├── alphabeticalattributes.pyc
│ │ │ │ │ ├── base.py
│ │ │ │ │ ├── base.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── inject_meta_charset.py
│ │ │ │ │ ├── inject_meta_charset.pyc
│ │ │ │ │ ├── lint.py
│ │ │ │ │ ├── lint.pyc
│ │ │ │ │ ├── optionaltags.py
│ │ │ │ │ ├── optionaltags.pyc
│ │ │ │ │ ├── sanitizer.py
│ │ │ │ │ ├── sanitizer.pyc
│ │ │ │ │ ├── whitespace.py
│ │ │ │ │ └── whitespace.pyc
│ │ │ │ ├── html5parser.py
│ │ │ │ ├── html5parser.pyc
│ │ │ │ ├── _ihatexml.py
│ │ │ │ ├── _ihatexml.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── _inputstream.py
│ │ │ │ ├── _inputstream.pyc
│ │ │ │ ├── serializer.py
│ │ │ │ ├── serializer.pyc
│ │ │ │ ├── _tokenizer.py
│ │ │ │ ├── _tokenizer.pyc
│ │ │ │ ├── treeadapters
│ │ │ │ │ ├── genshi.py
│ │ │ │ │ ├── genshi.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── sax.py
│ │ │ │ │ └── sax.pyc
│ │ │ │ ├── treebuilders
│ │ │ │ │ ├── base.py
│ │ │ │ │ ├── base.pyc
│ │ │ │ │ ├── dom.py
│ │ │ │ │ ├── dom.pyc
│ │ │ │ │ ├── etree_lxml.py
│ │ │ │ │ ├── etree_lxml.pyc
│ │ │ │ │ ├── etree.py
│ │ │ │ │ ├── etree.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── __init__.pyc
│ │ │ │ ├── treewalkers
│ │ │ │ │ ├── base.py
│ │ │ │ │ ├── base.pyc
│ │ │ │ │ ├── dom.py
│ │ │ │ │ ├── dom.pyc
│ │ │ │ │ ├── etree_lxml.py
│ │ │ │ │ ├── etree_lxml.pyc
│ │ │ │ │ ├── etree.py
│ │ │ │ │ ├── etree.pyc
│ │ │ │ │ ├── genshi.py
│ │ │ │ │ ├── genshi.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── __init__.pyc
│ │ │ │ ├── _trie
│ │ │ │ │ ├── _base.py
│ │ │ │ │ ├── _base.pyc
│ │ │ │ │ ├── datrie.py
│ │ │ │ │ ├── datrie.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── py.py
│ │ │ │ │ └── py.pyc
│ │ │ │ ├── _utils.py
│ │ │ │ └── _utils.pyc
│ │ │ ├── idna
│ │ │ │ ├── codec.py
│ │ │ │ ├── codec.pyc
│ │ │ │ ├── compat.py
│ │ │ │ ├── compat.pyc
│ │ │ │ ├── core.py
│ │ │ │ ├── core.pyc
│ │ │ │ ├── idnadata.py
│ │ │ │ ├── idnadata.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── intranges.py
│ │ │ │ ├── intranges.pyc
│ │ │ │ ├── package_data.py
│ │ │ │ ├── package_data.pyc
│ │ │ │ ├── uts46data.py
│ │ │ │ └── uts46data.pyc
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── ipaddress.py
│ │ │ ├── ipaddress.pyc
│ │ │ ├── lockfile
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── linklockfile.py
│ │ │ │ ├── linklockfile.pyc
│ │ │ │ ├── mkdirlockfile.py
│ │ │ │ ├── mkdirlockfile.pyc
│ │ │ │ ├── pidlockfile.py
│ │ │ │ ├── pidlockfile.pyc
│ │ │ │ ├── sqlitelockfile.py
│ │ │ │ ├── sqlitelockfile.pyc
│ │ │ │ ├── symlinklockfile.py
│ │ │ │ └── symlinklockfile.pyc
│ │ │ ├── msgpack
│ │ │ │ ├── exceptions.py
│ │ │ │ ├── exceptions.pyc
│ │ │ │ ├── fallback.py
│ │ │ │ ├── fallback.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── _version.py
│ │ │ │ └── _version.pyc
│ │ │ ├── packaging
│ │ │ │ ├── __about__.py
│ │ │ │ ├── __about__.pyc
│ │ │ │ ├── _compat.py
│ │ │ │ ├── _compat.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── markers.py
│ │ │ │ ├── markers.pyc
│ │ │ │ ├── requirements.py
│ │ │ │ ├── requirements.pyc
│ │ │ │ ├── specifiers.py
│ │ │ │ ├── specifiers.pyc
│ │ │ │ ├── _structures.py
│ │ │ │ ├── _structures.pyc
│ │ │ │ ├── utils.py
│ │ │ │ ├── utils.pyc
│ │ │ │ ├── version.py
│ │ │ │ └── version.pyc
│ │ │ ├── pep517
│ │ │ │ ├── check.py
│ │ │ │ ├── check.pyc
│ │ │ │ ├── colorlog.py
│ │ │ │ ├── colorlog.pyc
│ │ │ │ ├── compat.py
│ │ │ │ ├── compat.pyc
│ │ │ │ ├── envbuild.py
│ │ │ │ ├── envbuild.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── _in_process.py
│ │ │ │ ├── _in_process.pyc
│ │ │ │ ├── wrappers.py
│ │ │ │ └── wrappers.pyc
│ │ │ ├── pkg_resources
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── py31compat.py
│ │ │ │ └── py31compat.pyc
│ │ │ ├── progress
│ │ │ │ ├── bar.py
│ │ │ │ ├── bar.pyc
│ │ │ │ ├── counter.py
│ │ │ │ ├── counter.pyc
│ │ │ │ ├── helpers.py
│ │ │ │ ├── helpers.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── spinner.py
│ │ │ │ └── spinner.pyc
│ │ │ ├── pyparsing.py
│ │ │ ├── pyparsing.pyc
│ │ │ ├── pytoml
│ │ │ │ ├── core.py
│ │ │ │ ├── core.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── parser.py
│ │ │ │ ├── parser.pyc
│ │ │ │ ├── writer.py
│ │ │ │ └── writer.pyc
│ │ │ ├── requests
│ │ │ │ ├── adapters.py
│ │ │ │ ├── adapters.pyc
│ │ │ │ ├── api.py
│ │ │ │ ├── api.pyc
│ │ │ │ ├── auth.py
│ │ │ │ ├── auth.pyc
│ │ │ │ ├── certs.py
│ │ │ │ ├── certs.pyc
│ │ │ │ ├── compat.py
│ │ │ │ ├── compat.pyc
│ │ │ │ ├── cookies.py
│ │ │ │ ├── cookies.pyc
│ │ │ │ ├── exceptions.py
│ │ │ │ ├── exceptions.pyc
│ │ │ │ ├── help.py
│ │ │ │ ├── help.pyc
│ │ │ │ ├── hooks.py
│ │ │ │ ├── hooks.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── _internal_utils.py
│ │ │ │ ├── _internal_utils.pyc
│ │ │ │ ├── models.py
│ │ │ │ ├── models.pyc
│ │ │ │ ├── packages.py
│ │ │ │ ├── packages.pyc
│ │ │ │ ├── sessions.py
│ │ │ │ ├── sessions.pyc
│ │ │ │ ├── status_codes.py
│ │ │ │ ├── status_codes.pyc
│ │ │ │ ├── structures.py
│ │ │ │ ├── structures.pyc
│ │ │ │ ├── utils.py
│ │ │ │ ├── utils.pyc
│ │ │ │ ├── __version__.py
│ │ │ │ └── __version__.pyc
│ │ │ ├── retrying.py
│ │ │ ├── retrying.pyc
│ │ │ ├── six.py
│ │ │ ├── six.pyc
│ │ │ ├── urllib3
│ │ │ │ ├── _collections.py
│ │ │ │ ├── _collections.pyc
│ │ │ │ ├── connectionpool.py
│ │ │ │ ├── connectionpool.pyc
│ │ │ │ ├── connection.py
│ │ │ │ ├── connection.pyc
│ │ │ │ ├── contrib
│ │ │ │ │ ├── appengine.py
│ │ │ │ │ ├── appengine.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── ntlmpool.py
│ │ │ │ │ ├── ntlmpool.pyc
│ │ │ │ │ ├── pyopenssl.py
│ │ │ │ │ ├── pyopenssl.pyc
│ │ │ │ │ ├── _securetransport
│ │ │ │ │ │ ├── bindings.py
│ │ │ │ │ │ ├── bindings.pyc
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ │ ├── low_level.py
│ │ │ │ │ │ └── low_level.pyc
│ │ │ │ │ ├── securetransport.py
│ │ │ │ │ ├── securetransport.pyc
│ │ │ │ │ ├── socks.py
│ │ │ │ │ └── socks.pyc
│ │ │ │ ├── exceptions.py
│ │ │ │ ├── exceptions.pyc
│ │ │ │ ├── fields.py
│ │ │ │ ├── fields.pyc
│ │ │ │ ├── filepost.py
│ │ │ │ ├── filepost.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── packages
│ │ │ │ │ ├── backports
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ │ ├── makefile.py
│ │ │ │ │ │ └── makefile.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── ordered_dict.py
│ │ │ │ │ ├── ordered_dict.pyc
│ │ │ │ │ ├── six.py
│ │ │ │ │ ├── six.pyc
│ │ │ │ │ └── ssl_match_hostname
│ │ │ │ │ ├── _implementation.py
│ │ │ │ │ ├── _implementation.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── __init__.pyc
│ │ │ │ ├── poolmanager.py
│ │ │ │ ├── poolmanager.pyc
│ │ │ │ ├── request.py
│ │ │ │ ├── request.pyc
│ │ │ │ ├── response.py
│ │ │ │ ├── response.pyc
│ │ │ │ └── util
│ │ │ │ ├── connection.py
│ │ │ │ ├── connection.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── queue.py
│ │ │ │ ├── queue.pyc
│ │ │ │ ├── request.py
│ │ │ │ ├── request.pyc
│ │ │ │ ├── response.py
│ │ │ │ ├── response.pyc
│ │ │ │ ├── retry.py
│ │ │ │ ├── retry.pyc
│ │ │ │ ├── ssl_.py
│ │ │ │ ├── ssl_.pyc
│ │ │ │ ├── timeout.py
│ │ │ │ ├── timeout.pyc
│ │ │ │ ├── url.py
│ │ │ │ ├── url.pyc
│ │ │ │ ├── wait.py
│ │ │ │ └── wait.pyc
│ │ │ └── webencodings
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── labels.py
│ │ │ ├── labels.pyc
│ │ │ ├── mklabels.py
│ │ │ ├── mklabels.pyc
│ │ │ ├── tests.py
│ │ │ ├── tests.pyc
│ │ │ ├── x_user_defined.py
│ │ │ └── x_user_defined.pyc
│ │ ├── pip-18.1.dist-info
│ │ │ ├── entry_points.txt
│ │ │ ├── INSTALLER
│ │ │ ├── LICENSE.txt
│ │ │ ├── METADATA
│ │ │ ├── RECORD
│ │ │ ├── top_level.txt
│ │ │ └── WHEEL
│ │ ├── pkg_resources
│ │ │ ├── extern
│ │ │ │ ├── __init__.py
│ │ │ │ └── __init__.pyc
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── py31compat.py
│ │ │ ├── py31compat.pyc
│ │ │ └── _vendor
│ │ │ ├── appdirs.py
│ │ │ ├── appdirs.pyc
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── packaging
│ │ │ │ ├── __about__.py
│ │ │ │ ├── __about__.pyc
│ │ │ │ ├── _compat.py
│ │ │ │ ├── _compat.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── markers.py
│ │ │ │ ├── markers.pyc
│ │ │ │ ├── requirements.py
│ │ │ │ ├── requirements.pyc
│ │ │ │ ├── specifiers.py
│ │ │ │ ├── specifiers.pyc
│ │ │ │ ├── _structures.py
│ │ │ │ ├── _structures.pyc
│ │ │ │ ├── utils.py
│ │ │ │ ├── utils.pyc
│ │ │ │ ├── version.py
│ │ │ │ └── version.pyc
│ │ │ ├── pyparsing.py
│ │ │ ├── pyparsing.pyc
│ │ │ ├── six.py
│ │ │ └── six.pyc
│ │ ├── README.txt
│ │ ├── setuptools
│ │ │ ├── archive_util.py
│ │ │ ├── archive_util.pyc
│ │ │ ├── build_meta.py
│ │ │ ├── build_meta.pyc
│ │ │ ├── cli-32.exe
│ │ │ ├── cli-64.exe
│ │ │ ├── cli.exe
│ │ │ ├── command
│ │ │ │ ├── alias.py
│ │ │ │ ├── alias.pyc
│ │ │ │ ├── bdist_egg.py
│ │ │ │ ├── bdist_egg.pyc
│ │ │ │ ├── bdist_rpm.py
│ │ │ │ ├── bdist_rpm.pyc
│ │ │ │ ├── bdist_wininst.py
│ │ │ │ ├── bdist_wininst.pyc
│ │ │ │ ├── build_clib.py
│ │ │ │ ├── build_clib.pyc
│ │ │ │ ├── build_ext.py
│ │ │ │ ├── build_ext.pyc
│ │ │ │ ├── build_py.py
│ │ │ │ ├── build_py.pyc
│ │ │ │ ├── develop.py
│ │ │ │ ├── develop.pyc
│ │ │ │ ├── dist_info.py
│ │ │ │ ├── dist_info.pyc
│ │ │ │ ├── easy_install.py
│ │ │ │ ├── easy_install.pyc
│ │ │ │ ├── egg_info.py
│ │ │ │ ├── egg_info.pyc
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── install_egg_info.py
│ │ │ │ ├── install_egg_info.pyc
│ │ │ │ ├── install_lib.py
│ │ │ │ ├── install_lib.pyc
│ │ │ │ ├── install.py
│ │ │ │ ├── install.pyc
│ │ │ │ ├── install_scripts.py
│ │ │ │ ├── install_scripts.pyc
│ │ │ │ ├── launcher manifest.xml
│ │ │ │ ├── py36compat.py
│ │ │ │ ├── py36compat.pyc
│ │ │ │ ├── register.py
│ │ │ │ ├── register.pyc
│ │ │ │ ├── rotate.py
│ │ │ │ ├── rotate.pyc
│ │ │ │ ├── saveopts.py
│ │ │ │ ├── saveopts.pyc
│ │ │ │ ├── sdist.py
│ │ │ │ ├── sdist.pyc
│ │ │ │ ├── setopt.py
│ │ │ │ ├── setopt.pyc
│ │ │ │ ├── test.py
│ │ │ │ ├── test.pyc
│ │ │ │ ├── upload_docs.py
│ │ │ │ ├── upload_docs.pyc
│ │ │ │ ├── upload.py
│ │ │ │ └── upload.pyc
│ │ │ ├── config.py
│ │ │ ├── config.pyc
│ │ │ ├── depends.py
│ │ │ ├── depends.pyc
│ │ │ ├── _deprecation_warning.py
│ │ │ ├── _deprecation_warning.pyc
│ │ │ ├── dep_util.py
│ │ │ ├── dep_util.pyc
│ │ │ ├── dist.py
│ │ │ ├── dist.pyc
│ │ │ ├── extension.py
│ │ │ ├── extension.pyc
│ │ │ ├── extern
│ │ │ │ ├── __init__.py
│ │ │ │ └── __init__.pyc
│ │ │ ├── glibc.py
│ │ │ ├── glibc.pyc
│ │ │ ├── glob.py
│ │ │ ├── glob.pyc
│ │ │ ├── gui-32.exe
│ │ │ ├── gui-64.exe
│ │ │ ├── gui.exe
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── launch.py
│ │ │ ├── launch.pyc
│ │ │ ├── lib2to3_ex.py
│ │ │ ├── lib2to3_ex.pyc
│ │ │ ├── monkey.py
│ │ │ ├── monkey.pyc
│ │ │ ├── msvc.py
│ │ │ ├── msvc.pyc
│ │ │ ├── namespaces.py
│ │ │ ├── namespaces.pyc
│ │ │ ├── package_index.py
│ │ │ ├── package_index.pyc
│ │ │ ├── pep425tags.py
│ │ │ ├── pep425tags.pyc
│ │ │ ├── py27compat.py
│ │ │ ├── py27compat.pyc
│ │ │ ├── py31compat.py
│ │ │ ├── py31compat.pyc
│ │ │ ├── py33compat.py
│ │ │ ├── py33compat.pyc
│ │ │ ├── py36compat.py
│ │ │ ├── py36compat.pyc
│ │ │ ├── sandbox.py
│ │ │ ├── sandbox.pyc
│ │ │ ├── script (dev).tmpl
│ │ │ ├── script.tmpl
│ │ │ ├── site-patch.py
│ │ │ ├── site-patch.pyc
│ │ │ ├── ssl_support.py
│ │ │ ├── ssl_support.pyc
│ │ │ ├── unicode_utils.py
│ │ │ ├── unicode_utils.pyc
│ │ │ ├── _vendor
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── packaging
│ │ │ │ │ ├── __about__.py
│ │ │ │ │ ├── __about__.pyc
│ │ │ │ │ ├── _compat.py
│ │ │ │ │ ├── _compat.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── markers.py
│ │ │ │ │ ├── markers.pyc
│ │ │ │ │ ├── requirements.py
│ │ │ │ │ ├── requirements.pyc
│ │ │ │ │ ├── specifiers.py
│ │ │ │ │ ├── specifiers.pyc
│ │ │ │ │ ├── _structures.py
│ │ │ │ │ ├── _structures.pyc
│ │ │ │ │ ├── utils.py
│ │ │ │ │ ├── utils.pyc
│ │ │ │ │ ├── version.py
│ │ │ │ │ └── version.pyc
│ │ │ │ ├── pyparsing.py
│ │ │ │ ├── pyparsing.pyc
│ │ │ │ ├── six.py
│ │ │ │ └── six.pyc
│ │ │ ├── version.py
│ │ │ ├── version.pyc
│ │ │ ├── wheel.py
│ │ │ ├── wheel.pyc
│ │ │ ├── windows_support.py
│ │ │ └── windows_support.pyc
│ │ └── setuptools-40.6.2.dist-info
│ │ ├── dependency_links.txt
│ │ ├── entry_points.txt
│ │ ├── INSTALLER
│ │ ├── LICENSE
│ │ ├── METADATA
│ │ ├── RECORD
│ │ ├── top_level.txt
│ │ ├── WHEEL
│ │ └── zip-safe
│ ├── site.py
│ ├── site.pyc
│ ├── smtpd.py
│ ├── smtplib.py
│ ├── sndhdr.py
│ ├── socket.py
│ ├── socket.pyc
│ ├── SocketServer.py
│ ├── SocketServer.pyc
│ ├── sqlite3
│ │ ├── dbapi2.py
│ │ ├── dump.py
│ │ ├── __init__.py
│ │ └── test
│ │ ├── dbapi.py
│ │ ├── dump.py
│ │ ├── factory.py
│ │ ├── hooks.py
│ │ ├── __init__.py
│ │ ├── py25tests.py
│ │ ├── regression.py
│ │ ├── transactions.py
│ │ ├── types.py
│ │ └── userfunctions.py
│ ├── sre_compile.py
│ ├── sre_compile.pyc
│ ├── sre_constants.py
│ ├── sre_constants.pyc
│ ├── sre_parse.py
│ ├── sre_parse.pyc
│ ├── sre.py
│ ├── ssl.py
│ ├── ssl.pyc
│ ├── stat.py
│ ├── stat.pyc
│ ├── statvfs.py
│ ├── StringIO.py
│ ├── StringIO.pyc
│ ├── stringold.py
│ ├── stringprep.py
│ ├── stringprep.pyc
│ ├── string.py
│ ├── string.pyc
│ ├── _strptime.py
│ ├── struct.py
│ ├── struct.pyc
│ ├── subprocess.py
│ ├── subprocess.pyc
│ ├── sunaudio.py
│ ├── sunau.py
│ ├── symbol.py
│ ├── symtable.py
│ ├── sysconfig.py
│ ├── sysconfig.pyc
│ ├── tabnanny.py
│ ├── tarfile.py
│ ├── tarfile.pyc
│ ├── telnetlib.py
│ ├── tempfile.py
│ ├── tempfile.pyc
│ ├── test
│ │ ├── 185test.db
│ │ ├── allsans.pem
│ │ ├── audiodata
│ │ │ ├── pluck-pcm16.aiff
│ │ │ ├── pluck-pcm16.au
│ │ │ ├── pluck-pcm16.wav
│ │ │ ├── pluck-pcm24.aiff
│ │ │ ├── pluck-pcm24.wav
│ │ │ ├── pluck-pcm32.aiff
│ │ │ ├── pluck-pcm32.au
│ │ │ ├── pluck-pcm32.wav
│ │ │ ├── pluck-pcm8.aiff
│ │ │ ├── pluck-pcm8.au
│ │ │ ├── pluck-pcm8.wav
│ │ │ ├── pluck-ulaw.aifc
│ │ │ └── pluck-ulaw.au
│ │ ├── audiotest.au
│ │ ├── audiotests.py
│ │ ├── autotest.py
│ │ ├── badcert.pem
│ │ ├── bad_coding2.py
│ │ ├── bad_coding3.py
│ │ ├── bad_coding.py
│ │ ├── badkey.pem
│ │ ├── badsyntax_future3.py
│ │ ├── badsyntax_future4.py
│ │ ├── badsyntax_future5.py
│ │ ├── badsyntax_future6.py
│ │ ├── badsyntax_future7.py
│ │ ├── badsyntax_future8.py
│ │ ├── badsyntax_future9.py
│ │ ├── badsyntax_nocaret.py
│ │ ├── bisect_cmd.py
│ │ ├── capath
│ │ │ ├── 0e4015b9.0
│ │ │ ├── 4e1295a3.0
│ │ │ ├── 5ed36f99.0
│ │ │ ├── 6e88d7b8.0
│ │ │ ├── 99d0fa06.0
│ │ │ └── ce7b8643.0
│ │ ├── cfgparser.1
│ │ ├── cjkencodings
│ │ │ ├── big5hkscs.txt
│ │ │ ├── big5hkscs-utf8.txt
│ │ │ ├── big5.txt
│ │ │ ├── big5-utf8.txt
│ │ │ ├── cp949.txt
│ │ │ ├── cp949-utf8.txt
│ │ │ ├── euc_jisx0213.txt
│ │ │ ├── euc_jisx0213-utf8.txt
│ │ │ ├── euc_jp.txt
│ │ │ ├── euc_jp-utf8.txt
│ │ │ ├── euc_kr.txt
│ │ │ ├── euc_kr-utf8.txt
│ │ │ ├── gb18030.txt
│ │ │ ├── gb18030-utf8.txt
│ │ │ ├── gb2312.txt
│ │ │ ├── gb2312-utf8.txt
│ │ │ ├── gbk.txt
│ │ │ ├── gbk-utf8.txt
│ │ │ ├── hz.txt
│ │ │ ├── hz-utf8.txt
│ │ │ ├── iso2022_jp.txt
│ │ │ ├── iso2022_jp-utf8.txt
│ │ │ ├── iso2022_kr.txt
│ │ │ ├── iso2022_kr-utf8.txt
│ │ │ ├── johab.txt
│ │ │ ├── johab-utf8.txt
│ │ │ ├── shift_jis.txt
│ │ │ ├── shift_jis-utf8.txt
│ │ │ ├── shift_jisx0213.txt
│ │ │ └── shift_jisx0213-utf8.txt
│ │ ├── cmath_testcases.txt
│ │ ├── crashers
│ │ │ ├── bogus_code_obj.py
│ │ │ ├── borrowed_ref_1.py
│ │ │ ├── borrowed_ref_2.py
│ │ │ ├── buffer_mutate.py
│ │ │ ├── compiler_recursion.py
│ │ │ ├── decref_before_assignment.py
│ │ │ ├── gc_has_finalizer.py
│ │ │ ├── gc_inspection.py
│ │ │ ├── infinite_loop_re.py
│ │ │ ├── loosing_mro_ref.py
│ │ │ ├── mutation_inside_cyclegc.py
│ │ │ ├── nasty_eq_vs_dict.py
│ │ │ ├── recursion_limit_too_high.py
│ │ │ ├── recursive_call.py
│ │ │ └── warnings_del_crasher.py
│ │ ├── curses_tests.py
│ │ ├── decimaltestdata
│ │ │ ├── abs.decTest
│ │ │ ├── add.decTest
│ │ │ ├── and.decTest
│ │ │ ├── base.decTest
│ │ │ ├── clamp.decTest
│ │ │ ├── class.decTest
│ │ │ ├── compare.decTest
│ │ │ ├── comparetotal.decTest
│ │ │ ├── comparetotmag.decTest
│ │ │ ├── copyabs.decTest
│ │ │ ├── copy.decTest
│ │ │ ├── copynegate.decTest
│ │ │ ├── copysign.decTest
│ │ │ ├── ddAbs.decTest
│ │ │ ├── ddAdd.decTest
│ │ │ ├── ddAnd.decTest
│ │ │ ├── ddBase.decTest
│ │ │ ├── ddCanonical.decTest
│ │ │ ├── ddClass.decTest
│ │ │ ├── ddCompare.decTest
│ │ │ ├── ddCompareSig.decTest
│ │ │ ├── ddCompareTotal.decTest
│ │ │ ├── ddCompareTotalMag.decTest
│ │ │ ├── ddCopyAbs.decTest
│ │ │ ├── ddCopy.decTest
│ │ │ ├── ddCopyNegate.decTest
│ │ │ ├── ddCopySign.decTest
│ │ │ ├── ddDivide.decTest
│ │ │ ├── ddDivideInt.decTest
│ │ │ ├── ddEncode.decTest
│ │ │ ├── ddFMA.decTest
│ │ │ ├── ddInvert.decTest
│ │ │ ├── ddLogB.decTest
│ │ │ ├── ddMax.decTest
│ │ │ ├── ddMaxMag.decTest
│ │ │ ├── ddMin.decTest
│ │ │ ├── ddMinMag.decTest
│ │ │ ├── ddMinus.decTest
│ │ │ ├── ddMultiply.decTest
│ │ │ ├── ddNextMinus.decTest
│ │ │ ├── ddNextPlus.decTest
│ │ │ ├── ddNextToward.decTest
│ │ │ ├── ddOr.decTest
│ │ │ ├── ddPlus.decTest
│ │ │ ├── ddQuantize.decTest
│ │ │ ├── ddReduce.decTest
│ │ │ ├── ddRemainder.decTest
│ │ │ ├── ddRemainderNear.decTest
│ │ │ ├── ddRotate.decTest
│ │ │ ├── ddSameQuantum.decTest
│ │ │ ├── ddScaleB.decTest
│ │ │ ├── ddShift.decTest
│ │ │ ├── ddSubtract.decTest
│ │ │ ├── ddToIntegral.decTest
│ │ │ ├── ddXor.decTest
│ │ │ ├── decDouble.decTest
│ │ │ ├── decQuad.decTest
│ │ │ ├── decSingle.decTest
│ │ │ ├── divide.decTest
│ │ │ ├── divideint.decTest
│ │ │ ├── dqAbs.decTest
│ │ │ ├── dqAdd.decTest
│ │ │ ├── dqAnd.decTest
│ │ │ ├── dqBase.decTest
│ │ │ ├── dqCanonical.decTest
│ │ │ ├── dqClass.decTest
│ │ │ ├── dqCompare.decTest
│ │ │ ├── dqCompareSig.decTest
│ │ │ ├── dqCompareTotal.decTest
│ │ │ ├── dqCompareTotalMag.decTest
│ │ │ ├── dqCopyAbs.decTest
│ │ │ ├── dqCopy.decTest
│ │ │ ├── dqCopyNegate.decTest
│ │ │ ├── dqCopySign.decTest
│ │ │ ├── dqDivide.decTest
│ │ │ ├── dqDivideInt.decTest
│ │ │ ├── dqEncode.decTest
│ │ │ ├── dqFMA.decTest
│ │ │ ├── dqInvert.decTest
│ │ │ ├── dqLogB.decTest
│ │ │ ├── dqMax.decTest
│ │ │ ├── dqMaxMag.decTest
│ │ │ ├── dqMin.decTest
│ │ │ ├── dqMinMag.decTest
│ │ │ ├── dqMinus.decTest
│ │ │ ├── dqMultiply.decTest
│ │ │ ├── dqNextMinus.decTest
│ │ │ ├── dqNextPlus.decTest
│ │ │ ├── dqNextToward.decTest
│ │ │ ├── dqOr.decTest
│ │ │ ├── dqPlus.decTest
│ │ │ ├── dqQuantize.decTest
│ │ │ ├── dqReduce.decTest
│ │ │ ├── dqRemainder.decTest
│ │ │ ├── dqRemainderNear.decTest
│ │ │ ├── dqRotate.decTest
│ │ │ ├── dqSameQuantum.decTest
│ │ │ ├── dqScaleB.decTest
│ │ │ ├── dqShift.decTest
│ │ │ ├── dqSubtract.decTest
│ │ │ ├── dqToIntegral.decTest
│ │ │ ├── dqXor.decTest
│ │ │ ├── dsBase.decTest
│ │ │ ├── dsEncode.decTest
│ │ │ ├── exp.decTest
│ │ │ ├── extra.decTest
│ │ │ ├── fma.decTest
│ │ │ ├── inexact.decTest
│ │ │ ├── invert.decTest
│ │ │ ├── ln.decTest
│ │ │ ├── log10.decTest
│ │ │ ├── logb.decTest
│ │ │ ├── max.decTest
│ │ │ ├── maxmag.decTest
│ │ │ ├── min.decTest
│ │ │ ├── minmag.decTest
│ │ │ ├── minus.decTest
│ │ │ ├── multiply.decTest
│ │ │ ├── nextminus.decTest
│ │ │ ├── nextplus.decTest
│ │ │ ├── nexttoward.decTest
│ │ │ ├── or.decTest
│ │ │ ├── plus.decTest
│ │ │ ├── power.decTest
│ │ │ ├── powersqrt.decTest
│ │ │ ├── quantize.decTest
│ │ │ ├── randomBound32.decTest
│ │ │ ├── randoms.decTest
│ │ │ ├── reduce.decTest
│ │ │ ├── remainder.decTest
│ │ │ ├── remainderNear.decTest
│ │ │ ├── rescale.decTest
│ │ │ ├── rotate.decTest
│ │ │ ├── rounding.decTest
│ │ │ ├── samequantum.decTest
│ │ │ ├── scaleb.decTest
│ │ │ ├── shift.decTest
│ │ │ ├── squareroot.decTest
│ │ │ ├── subtract.decTest
│ │ │ ├── testall.decTest
│ │ │ ├── tointegral.decTest
│ │ │ ├── tointegralx.decTest
│ │ │ └── xor.decTest
│ │ ├── doctest_aliases.py
│ │ ├── double_const.py
│ │ ├── empty.vbs
│ │ ├── exception_hierarchy.txt
│ │ ├── ffdh3072.pem
│ │ ├── floating_points.txt
│ │ ├── fork_wait.py
│ │ ├── formatfloat_testcases.txt
│ │ ├── gdb_sample.py
│ │ ├── greyrgb.uue
│ │ ├── ieee754.txt
│ │ ├── imghdrdata
│ │ │ ├── python.bmp
│ │ │ ├── python.gif
│ │ │ ├── python.jpg
│ │ │ ├── python.pbm
│ │ │ ├── python.pgm
│ │ │ ├── python.png
│ │ │ ├── python.ppm
│ │ │ ├── python.ras
│ │ │ ├── python.sgi
│ │ │ ├── python.tiff
│ │ │ └── python.xbm
│ │ ├── infinite_reload.py
│ │ ├── __init__.py
│ │ ├── inspect_fodder2.py
│ │ ├── inspect_fodder.py
│ │ ├── keycert2.pem
│ │ ├── keycert3.pem
│ │ ├── keycert4.pem
│ │ ├── keycert.passwd.pem
│ │ ├── keycert.pem
│ │ ├── leakers
│ │ │ ├── __init__.py
│ │ │ ├── README.txt
│ │ │ ├── test_ctypes.py
│ │ │ ├── test_dictself.py
│ │ │ ├── test_gestalt.py
│ │ │ └── test_selftype.py
│ │ ├── list_tests.py
│ │ ├── lock_tests.py
│ │ ├── __main__.py
│ │ ├── make_ssl_certs.py
│ │ ├── mapping_tests.py
│ │ ├── math_testcases.txt
│ │ ├── _mock_backport.py
│ │ ├── mp_fork_bomb.py
│ │ ├── multibytecodec_support.py
│ │ ├── nokia.pem
│ │ ├── nullbytecert.pem
│ │ ├── nullcert.pem
│ │ ├── outstanding_bugs.py
│ │ ├── pickletester.py
│ │ ├── profilee.py
│ │ ├── pycacert.pem
│ │ ├── pyclbr_input.py
│ │ ├── pydocfodder.py
│ │ ├── pydoc_mod.py
│ │ ├── pystone.py
│ │ ├── pythoninfo.py
│ │ ├── randv2_32.pck
│ │ ├── randv2_64.pck
│ │ ├── randv3.pck
│ │ ├── regrtest.py
│ │ ├── relimport.py
│ │ ├── reperf.py
│ │ ├── re_tests.py
│ │ ├── revocation.crl
│ │ ├── sample_doctest_no_docstrings.py
│ │ ├── sample_doctest_no_doctests.py
│ │ ├── sample_doctest.py
│ │ ├── script_helper.py
│ │ ├── selfsigned_pythontestdotnet.pem
│ │ ├── seq_tests.py
│ │ ├── sgml_input.html
│ │ ├── Sine-1000Hz-300ms.aif
│ │ ├── sortperf.py
│ │ ├── ssl_cert.pem
│ │ ├── ssl_key.passwd.pem
│ │ ├── ssl_key.pem
│ │ ├── ssl_servers.py
│ │ ├── ssltests.py
│ │ ├── string_tests.py
│ │ ├── subprocessdata
│ │ │ └── sigchild_ignore.py
│ │ ├── support
│ │ │ ├── __init__.py
│ │ │ └── script_helper.py
│ │ ├── symlink_support.py
│ │ ├── talos-2019-0758.pem
│ │ ├── test_abc.py
│ │ ├── test_abstract_numbers.py
│ │ ├── test_aepack.py
│ │ ├── test_aifc.py
│ │ ├── test___all__.py
│ │ ├── testall.py
│ │ ├── test_al.py
│ │ ├── test_anydbm.py
│ │ ├── test_applesingle.py
│ │ ├── test_argparse.py
│ │ ├── test_array.py
│ │ ├── test_ascii_formatd.py
│ │ ├── test_ast.py
│ │ ├── test_asynchat.py
│ │ ├── test_asyncore.py
│ │ ├── test_atexit.py
│ │ ├── test_audioop.py
│ │ ├── test_augassign.py
│ │ ├── test_base64.py
│ │ ├── test_bastion.py
│ │ ├── test_bdb.py
│ │ ├── test_bigaddrspace.py
│ │ ├── test_bigmem.py
│ │ ├── test_binascii.py
│ │ ├── test_binhex.py
│ │ ├── test_binop.py
│ │ ├── test_bisect.py
│ │ ├── test_bool.py
│ │ ├── test_bsddb185.py
│ │ ├── test_bsddb3.py
│ │ ├── test_bsddb.py
│ │ ├── test_buffer.py
│ │ ├── test_bufio.py
│ │ ├── test_builtin.py
│ │ ├── test_bytes.py
│ │ ├── test_bz2.py
│ │ ├── test_calendar.py
│ │ ├── test_call.py
│ │ ├── test_capi.py
│ │ ├── test_cd.py
│ │ ├── test_cfgparser.py
│ │ ├── test_cgi.py
│ │ ├── test_charmapcodec.py
│ │ ├── test_class.py
│ │ ├── test_cl.py
│ │ ├── test_cmath.py
│ │ ├── test_cmd_line.py
│ │ ├── test_cmd_line_script.py
│ │ ├── test_cmd.py
│ │ ├── test_codeccallbacks.py
│ │ ├── test_codecencodings_cn.py
│ │ ├── test_codecencodings_hk.py
│ │ ├── test_codecencodings_iso2022.py
│ │ ├── test_codecencodings_jp.py
│ │ ├── test_codecencodings_kr.py
│ │ ├── test_codecencodings_tw.py
│ │ ├── test_codecmaps_cn.py
│ │ ├── test_codecmaps_hk.py
│ │ ├── test_codecmaps_jp.py
│ │ ├── test_codecmaps_kr.py
│ │ ├── test_codecmaps_tw.py
│ │ ├── testcodec.py
│ │ ├── test_codecs.py
│ │ ├── test_codeop.py
│ │ ├── test_code.py
│ │ ├── test_coercion.py
│ │ ├── test_collections.py
│ │ ├── test_colorsys.py
│ │ ├── test_commands.py
│ │ ├── test_compare.py
│ │ ├── test_compileall.py
│ │ ├── test_compile.py
│ │ ├── test_compiler.py
│ │ ├── test_complex_args.py
│ │ ├── test_complex.py
│ │ ├── test_contains.py
│ │ ├── test_contextlib.py
│ │ ├── test_cookielib.py
│ │ ├── test_cookie.py
│ │ ├── test_copy.py
│ │ ├── test_copy_reg.py
│ │ ├── test_cpickle.py
│ │ ├── test_cprofile.py
│ │ ├── test_crypt.py
│ │ ├── test_csv.py
│ │ ├── test_ctypes.py
│ │ ├── test_curses.py
│ │ ├── test_datetime.py
│ │ ├── test_dbm.py
│ │ ├── test_decimal.py
│ │ ├── test_decorators.py
│ │ ├── test_defaultdict.py
│ │ ├── test_deque.py
│ │ ├── test_descr.py
│ │ ├── test_descrtut.py
│ │ ├── test_dictcomps.py
│ │ ├── test_dict.py
│ │ ├── test_dictviews.py
│ │ ├── test_difflib_expect.html
│ │ ├── test_difflib.py
│ │ ├── test_dircache.py
│ │ ├── test_dis.py
│ │ ├── test_distutils.py
│ │ ├── test_dl.py
│ │ ├── test_doctest2.py
│ │ ├── test_doctest2.txt
│ │ ├── test_doctest3.txt
│ │ ├── test_doctest4.txt
│ │ ├── test_doctest.py
│ │ ├── test_doctest.txt
│ │ ├── test_docxmlrpc.py
│ │ ├── test_dumbdbm.py
│ │ ├── test_dummy_threading.py
│ │ ├── test_dummy_thread.py
│ │ ├── test_email_codecs.py
│ │ ├── test_email.py
│ │ ├── test_email_renamed.py
│ │ ├── test_ensurepip.py
│ │ ├── test_enumerate.py
│ │ ├── test_eof.py
│ │ ├── test_epoll.py
│ │ ├── test_errno.py
│ │ ├── test_exceptions.py
│ │ ├── test_exception_variations.py
│ │ ├── test_extcall.py
│ │ ├── test_fcntl.py
│ │ ├── test_file2k.py
│ │ ├── test_filecmp.py
│ │ ├── test_file_eintr.py
│ │ ├── test_fileinput.py
│ │ ├── test_fileio.py
│ │ ├── test_file.py
│ │ ├── test_float.py
│ │ ├── test_fnmatch.py
│ │ ├── test_fork1.py
│ │ ├── test_format.py
│ │ ├── test_fpformat.py
│ │ ├── test_fractions.py
│ │ ├── test_frozen.py
│ │ ├── test_ftplib.py
│ │ ├── test_funcattrs.py
│ │ ├── test_functools.py
│ │ ├── test_future1.py
│ │ ├── test_future2.py
│ │ ├── test_future3.py
│ │ ├── test_future4.py
│ │ ├── test_future5.py
│ │ ├── test_future_builtins.py
│ │ ├── test___future__.py
│ │ ├── test_future.py
│ │ ├── test_gc.py
│ │ ├── test_gdbm.py
│ │ ├── test_gdb.py
│ │ ├── test_generators.py
│ │ ├── test_genericpath.py
│ │ ├── test_genexps.py
│ │ ├── test_getargs2.py
│ │ ├── test_getargs.py
│ │ ├── test_getopt.py
│ │ ├── test_gettext.py
│ │ ├── test_global.py
│ │ ├── test_glob.py
│ │ ├── test_gl.py
│ │ ├── test_grammar.py
│ │ ├── test_grp.py
│ │ ├── test_gzip.py
│ │ ├── test_hashlib.py
│ │ ├── test_hash.py
│ │ ├── test_heapq.py
│ │ ├── test_hmac.py
│ │ ├── test_hotshot.py
│ │ ├── test_htmllib.py
│ │ ├── test_htmlparser.py
│ │ ├── test_httplib.py
│ │ ├── test_httpservers.py
│ │ ├── test_idle.py
│ │ ├── test_imageop.py
│ │ ├── test_imaplib.py
│ │ ├── test_imgfile.py
│ │ ├── test_imghdr.py
│ │ ├── testimgr.uue
│ │ ├── testimg.uue
│ │ ├── test_importhooks.py
│ │ ├── test_importlib.py
│ │ ├── test_import_magic.py
│ │ ├── test_import.py
│ │ ├── test_imp.py
│ │ ├── test_index.py
│ │ ├── test_inspect.py
│ │ ├── test_int_literal.py
│ │ ├── test_int.py
│ │ ├── test_ioctl.py
│ │ ├── test_io.py
│ │ ├── test_isinstance.py
│ │ ├── test_iterlen.py
│ │ ├── test_iter.py
│ │ ├── test_itertools.py
│ │ ├── test_json.py
│ │ ├── test_kqueue.py
│ │ ├── test_largefile.py
│ │ ├── test_lib2to3.py
│ │ ├── test_linecache.py
│ │ ├── test_linuxaudiodev.py
│ │ ├── test_list.py
│ │ ├── test__locale.py
│ │ ├── test_locale.py
│ │ ├── test_logging.py
│ │ ├── test_longexp.py
│ │ ├── test_long_future.py
│ │ ├── test_long.py
│ │ ├── test_macos.py
│ │ ├── test_macostools.py
│ │ ├── test_macpath.py
│ │ ├── test_macurl2path.py
│ │ ├── test_mailbox.py
│ │ ├── test_marshal.py
│ │ ├── test_math.py
│ │ ├── test_md5.py
│ │ ├── test_memoryio.py
│ │ ├── test_memoryview.py
│ │ ├── test_mhlib.py
│ │ ├── test_mimetools.py
│ │ ├── test_mimetypes.py
│ │ ├── test_MimeWriter.py
│ │ ├── test_minidom.py
│ │ ├── test_mmap.py
│ │ ├── test_modulefinder.py
│ │ ├── test_module.py
│ │ ├── test_msilib.py
│ │ ├── test_multibytecodec.py
│ │ ├── test_multifile.py
│ │ ├── test_multiprocessing.py
│ │ ├── test_mutants.py
│ │ ├── test_mutex.py
│ │ ├── test_netrc.py
│ │ ├── test_new.py
│ │ ├── test_nis.py
│ │ ├── test_nntplib.py
│ │ ├── test_normalization.py
│ │ ├── test_ntpath.py
│ │ ├── test_old_mailbox.py
│ │ ├── test_opcodes.py
│ │ ├── test_openpty.py
│ │ ├── test_operator.py
│ │ ├── test_optparse.py
│ │ ├── test_ordered_dict.py
│ │ ├── test_os.py
│ │ ├── test_ossaudiodev.py
│ │ ├── test__osx_support.py
│ │ ├── test_parser.py
│ │ ├── test_pdb.py
│ │ ├── test_peepholer.py
│ │ ├── test_pep247.py
│ │ ├── test_pep277.py
│ │ ├── test_pep352.py
│ │ ├── test_pickle.py
│ │ ├── test_pickletools.py
│ │ ├── test_pipes.py
│ │ ├── test_pkgimport.py
│ │ ├── test_pkg.py
│ │ ├── test_pkgutil.py
│ │ ├── test_platform.py
│ │ ├── test_plistlib.py
│ │ ├── test_poll.py
│ │ ├── test_popen2.py
│ │ ├── test_popen.py
│ │ ├── test_poplib.py
│ │ ├── test_posixpath.py
│ │ ├── test_posix.py
│ │ ├── test_pow.py
│ │ ├── test_pprint.py
│ │ ├── test_print.py
│ │ ├── test_profile.py
│ │ ├── test_property.py
│ │ ├── test_pstats.py
│ │ ├── test_pty.py
│ │ ├── test_pwd.py
│ │ ├── test_py3kwarn.py
│ │ ├── test_pyclbr.py
│ │ ├── test_py_compile.py
│ │ ├── test_pydoc.py
│ │ ├── test_pyexpat.py
│ │ ├── test_queue.py
│ │ ├── test_quopri.py
│ │ ├── test_random.py
│ │ ├── test_readline.py
│ │ ├── test_regrtest.py
│ │ ├── test_repr.py
│ │ ├── test_re.py
│ │ ├── test_resource.py
│ │ ├── test_rfc822.py
│ │ ├── testrgb.uue
│ │ ├── test_richcmp.py
│ │ ├── test_rlcompleter.py
│ │ ├── test_robotparser.py
│ │ ├── test_runpy.py
│ │ ├── test_sax.py
│ │ ├── test_scope.py
│ │ ├── test_scriptpackages.py
│ │ ├── test_select.py
│ │ ├── test_setcomps.py
│ │ ├── test_set.py
│ │ ├── test_sets.py
│ │ ├── test_sgmllib.py
│ │ ├── test_sha.py
│ │ ├── test_shelve.py
│ │ ├── test_shlex.py
│ │ ├── test_shutil.py
│ │ ├── test_signal.py
│ │ ├── test_SimpleHTTPServer.py
│ │ ├── test_site.py
│ │ ├── test_slice.py
│ │ ├── test_smtplib.py
│ │ ├── test_smtpnet.py
│ │ ├── test_socket.py
│ │ ├── test_socketserver.py
│ │ ├── test_softspace.py
│ │ ├── test_sort.py
│ │ ├── test_source_encoding.py
│ │ ├── test_spwd.py
│ │ ├── test_sqlite.py
│ │ ├── test_ssl.py
│ │ ├── test_startfile.py
│ │ ├── test_stat.py
│ │ ├── test_strftime.py
│ │ ├── test_StringIO.py
│ │ ├── test_stringprep.py
│ │ ├── test_string.py
│ │ ├── test_strop.py
│ │ ├── test_strptime.py
│ │ ├── test_str.py
│ │ ├── test_strtod.py
│ │ ├── test_structmembers.py
│ │ ├── test_struct.py
│ │ ├── test_structseq.py
│ │ ├── test_subprocess.py
│ │ ├── test_sunaudiodev.py
│ │ ├── test_sunau.py
│ │ ├── test_sundry.py
│ │ ├── test_support.py
│ │ ├── test_symtable.py
│ │ ├── test_syntax.py
│ │ ├── test_sysconfig.py
│ │ ├── test_sys.py
│ │ ├── test_sys_setprofile.py
│ │ ├── test_sys_settrace.py
│ │ ├── test_tarfile.py
│ │ ├── testtar.tar
│ │ ├── test_tcl.py
│ │ ├── test_telnetlib.py
│ │ ├── test_tempfile.py
│ │ ├── test_test_support.py
│ │ ├── test_textwrap.py
│ │ ├── test_threaded_import.py
│ │ ├── test_threadedtempfile.py
│ │ ├── test_threading_local.py
│ │ ├── test_threading.py
│ │ ├── test_thread.py
│ │ ├── test_threadsignals.py
│ │ ├── test_timeit.py
│ │ ├── test_timeout.py
│ │ ├── test_time.py
│ │ ├── test_tk.py
│ │ ├── test_tokenize.py
│ │ ├── test_tools.py
│ │ ├── test_traceback.py
│ │ ├── test_trace.py
│ │ ├── test_transformer.py
│ │ ├── test_ttk_guionly.py
│ │ ├── test_ttk_textonly.py
│ │ ├── test_tuple.py
│ │ ├── test_turtle.py
│ │ ├── test_typechecks.py
│ │ ├── test_types.py
│ │ ├── test_ucn.py
│ │ ├── test_unary.py
│ │ ├── test_undocumented_details.py
│ │ ├── test_unicodedata.py
│ │ ├── test_unicode_file.py
│ │ ├── test_unicode.py
│ │ ├── test_unittest.py
│ │ ├── test_univnewlines2k.py
│ │ ├── test_univnewlines.py
│ │ ├── test_unpack.py
│ │ ├── test_urllib2_localnet.py
│ │ ├── test_urllib2net.py
│ │ ├── test_urllib2.py
│ │ ├── test_urllibnet.py
│ │ ├── test_urllib.py
│ │ ├── test_urlparse.py
│ │ ├── test_userdict.py
│ │ ├── test_userlist.py
│ │ ├── test_userstring.py
│ │ ├── test_uuid.py
│ │ ├── test_uu.py
│ │ ├── test_wait3.py
│ │ ├── test_wait4.py
│ │ ├── test_warnings.py
│ │ ├── test_wave.py
│ │ ├── test_weakref.py
│ │ ├── test_weakset.py
│ │ ├── test_whichdb.py
│ │ ├── test_winreg.py
│ │ ├── test_winsound.py
│ │ ├── test_with.py
│ │ ├── test_wsgiref.py
│ │ ├── test_xdrlib.py
│ │ ├── test_xml_etree_c.py
│ │ ├── test_xml_etree.py
│ │ ├── test_xmllib.py
│ │ ├── test_xmlrpc.py
│ │ ├── test_xpickle.py
│ │ ├── test_xrange.py
│ │ ├── test_zipfile64.py
│ │ ├── test_zipfile.py
│ │ ├── test_zipimport.py
│ │ ├── test_zipimport_support.py
│ │ ├── test_zlib.py
│ │ ├── tf_inherit_check.py
│ │ ├── threaded_import_hangers.py
│ │ ├── time_hashlib.py
│ │ ├── tokenize_tests.txt
│ │ ├── tracedmodules
│ │ │ ├── __init__.py
│ │ │ └── testmod.py
│ │ ├── warning_tests.py
│ │ ├── win_console_handler.py
│ │ ├── xmltestdata
│ │ │ ├── expat224_utf8_bug.xml
│ │ │ ├── simple-ns.xml
│ │ │ ├── simple.xml
│ │ │ ├── test.xml
│ │ │ └── test.xml.out
│ │ ├── xmltests.py
│ │ └── zipdir.zip
│ ├── textwrap.py
│ ├── textwrap.pyc
│ ├── this.py
│ ├── _threading_local.py
│ ├── threading.py
│ ├── threading.pyc
│ ├── timeit.py
│ ├── toaiff.py
│ ├── tokenize.py
│ ├── tokenize.pyc
│ ├── token.py
│ ├── token.pyc
│ ├── traceback.py
│ ├── traceback.pyc
│ ├── trace.py
│ ├── tty.py
│ ├── types.py
│ ├── types.pyc
│ ├── unittest
│ │ ├── case.py
│ │ ├── __init__.py
│ │ ├── loader.py
│ │ ├── __main__.py
│ │ ├── main.py
│ │ ├── result.py
│ │ ├── runner.py
│ │ ├── signals.py
│ │ ├── suite.py
│ │ ├── test
│ │ │ ├── dummy.py
│ │ │ ├── __init__.py
│ │ │ ├── support.py
│ │ │ ├── test_assertions.py
│ │ │ ├── test_break.py
│ │ │ ├── test_case.py
│ │ │ ├── test_discovery.py
│ │ │ ├── test_functiontestcase.py
│ │ │ ├── test_loader.py
│ │ │ ├── test_program.py
│ │ │ ├── test_result.py
│ │ │ ├── test_runner.py
│ │ │ ├── test_setups.py
│ │ │ ├── test_skipping.py
│ │ │ └── test_suite.py
│ │ └── util.py
│ ├── urllib2.py
│ ├── urllib2.pyc
│ ├── urllib.py
│ ├── urllib.pyc
│ ├── urlparse.py
│ ├── urlparse.pyc
│ ├── UserDict.py
│ ├── UserDict.pyc
│ ├── UserList.py
│ ├── user.py
│ ├── UserString.py
│ ├── uuid.py
│ ├── uu.py
│ ├── uu.pyc
│ ├── warnings.py
│ ├── warnings.pyc
│ ├── wave.py
│ ├── weakref.py
│ ├── weakref.pyc
│ ├── _weakrefset.py
│ ├── _weakrefset.pyc
│ ├── webbrowser.py
│ ├── whichdb.py
│ ├── wsgiref
│ │ ├── handlers.py
│ │ ├── headers.py
│ │ ├── __init__.py
│ │ ├── simple_server.py
│ │ ├── util.py
│ │ └── validate.py
│ ├── xdrlib.py
│ ├── xml
│ │ ├── dom
│ │ │ ├── domreg.py
│ │ │ ├── expatbuilder.py
│ │ │ ├── __init__.py
│ │ │ ├── minicompat.py
│ │ │ ├── minidom.py
│ │ │ ├── NodeFilter.py
│ │ │ ├── pulldom.py
│ │ │ └── xmlbuilder.py
│ │ ├── etree
│ │ │ ├── cElementTree.py
│ │ │ ├── cElementTree.pyc
│ │ │ ├── ElementInclude.py
│ │ │ ├── ElementPath.py
│ │ │ ├── ElementPath.pyc
│ │ │ ├── ElementTree.py
│ │ │ ├── ElementTree.pyc
│ │ │ ├── __init__.py
│ │ │ └── __init__.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── parsers
│ │ │ ├── expat.py
│ │ │ ├── expat.pyc
│ │ │ ├── __init__.py
│ │ │ └── __init__.pyc
│ │ └── sax
│ │ ├── _exceptions.py
│ │ ├── _exceptions.pyc
│ │ ├── expatreader.py
│ │ ├── handler.py
│ │ ├── handler.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── saxutils.py
│ │ ├── saxutils.pyc
│ │ ├── xmlreader.py
│ │ └── xmlreader.pyc
│ ├── xmllib.py
│ ├── xmlrpclib.py
│ ├── xmlrpclib.pyc
│ ├── zipfile.py
│ └── zipfile.pyc
├── libs
│ ├── _bsddb.lib
│ ├── bz2.lib
│ ├── _ctypes.lib
│ ├── _ctypes_test.lib
│ ├── _elementtree.lib
│ ├── _hashlib.lib
│ ├── libpython27.a
│ ├── _msi.lib
│ ├── _multiprocessing.lib
│ ├── pyexpat.lib
│ ├── python27.lib
│ ├── select.lib
│ ├── _socket.lib
│ ├── _sqlite3.lib
│ ├── _ssl.lib
│ ├── _testcapi.lib
│ ├── _tkinter.lib
│ ├── unicodedata.lib
│ └── winsound.lib
├── LICENSE.txt
├── Microsoft.VC90.CRT.manifest
├── msvcr90.dll
├── NEWS.txt
├── python27.dll
├── python.exe
├── pythonw.exe
├── README.txt
├── Scripts
│ ├── easy_install-2.7.exe
│ ├── easy_install.exe
│ ├── pip2.7.exe
│ ├── pip2.exe
│ └── pip.exe
├── tcl
│ ├── dde1.3
│ │ ├── pkgIndex.tcl
│ │ └── tcldde13.dll
│ ├── reg1.2
│ │ ├── pkgIndex.tcl
│ │ └── tclreg12.dll
│ ├── tcl8
│ │ ├── 8.4
│ │ │ ├── http-2.7.12.tm
│ │ │ ├── platform
│ │ │ │ └── shell-1.1.4.tm
│ │ │ └── platform-1.0.12.tm
│ │ └── 8.5
│ │ ├── msgcat-1.5.2.tm
│ │ └── tcltest-2.3.5.tm
│ ├── tcl8.5
│ │ ├── auto.tcl
│ │ ├── clock.tcl
│ │ ├── encoding
│ │ │ ├── ascii.enc
│ │ │ ├── big5.enc
│ │ │ ├── cp1250.enc
│ │ │ ├── cp1251.enc
│ │ │ ├── cp1252.enc
│ │ │ ├── cp1253.enc
│ │ │ ├── cp1254.enc
│ │ │ ├── cp1255.enc
│ │ │ ├── cp1256.enc
│ │ │ ├── cp1257.enc
│ │ │ ├── cp1258.enc
│ │ │ ├── cp437.enc
│ │ │ ├── cp737.enc
│ │ │ ├── cp775.enc
│ │ │ ├── cp850.enc
│ │ │ ├── cp852.enc
│ │ │ ├── cp855.enc
│ │ │ ├── cp857.enc
│ │ │ ├── cp860.enc
│ │ │ ├── cp861.enc
│ │ │ ├── cp862.enc
│ │ │ ├── cp863.enc
│ │ │ ├── cp864.enc
│ │ │ ├── cp865.enc
│ │ │ ├── cp866.enc
│ │ │ ├── cp869.enc
│ │ │ ├── cp874.enc
│ │ │ ├── cp932.enc
│ │ │ ├── cp936.enc
│ │ │ ├── cp949.enc
│ │ │ ├── cp950.enc
│ │ │ ├── dingbats.enc
│ │ │ ├── ebcdic.enc
│ │ │ ├── euc-cn.enc
│ │ │ ├── euc-jp.enc
│ │ │ ├── euc-kr.enc
│ │ │ ├── gb12345.enc
│ │ │ ├── gb1988.enc
│ │ │ ├── gb2312.enc
│ │ │ ├── gb2312-raw.enc
│ │ │ ├── iso2022.enc
│ │ │ ├── iso2022-jp.enc
│ │ │ ├── iso2022-kr.enc
│ │ │ ├── iso8859-10.enc
│ │ │ ├── iso8859-13.enc
│ │ │ ├── iso8859-14.enc
│ │ │ ├── iso8859-15.enc
│ │ │ ├── iso8859-16.enc
│ │ │ ├── iso8859-1.enc
│ │ │ ├── iso8859-2.enc
│ │ │ ├── iso8859-3.enc
│ │ │ ├── iso8859-4.enc
│ │ │ ├── iso8859-5.enc
│ │ │ ├── iso8859-6.enc
│ │ │ ├── iso8859-7.enc
│ │ │ ├── iso8859-8.enc
│ │ │ ├── iso8859-9.enc
│ │ │ ├── jis0201.enc
│ │ │ ├── jis0208.enc
│ │ │ ├── jis0212.enc
│ │ │ ├── koi8-r.enc
│ │ │ ├── koi8-u.enc
│ │ │ ├── ksc5601.enc
│ │ │ ├── macCentEuro.enc
│ │ │ ├── macCroatian.enc
│ │ │ ├── macCyrillic.enc
│ │ │ ├── macDingbats.enc
│ │ │ ├── macGreek.enc
│ │ │ ├── macIceland.enc
│ │ │ ├── macJapan.enc
│ │ │ ├── macRoman.enc
│ │ │ ├── macRomania.enc
│ │ │ ├── macThai.enc
│ │ │ ├── macTurkish.enc
│ │ │ ├── macUkraine.enc
│ │ │ ├── shiftjis.enc
│ │ │ ├── symbol.enc
│ │ │ └── tis-620.enc
│ │ ├── history.tcl
│ │ ├── http1.0
│ │ │ ├── http.tcl
│ │ │ └── pkgIndex.tcl
│ │ ├── init.tcl
│ │ ├── msgs
│ │ │ ├── af.msg
│ │ │ ├── af_za.msg
│ │ │ ├── ar_in.msg
│ │ │ ├── ar_jo.msg
│ │ │ ├── ar_lb.msg
│ │ │ ├── ar.msg
│ │ │ ├── ar_sy.msg
│ │ │ ├── be.msg
│ │ │ ├── bg.msg
│ │ │ ├── bn_in.msg
│ │ │ ├── bn.msg
│ │ │ ├── ca.msg
│ │ │ ├── cs.msg
│ │ │ ├── da.msg
│ │ │ ├── de_at.msg
│ │ │ ├── de_be.msg
│ │ │ ├── de.msg
│ │ │ ├── el.msg
│ │ │ ├── en_au.msg
│ │ │ ├── en_be.msg
│ │ │ ├── en_bw.msg
│ │ │ ├── en_ca.msg
│ │ │ ├── en_gb.msg
│ │ │ ├── en_hk.msg
│ │ │ ├── en_ie.msg
│ │ │ ├── en_in.msg
│ │ │ ├── en_nz.msg
│ │ │ ├── en_ph.msg
│ │ │ ├── en_sg.msg
│ │ │ ├── en_za.msg
│ │ │ ├── en_zw.msg
│ │ │ ├── eo.msg
│ │ │ ├── es_ar.msg
│ │ │ ├── es_bo.msg
│ │ │ ├── es_cl.msg
│ │ │ ├── es_co.msg
│ │ │ ├── es_cr.msg
│ │ │ ├── es_do.msg
│ │ │ ├── es_ec.msg
│ │ │ ├── es_gt.msg
│ │ │ ├── es_hn.msg
│ │ │ ├── es.msg
│ │ │ ├── es_mx.msg
│ │ │ ├── es_ni.msg
│ │ │ ├── es_pa.msg
│ │ │ ├── es_pe.msg
│ │ │ ├── es_pr.msg
│ │ │ ├── es_py.msg
│ │ │ ├── es_sv.msg
│ │ │ ├── es_uy.msg
│ │ │ ├── es_ve.msg
│ │ │ ├── et.msg
│ │ │ ├── eu_es.msg
│ │ │ ├── eu.msg
│ │ │ ├── fa_in.msg
│ │ │ ├── fa_ir.msg
│ │ │ ├── fa.msg
│ │ │ ├── fi.msg
│ │ │ ├── fo_fo.msg
│ │ │ ├── fo.msg
│ │ │ ├── fr_be.msg
│ │ │ ├── fr_ca.msg
│ │ │ ├── fr_ch.msg
│ │ │ ├── fr.msg
│ │ │ ├── ga_ie.msg
│ │ │ ├── ga.msg
│ │ │ ├── gl_es.msg
│ │ │ ├── gl.msg
│ │ │ ├── gv_gb.msg
│ │ │ ├── gv.msg
│ │ │ ├── he.msg
│ │ │ ├── hi_in.msg
│ │ │ ├── hi.msg
│ │ │ ├── hr.msg
│ │ │ ├── hu.msg
│ │ │ ├── id_id.msg
│ │ │ ├── id.msg
│ │ │ ├── is.msg
│ │ │ ├── it_ch.msg
│ │ │ ├── it.msg
│ │ │ ├── ja.msg
│ │ │ ├── kl_gl.msg
│ │ │ ├── kl.msg
│ │ │ ├── kok_in.msg
│ │ │ ├── kok.msg
│ │ │ ├── ko_kr.msg
│ │ │ ├── ko.msg
│ │ │ ├── kw_gb.msg
│ │ │ ├── kw.msg
│ │ │ ├── lt.msg
│ │ │ ├── lv.msg
│ │ │ ├── mk.msg
│ │ │ ├── mr_in.msg
│ │ │ ├── mr.msg
│ │ │ ├── ms.msg
│ │ │ ├── ms_my.msg
│ │ │ ├── mt.msg
│ │ │ ├── nb.msg
│ │ │ ├── nl_be.msg
│ │ │ ├── nl.msg
│ │ │ ├── nn.msg
│ │ │ ├── pl.msg
│ │ │ ├── pt_br.msg
│ │ │ ├── pt.msg
│ │ │ ├── ro.msg
│ │ │ ├── ru.msg
│ │ │ ├── ru_ua.msg
│ │ │ ├── sh.msg
│ │ │ ├── sk.msg
│ │ │ ├── sl.msg
│ │ │ ├── sq.msg
│ │ │ ├── sr.msg
│ │ │ ├── sv.msg
│ │ │ ├── sw.msg
│ │ │ ├── ta_in.msg
│ │ │ ├── ta.msg
│ │ │ ├── te_in.msg
│ │ │ ├── te.msg
│ │ │ ├── th.msg
│ │ │ ├── tr.msg
│ │ │ ├── uk.msg
│ │ │ ├── vi.msg
│ │ │ ├── zh_cn.msg
│ │ │ ├── zh_hk.msg
│ │ │ ├── zh.msg
│ │ │ ├── zh_sg.msg
│ │ │ └── zh_tw.msg
│ │ ├── opt0.4
│ │ │ ├── optparse.tcl
│ │ │ └── pkgIndex.tcl
│ │ ├── package.tcl
│ │ ├── parray.tcl
│ │ ├── safe.tcl
│ │ ├── tclIndex
│ │ ├── tm.tcl
│ │ ├── tzdata
│ │ │ ├── Africa
│ │ │ │ ├── Abidjan
│ │ │ │ ├── Accra
│ │ │ │ ├── Addis_Ababa
│ │ │ │ ├── Algiers
│ │ │ │ ├── Asmara
│ │ │ │ ├── Asmera
│ │ │ │ ├── Bamako
│ │ │ │ ├── Bangui
│ │ │ │ ├── Banjul
│ │ │ │ ├── Bissau
│ │ │ │ ├── Blantyre
│ │ │ │ ├── Brazzaville
│ │ │ │ ├── Bujumbura
│ │ │ │ ├── Cairo
│ │ │ │ ├── Casablanca
│ │ │ │ ├── Ceuta
│ │ │ │ ├── Conakry
│ │ │ │ ├── Dakar
│ │ │ │ ├── Dar_es_Salaam
│ │ │ │ ├── Djibouti
│ │ │ │ ├── Douala
│ │ │ │ ├── El_Aaiun
│ │ │ │ ├── Freetown
│ │ │ │ ├── Gaborone
│ │ │ │ ├── Harare
│ │ │ │ ├── Johannesburg
│ │ │ │ ├── Juba
│ │ │ │ ├── Kampala
│ │ │ │ ├── Khartoum
│ │ │ │ ├── Kigali
│ │ │ │ ├── Kinshasa
│ │ │ │ ├── Lagos
│ │ │ │ ├── Libreville
│ │ │ │ ├── Lome
│ │ │ │ ├── Luanda
│ │ │ │ ├── Lubumbashi
│ │ │ │ ├── Lusaka
│ │ │ │ ├── Malabo
│ │ │ │ ├── Maputo
│ │ │ │ ├── Maseru
│ │ │ │ ├── Mbabane
│ │ │ │ ├── Mogadishu
│ │ │ │ ├── Monrovia
│ │ │ │ ├── Nairobi
│ │ │ │ ├── Ndjamena
│ │ │ │ ├── Niamey
│ │ │ │ ├── Nouakchott
│ │ │ │ ├── Ouagadougou
│ │ │ │ ├── Porto-Novo
│ │ │ │ ├── Sao_Tome
│ │ │ │ ├── Timbuktu
│ │ │ │ ├── Tripoli
│ │ │ │ ├── Tunis
│ │ │ │ └── Windhoek
│ │ │ ├── America
│ │ │ │ ├── Adak
│ │ │ │ ├── Anchorage
│ │ │ │ ├── Anguilla
│ │ │ │ ├── Antigua
│ │ │ │ ├── Araguaina
│ │ │ │ ├── Argentina
│ │ │ │ │ ├── Buenos_Aires
│ │ │ │ │ ├── Catamarca
│ │ │ │ │ ├── ComodRivadavia
│ │ │ │ │ ├── Cordoba
│ │ │ │ │ ├── Jujuy
│ │ │ │ │ ├── La_Rioja
│ │ │ │ │ ├── Mendoza
│ │ │ │ │ ├── Rio_Gallegos
│ │ │ │ │ ├── Salta
│ │ │ │ │ ├── San_Juan
│ │ │ │ │ ├── San_Luis
│ │ │ │ │ ├── Tucuman
│ │ │ │ │ └── Ushuaia
│ │ │ │ ├── Aruba
│ │ │ │ ├── Asuncion
│ │ │ │ ├── Atikokan
│ │ │ │ ├── Atka
│ │ │ │ ├── Bahia
│ │ │ │ ├── Bahia_Banderas
│ │ │ │ ├── Barbados
│ │ │ │ ├── Belem
│ │ │ │ ├── Belize
│ │ │ │ ├── Blanc-Sablon
│ │ │ │ ├── Boa_Vista
│ │ │ │ ├── Bogota
│ │ │ │ ├── Boise
│ │ │ │ ├── Buenos_Aires
│ │ │ │ ├── Cambridge_Bay
│ │ │ │ ├── Campo_Grande
│ │ │ │ ├── Cancun
│ │ │ │ ├── Caracas
│ │ │ │ ├── Catamarca
│ │ │ │ ├── Cayenne
│ │ │ │ ├── Cayman
│ │ │ │ ├── Chicago
│ │ │ │ ├── Chihuahua
│ │ │ │ ├── Coral_Harbour
│ │ │ │ ├── Cordoba
│ │ │ │ ├── Costa_Rica
│ │ │ │ ├── Creston
│ │ │ │ ├── Cuiaba
│ │ │ │ ├── Curacao
│ │ │ │ ├── Danmarkshavn
│ │ │ │ ├── Dawson
│ │ │ │ ├── Dawson_Creek
│ │ │ │ ├── Denver
│ │ │ │ ├── Detroit
│ │ │ │ ├── Dominica
│ │ │ │ ├── Edmonton
│ │ │ │ ├── Eirunepe
│ │ │ │ ├── El_Salvador
│ │ │ │ ├── Ensenada
│ │ │ │ ├── Fortaleza
│ │ │ │ ├── Fort_Wayne
│ │ │ │ ├── Glace_Bay
│ │ │ │ ├── Godthab
│ │ │ │ ├── Goose_Bay
│ │ │ │ ├── Grand_Turk
│ │ │ │ ├── Grenada
│ │ │ │ ├── Guadeloupe
│ │ │ │ ├── Guatemala
│ │ │ │ ├── Guayaquil
│ │ │ │ ├── Guyana
│ │ │ │ ├── Halifax
│ │ │ │ ├── Havana
│ │ │ │ ├── Hermosillo
│ │ │ │ ├── Indiana
│ │ │ │ │ ├── Indianapolis
│ │ │ │ │ ├── Knox
│ │ │ │ │ ├── Marengo
│ │ │ │ │ ├── Petersburg
│ │ │ │ │ ├── Tell_City
│ │ │ │ │ ├── Vevay
│ │ │ │ │ ├── Vincennes
│ │ │ │ │ └── Winamac
│ │ │ │ ├── Indianapolis
│ │ │ │ ├── Inuvik
│ │ │ │ ├── Iqaluit
│ │ │ │ ├── Jamaica
│ │ │ │ ├── Jujuy
│ │ │ │ ├── Juneau
│ │ │ │ ├── Kentucky
│ │ │ │ │ ├── Louisville
│ │ │ │ │ └── Monticello
│ │ │ │ ├── Knox_IN
│ │ │ │ ├── Kralendijk
│ │ │ │ ├── La_Paz
│ │ │ │ ├── Lima
│ │ │ │ ├── Los_Angeles
│ │ │ │ ├── Louisville
│ │ │ │ ├── Lower_Princes
│ │ │ │ ├── Maceio
│ │ │ │ ├── Managua
│ │ │ │ ├── Manaus
│ │ │ │ ├── Marigot
│ │ │ │ ├── Martinique
│ │ │ │ ├── Matamoros
│ │ │ │ ├── Mazatlan
│ │ │ │ ├── Mendoza
│ │ │ │ ├── Menominee
│ │ │ │ ├── Merida
│ │ │ │ ├── Metlakatla
│ │ │ │ ├── Mexico_City
│ │ │ │ ├── Miquelon
│ │ │ │ ├── Moncton
│ │ │ │ ├── Monterrey
│ │ │ │ ├── Montevideo
│ │ │ │ ├── Montreal
│ │ │ │ ├── Montserrat
│ │ │ │ ├── Nassau
│ │ │ │ ├── New_York
│ │ │ │ ├── Nipigon
│ │ │ │ ├── Nome
│ │ │ │ ├── Noronha
│ │ │ │ ├── North_Dakota
│ │ │ │ │ ├── Beulah
│ │ │ │ │ ├── Center
│ │ │ │ │ └── New_Salem
│ │ │ │ ├── Ojinaga
│ │ │ │ ├── Panama
│ │ │ │ ├── Pangnirtung
│ │ │ │ ├── Paramaribo
│ │ │ │ ├── Phoenix
│ │ │ │ ├── Port-au-Prince
│ │ │ │ ├── Porto_Acre
│ │ │ │ ├── Port_of_Spain
│ │ │ │ ├── Porto_Velho
│ │ │ │ ├── Puerto_Rico
│ │ │ │ ├── Rainy_River
│ │ │ │ ├── Rankin_Inlet
│ │ │ │ ├── Recife
│ │ │ │ ├── Regina
│ │ │ │ ├── Resolute
│ │ │ │ ├── Rio_Branco
│ │ │ │ ├── Rosario
│ │ │ │ ├── Santa_Isabel
│ │ │ │ ├── Santarem
│ │ │ │ ├── Santiago
│ │ │ │ ├── Santo_Domingo
│ │ │ │ ├── Sao_Paulo
│ │ │ │ ├── Scoresbysund
│ │ │ │ ├── Shiprock
│ │ │ │ ├── Sitka
│ │ │ │ ├── St_Barthelemy
│ │ │ │ ├── St_Johns
│ │ │ │ ├── St_Kitts
│ │ │ │ ├── St_Lucia
│ │ │ │ ├── St_Thomas
│ │ │ │ ├── St_Vincent
│ │ │ │ ├── Swift_Current
│ │ │ │ ├── Tegucigalpa
│ │ │ │ ├── Thule
│ │ │ │ ├── Thunder_Bay
│ │ │ │ ├── Tijuana
│ │ │ │ ├── Toronto
│ │ │ │ ├── Tortola
│ │ │ │ ├── Vancouver
│ │ │ │ ├── Virgin
│ │ │ │ ├── Whitehorse
│ │ │ │ ├── Winnipeg
│ │ │ │ ├── Yakutat
│ │ │ │ └── Yellowknife
│ │ │ ├── Antarctica
│ │ │ │ ├── Casey
│ │ │ │ ├── Davis
│ │ │ │ ├── DumontDUrville
│ │ │ │ ├── Macquarie
│ │ │ │ ├── Mawson
│ │ │ │ ├── McMurdo
│ │ │ │ ├── Palmer
│ │ │ │ ├── Rothera
│ │ │ │ ├── South_Pole
│ │ │ │ ├── Syowa
│ │ │ │ └── Vostok
│ │ │ ├── Arctic
│ │ │ │ └── Longyearbyen
│ │ │ ├── Asia
│ │ │ │ ├── Aden
│ │ │ │ ├── Almaty
│ │ │ │ ├── Amman
│ │ │ │ ├── Anadyr
│ │ │ │ ├── Aqtau
│ │ │ │ ├── Aqtobe
│ │ │ │ ├── Ashgabat
│ │ │ │ ├── Ashkhabad
│ │ │ │ ├── Baghdad
│ │ │ │ ├── Bahrain
│ │ │ │ ├── Baku
│ │ │ │ ├── Bangkok
│ │ │ │ ├── Beirut
│ │ │ │ ├── Bishkek
│ │ │ │ ├── Brunei
│ │ │ │ ├── Calcutta
│ │ │ │ ├── Choibalsan
│ │ │ │ ├── Chongqing
│ │ │ │ ├── Chungking
│ │ │ │ ├── Colombo
│ │ │ │ ├── Dacca
│ │ │ │ ├── Damascus
│ │ │ │ ├── Dhaka
│ │ │ │ ├── Dili
│ │ │ │ ├── Dubai
│ │ │ │ ├── Dushanbe
│ │ │ │ ├── Gaza
│ │ │ │ ├── Harbin
│ │ │ │ ├── Hebron
│ │ │ │ ├── Ho_Chi_Minh
│ │ │ │ ├── Hong_Kong
│ │ │ │ ├── Hovd
│ │ │ │ ├── Irkutsk
│ │ │ │ ├── Istanbul
│ │ │ │ ├── Jakarta
│ │ │ │ ├── Jayapura
│ │ │ │ ├── Jerusalem
│ │ │ │ ├── Kabul
│ │ │ │ ├── Kamchatka
│ │ │ │ ├── Karachi
│ │ │ │ ├── Kashgar
│ │ │ │ ├── Kathmandu
│ │ │ │ ├── Katmandu
│ │ │ │ ├── Khandyga
│ │ │ │ ├── Kolkata
│ │ │ │ ├── Krasnoyarsk
│ │ │ │ ├── Kuala_Lumpur
│ │ │ │ ├── Kuching
│ │ │ │ ├── Kuwait
│ │ │ │ ├── Macao
│ │ │ │ ├── Macau
│ │ │ │ ├── Magadan
│ │ │ │ ├── Makassar
│ │ │ │ ├── Manila
│ │ │ │ ├── Muscat
│ │ │ │ ├── Nicosia
│ │ │ │ ├── Novokuznetsk
│ │ │ │ ├── Novosibirsk
│ │ │ │ ├── Omsk
│ │ │ │ ├── Oral
│ │ │ │ ├── Phnom_Penh
│ │ │ │ ├── Pontianak
│ │ │ │ ├── Pyongyang
│ │ │ │ ├── Qatar
│ │ │ │ ├── Qyzylorda
│ │ │ │ ├── Rangoon
│ │ │ │ ├── Riyadh
│ │ │ │ ├── Saigon
│ │ │ │ ├── Sakhalin
│ │ │ │ ├── Samarkand
│ │ │ │ ├── Seoul
│ │ │ │ ├── Shanghai
│ │ │ │ ├── Singapore
│ │ │ │ ├── Taipei
│ │ │ │ ├── Tashkent
│ │ │ │ ├── Tbilisi
│ │ │ │ ├── Tehran
│ │ │ │ ├── Tel_Aviv
│ │ │ │ ├── Thimbu
│ │ │ │ ├── Thimphu
│ │ │ │ ├── Tokyo
│ │ │ │ ├── Ujung_Pandang
│ │ │ │ ├── Ulaanbaatar
│ │ │ │ ├── Ulan_Bator
│ │ │ │ ├── Urumqi
│ │ │ │ ├── Ust-Nera
│ │ │ │ ├── Vientiane
│ │ │ │ ├── Vladivostok
│ │ │ │ ├── Yakutsk
│ │ │ │ ├── Yekaterinburg
│ │ │ │ └── Yerevan
│ │ │ ├── Atlantic
│ │ │ │ ├── Azores
│ │ │ │ ├── Bermuda
│ │ │ │ ├── Canary
│ │ │ │ ├── Cape_Verde
│ │ │ │ ├── Faeroe
│ │ │ │ ├── Faroe
│ │ │ │ ├── Jan_Mayen
│ │ │ │ ├── Madeira
│ │ │ │ ├── Reykjavik
│ │ │ │ ├── South_Georgia
│ │ │ │ ├── Stanley
│ │ │ │ └── St_Helena
│ │ │ ├── Australia
│ │ │ │ ├── ACT
│ │ │ │ ├── Adelaide
│ │ │ │ ├── Brisbane
│ │ │ │ ├── Broken_Hill
│ │ │ │ ├── Canberra
│ │ │ │ ├── Currie
│ │ │ │ ├── Darwin
│ │ │ │ ├── Eucla
│ │ │ │ ├── Hobart
│ │ │ │ ├── LHI
│ │ │ │ ├── Lindeman
│ │ │ │ ├── Lord_Howe
│ │ │ │ ├── Melbourne
│ │ │ │ ├── North
│ │ │ │ ├── NSW
│ │ │ │ ├── Perth
│ │ │ │ ├── Queensland
│ │ │ │ ├── South
│ │ │ │ ├── Sydney
│ │ │ │ ├── Tasmania
│ │ │ │ ├── Victoria
│ │ │ │ ├── West
│ │ │ │ └── Yancowinna
│ │ │ ├── Brazil
│ │ │ │ ├── Acre
│ │ │ │ ├── DeNoronha
│ │ │ │ ├── East
│ │ │ │ └── West
│ │ │ ├── Canada
│ │ │ │ ├── Atlantic
│ │ │ │ ├── Central
│ │ │ │ ├── Eastern
│ │ │ │ ├── East-Saskatchewan
│ │ │ │ ├── Mountain
│ │ │ │ ├── Newfoundland
│ │ │ │ ├── Pacific
│ │ │ │ ├── Saskatchewan
│ │ │ │ └── Yukon
│ │ │ ├── CET
│ │ │ ├── Chile
│ │ │ │ ├── Continental
│ │ │ │ └── EasterIsland
│ │ │ ├── CST6CDT
│ │ │ ├── Cuba
│ │ │ ├── EET
│ │ │ ├── Egypt
│ │ │ ├── Eire
│ │ │ ├── EST
│ │ │ ├── EST5EDT
│ │ │ ├── Etc
│ │ │ │ ├── GMT
│ │ │ │ ├── GMT 0
│ │ │ │ ├── GMT-0
│ │ │ │ ├── GMT0
│ │ │ │ ├── GMT 1
│ │ │ │ ├── GMT-1
│ │ │ │ ├── GMT 10
│ │ │ │ ├── GMT-10
│ │ │ │ ├── GMT 11
│ │ │ │ ├── GMT-11
│ │ │ │ ├── GMT 12
│ │ │ │ ├── GMT-12
│ │ │ │ ├── GMT-13
│ │ │ │ ├── GMT-14
│ │ │ │ ├── GMT 2
│ │ │ │ ├── GMT-2
│ │ │ │ ├── GMT 3
│ │ │ │ ├── GMT-3
│ │ │ │ ├── GMT 4
│ │ │ │ ├── GMT-4
│ │ │ │ ├── GMT 5
│ │ │ │ ├── GMT-5
│ │ │ │ ├── GMT 6
│ │ │ │ ├── GMT-6
│ │ │ │ ├── GMT 7
│ │ │ │ ├── GMT-7
│ │ │ │ ├── GMT 8
│ │ │ │ ├── GMT-8
│ │ │ │ ├── GMT 9
│ │ │ │ ├── GMT-9
│ │ │ │ ├── Greenwich
│ │ │ │ ├── UCT
│ │ │ │ ├── Universal
│ │ │ │ ├── UTC
│ │ │ │ └── Zulu
│ │ │ ├── Europe
│ │ │ │ ├── Amsterdam
│ │ │ │ ├── Andorra
│ │ │ │ ├── Athens
│ │ │ │ ├── Belfast
│ │ │ │ ├── Belgrade
│ │ │ │ ├── Berlin
│ │ │ │ ├── Bratislava
│ │ │ │ ├── Brussels
│ │ │ │ ├── Bucharest
│ │ │ │ ├── Budapest
│ │ │ │ ├── Busingen
│ │ │ │ ├── Chisinau
│ │ │ │ ├── Copenhagen
│ │ │ │ ├── Dublin
│ │ │ │ ├── Gibraltar
│ │ │ │ ├── Guernsey
│ │ │ │ ├── Helsinki
│ │ │ │ ├── Isle_of_Man
│ │ │ │ ├── Istanbul
│ │ │ │ ├── Jersey
│ │ │ │ ├── Kaliningrad
│ │ │ │ ├── Kiev
│ │ │ │ ├── Lisbon
│ │ │ │ ├── Ljubljana
│ │ │ │ ├── London
│ │ │ │ ├── Luxembourg
│ │ │ │ ├── Madrid
│ │ │ │ ├── Malta
│ │ │ │ ├── Mariehamn
│ │ │ │ ├── Minsk
│ │ │ │ ├── Monaco
│ │ │ │ ├── Moscow
│ │ │ │ ├── Nicosia
│ │ │ │ ├── Oslo
│ │ │ │ ├── Paris
│ │ │ │ ├── Podgorica
│ │ │ │ ├── Prague
│ │ │ │ ├── Riga
│ │ │ │ ├── Rome
│ │ │ │ ├── Samara
│ │ │ │ ├── San_Marino
│ │ │ │ ├── Sarajevo
│ │ │ │ ├── Simferopol
│ │ │ │ ├── Skopje
│ │ │ │ ├── Sofia
│ │ │ │ ├── Stockholm
│ │ │ │ ├── Tallinn
│ │ │ │ ├── Tirane
│ │ │ │ ├── Tiraspol
│ │ │ │ ├── Uzhgorod
│ │ │ │ ├── Vaduz
│ │ │ │ ├── Vatican
│ │ │ │ ├── Vienna
│ │ │ │ ├── Vilnius
│ │ │ │ ├── Volgograd
│ │ │ │ ├── Warsaw
│ │ │ │ ├── Zagreb
│ │ │ │ ├── Zaporozhye
│ │ │ │ └── Zurich
│ │ │ ├── GB
│ │ │ ├── GB-Eire
│ │ │ ├── GMT
│ │ │ ├── GMT 0
│ │ │ ├── GMT-0
│ │ │ ├── GMT0
│ │ │ ├── Greenwich
│ │ │ ├── Hongkong
│ │ │ ├── HST
│ │ │ ├── Iceland
│ │ │ ├── Indian
│ │ │ │ ├── Antananarivo
│ │ │ │ ├── Chagos
│ │ │ │ ├── Christmas
│ │ │ │ ├── Cocos
│ │ │ │ ├── Comoro
│ │ │ │ ├── Kerguelen
│ │ │ │ ├── Mahe
│ │ │ │ ├── Maldives
│ │ │ │ ├── Mauritius
│ │ │ │ ├── Mayotte
│ │ │ │ └── Reunion
│ │ │ ├── Iran
│ │ │ ├── Israel
│ │ │ ├── Jamaica
│ │ │ ├── Japan
│ │ │ ├── Kwajalein
│ │ │ ├── Libya
│ │ │ ├── MET
│ │ │ ├── Mexico
│ │ │ │ ├── BajaNorte
│ │ │ │ ├── BajaSur
│ │ │ │ └── General
│ │ │ ├── MST
│ │ │ ├── MST7MDT
│ │ │ ├── Navajo
│ │ │ ├── NZ
│ │ │ ├── NZ-CHAT
│ │ │ ├── Pacific
│ │ │ │ ├── Apia
│ │ │ │ ├── Auckland
│ │ │ │ ├── Chatham
│ │ │ │ ├── Chuuk
│ │ │ │ ├── Easter
│ │ │ │ ├── Efate
│ │ │ │ ├── Enderbury
│ │ │ │ ├── Fakaofo
│ │ │ │ ├── Fiji
│ │ │ │ ├── Funafuti
│ │ │ │ ├── Galapagos
│ │ │ │ ├── Gambier
│ │ │ │ ├── Guadalcanal
│ │ │ │ ├── Guam
│ │ │ │ ├── Honolulu
│ │ │ │ ├── Johnston
│ │ │ │ ├── Kiritimati
│ │ │ │ ├── Kosrae
│ │ │ │ ├── Kwajalein
│ │ │ │ ├── Majuro
│ │ │ │ ├── Marquesas
│ │ │ │ ├── Midway
│ │ │ │ ├── Nauru
│ │ │ │ ├── Niue
│ │ │ │ ├── Norfolk
│ │ │ │ ├── Noumea
│ │ │ │ ├── Pago_Pago
│ │ │ │ ├── Palau
│ │ │ │ ├── Pitcairn
│ │ │ │ ├── Pohnpei
│ │ │ │ ├── Ponape
│ │ │ │ ├── Port_Moresby
│ │ │ │ ├── Rarotonga
│ │ │ │ ├── Saipan
│ │ │ │ ├── Samoa
│ │ │ │ ├── Tahiti
│ │ │ │ ├── Tarawa
│ │ │ │ ├── Tongatapu
│ │ │ │ ├── Truk
│ │ │ │ ├── Wake
│ │ │ │ ├── Wallis
│ │ │ │ └── Yap
│ │ │ ├── Poland
│ │ │ ├── Portugal
│ │ │ ├── PRC
│ │ │ ├── PST8PDT
│ │ │ ├── ROC
│ │ │ ├── ROK
│ │ │ ├── Singapore
│ │ │ ├── SystemV
│ │ │ │ ├── AST4
│ │ │ │ ├── AST4ADT
│ │ │ │ ├── CST6
│ │ │ │ ├── CST6CDT
│ │ │ │ ├── EST5
│ │ │ │ ├── EST5EDT
│ │ │ │ ├── HST10
│ │ │ │ ├── MST7
│ │ │ │ ├── MST7MDT
│ │ │ │ ├── PST8
│ │ │ │ ├── PST8PDT
│ │ │ │ ├── YST9
│ │ │ │ └── YST9YDT
│ │ │ ├── Turkey
│ │ │ ├── UCT
│ │ │ ├── Universal
│ │ │ ├── US
│ │ │ │ ├── Alaska
│ │ │ │ ├── Aleutian
│ │ │ │ ├── Arizona
│ │ │ │ ├── Central
│ │ │ │ ├── Eastern
│ │ │ │ ├── East-Indiana
│ │ │ │ ├── Hawaii
│ │ │ │ ├── Indiana-Starke
│ │ │ │ ├── Michigan
│ │ │ │ ├── Mountain
│ │ │ │ ├── Pacific
│ │ │ │ ├── Pacific-New
│ │ │ │ └── Samoa
│ │ │ ├── UTC
│ │ │ ├── WET
│ │ │ ├── W-SU
│ │ │ └── Zulu
│ │ └── word.tcl
│ ├── tcl85.lib
│ ├── tclConfig.sh
│ ├── tclstub85.lib
│ ├── tix8.4.3
│ │ ├── Balloon.tcl
│ │ ├── bitmaps
│ │ │ ├── act_fold.gif
│ │ │ ├── act_fold.xbm
│ │ │ ├── act_fold.xpm
│ │ │ ├── balarrow.xbm
│ │ │ ├── cbxarrow.xbm
│ │ │ ├── ck_def.xbm
│ │ │ ├── ck_off.xbm
│ │ │ ├── ck_on.xbm
│ │ │ ├── cross.xbm
│ │ │ ├── decr.xbm
│ │ │ ├── drop.xbm
│ │ │ ├── file.gif
│ │ │ ├── file.xbm
│ │ │ ├── file.xpm
│ │ │ ├── folder.gif
│ │ │ ├── folder.xbm
│ │ │ ├── folder.xpm
│ │ │ ├── harddisk.xbm
│ │ │ ├── hourglas.mask
│ │ │ ├── hourglas.xbm
│ │ │ ├── incr.xbm
│ │ │ ├── info.gif
│ │ │ ├── info.xpm
│ │ │ ├── maximize.xbm
│ │ │ ├── minimize.xbm
│ │ │ ├── minusarm.gif
│ │ │ ├── minusarm.xbm
│ │ │ ├── minusarm.xpm
│ │ │ ├── minus.gif
│ │ │ ├── minus.xbm
│ │ │ ├── minus.xpm
│ │ │ ├── mktransgif.tcl
│ │ │ ├── network.xbm
│ │ │ ├── no_entry.gif
│ │ │ ├── no_entry.xpm
│ │ │ ├── openfile.xbm
│ │ │ ├── openfold.gif
│ │ │ ├── openfold.xbm
│ │ │ ├── openfold.xpm
│ │ │ ├── plusarm.gif
│ │ │ ├── plusarm.xbm
│ │ │ ├── plusarm.xpm
│ │ │ ├── plus.gif
│ │ │ ├── plus.xbm
│ │ │ ├── plus.xpm
│ │ │ ├── resize1.xbm
│ │ │ ├── resize2.xbm
│ │ │ ├── restore.xbm
│ │ │ ├── srcfile.gif
│ │ │ ├── srcfile.xbm
│ │ │ ├── srcfile.xpm
│ │ │ ├── system.xbm
│ │ │ ├── textfile.gif
│ │ │ ├── textfile.xbm
│ │ │ ├── textfile.xpm
│ │ │ ├── tick.xbm
│ │ │ ├── warning.gif
│ │ │ └── warning.xpm
│ │ ├── BtnBox.tcl
│ │ ├── ChkList.tcl
│ │ ├── CObjView.tcl
│ │ ├── ComboBox.tcl
│ │ ├── Compat.tcl
│ │ ├── Console.tcl
│ │ ├── Control.tcl
│ │ ├── DefSchm.tcl
│ │ ├── demos
│ │ │ ├── bitmaps
│ │ │ │ ├── about.xpm
│ │ │ │ ├── bold.xbm
│ │ │ │ ├── capital.xbm
│ │ │ │ ├── centerj.xbm
│ │ │ │ ├── code.xpm
│ │ │ │ ├── combobox.xbm
│ │ │ │ ├── combobox.xpm
│ │ │ │ ├── drivea.xbm
│ │ │ │ ├── drivea.xpm
│ │ │ │ ├── exit.xpm
│ │ │ │ ├── filebox.xbm
│ │ │ │ ├── filebox.xpm
│ │ │ │ ├── harddisk.xbm
│ │ │ │ ├── harddisk.xpm
│ │ │ │ ├── italic.xbm
│ │ │ │ ├── justify.xbm
│ │ │ │ ├── leftj.xbm
│ │ │ │ ├── network.xbm
│ │ │ │ ├── network.xpm
│ │ │ │ ├── netw.xbm
│ │ │ │ ├── netw.xpm
│ │ │ │ ├── optmenu.xpm
│ │ │ │ ├── rightj.xbm
│ │ │ │ ├── select.xpm
│ │ │ │ ├── tix.gif
│ │ │ │ └── underlin.xbm
│ │ │ ├── MkChoose.tcl
│ │ │ ├── MkDirLis.tcl
│ │ │ ├── MkSample.tcl
│ │ │ ├── MkScroll.tcl
│ │ │ ├── samples
│ │ │ │ ├── AllSampl.tcl
│ │ │ │ ├── ArrowBtn.tcl
│ │ │ │ ├── Balloon.tcl
│ │ │ │ ├── BtnBox.tcl
│ │ │ │ ├── ChkList.tcl
│ │ │ │ ├── CmpImg1.tcl
│ │ │ │ ├── CmpImg2.tcl
│ │ │ │ ├── CmpImg3.tcl
│ │ │ │ ├── CmpImg4.tcl
│ │ │ │ ├── CmpImg.tcl
│ │ │ │ ├── CObjView.tcl
│ │ │ │ ├── ComboBox.tcl
│ │ │ │ ├── Control.tcl
│ │ │ │ ├── DirDlg.tcl
│ │ │ │ ├── DirList.tcl
│ │ │ │ ├── DirTree.tcl
│ │ │ │ ├── DragDrop.tcl
│ │ │ │ ├── DynTree.tcl
│ │ │ │ ├── EditGrid.tcl
│ │ │ │ ├── EFileDlg.tcl
│ │ │ │ ├── FileDlg.tcl
│ │ │ │ ├── FileEnt.tcl
│ │ │ │ ├── HList1.tcl
│ │ │ │ ├── LabEntry.tcl
│ │ │ │ ├── LabFrame.tcl
│ │ │ │ ├── ListNBK.tcl
│ │ │ │ ├── Meter.tcl
│ │ │ │ ├── NoteBook.tcl
│ │ │ │ ├── OptMenu.tcl
│ │ │ │ ├── PanedWin.tcl
│ │ │ │ ├── PopMenu.tcl
│ │ │ │ ├── Sample.tcl
│ │ │ │ ├── Select.tcl
│ │ │ │ ├── SGrid0.tcl
│ │ │ │ ├── SGrid1.tcl
│ │ │ │ ├── SHList2.tcl
│ │ │ │ ├── SHList.tcl
│ │ │ │ ├── SListBox.tcl
│ │ │ │ ├── StdBBox.tcl
│ │ │ │ ├── SText.tcl
│ │ │ │ ├── STList1.tcl
│ │ │ │ ├── STList2.tcl
│ │ │ │ ├── STList3.tcl
│ │ │ │ ├── SWindow.tcl
│ │ │ │ ├── Tree.tcl
│ │ │ │ ├── Xpm1.tcl
│ │ │ │ └── Xpm.tcl
│ │ │ ├── tclIndex
│ │ │ ├── tixwidgets.tcl
│ │ │ └── widget
│ │ ├── DialogS.tcl
│ │ ├── DirBox.tcl
│ │ ├── DirDlg.tcl
│ │ ├── DirList.tcl
│ │ ├── DirTree.tcl
│ │ ├── DragDrop.tcl
│ │ ├── DtlList.tcl
│ │ ├── EFileBox.tcl
│ │ ├── EFileDlg.tcl
│ │ ├── Event.tcl
│ │ ├── FileBox.tcl
│ │ ├── FileCbx.tcl
│ │ ├── FileDlg.tcl
│ │ ├── FileEnt.tcl
│ │ ├── FloatEnt.tcl
│ │ ├── fs.tcl
│ │ ├── Grid.tcl
│ │ ├── HListDD.tcl
│ │ ├── HList.tcl
│ │ ├── IconView.tcl
│ │ ├── Init.tcl
│ │ ├── LabEntry.tcl
│ │ ├── LabFrame.tcl
│ │ ├── LabWidg.tcl
│ │ ├── ListNBk.tcl
│ │ ├── Makefile
│ │ ├── Meter.tcl
│ │ ├── MultView.tcl
│ │ ├── NoteBook.tcl
│ │ ├── OldUtil.tcl
│ │ ├── OptMenu.tcl
│ │ ├── PanedWin.tcl
│ │ ├── pkgIndex.tcl
│ │ ├── PopMenu.tcl
│ │ ├── pref
│ │ │ ├── 10Point.fs
│ │ │ ├── 10Point.fsc
│ │ │ ├── 12Point.fs
│ │ │ ├── 12Point.fsc
│ │ │ ├── 14Point.fs
│ │ │ ├── 14Point.fsc
│ │ │ ├── Bisque.cs
│ │ │ ├── Bisque.csc
│ │ │ ├── Blue.cs
│ │ │ ├── Blue.csc
│ │ │ ├── Gray.cs
│ │ │ ├── Gray.csc
│ │ │ ├── Makefile
│ │ │ ├── Old12Pt.fs
│ │ │ ├── Old14Pt.fs
│ │ │ ├── pkgIndex.tcl
│ │ │ ├── SGIGray.cs
│ │ │ ├── SGIGray.csc
│ │ │ ├── TixGray.cs
│ │ │ ├── TixGray.csc
│ │ │ ├── tixmkpref
│ │ │ ├── TK.cs
│ │ │ ├── TK.csc
│ │ │ ├── TK.fs
│ │ │ ├── TK.fsc
│ │ │ ├── TkWin.cs
│ │ │ ├── TkWin.csc
│ │ │ ├── TkWin.fs
│ │ │ ├── TkWin.fsc
│ │ │ ├── WmDefault.cs
│ │ │ ├── WmDefault.csc
│ │ │ ├── WmDefault.fs
│ │ │ ├── WmDefault.fsc
│ │ │ ├── WmDefault.py
│ │ │ ├── WmDefault.tcl
│ │ │ └── WmDefault.txt
│ │ ├── Primitiv.tcl
│ │ ├── ResizeH.tcl
│ │ ├── Select.tcl
│ │ ├── SGrid.tcl
│ │ ├── Shell.tcl
│ │ ├── SHList.tcl
│ │ ├── SimpDlg.tcl
│ │ ├── SListBox.tcl
│ │ ├── StackWin.tcl
│ │ ├── StatBar.tcl
│ │ ├── StdBBox.tcl
│ │ ├── StdShell.tcl
│ │ ├── SText.tcl
│ │ ├── STList.tcl
│ │ ├── SWidget.tcl
│ │ ├── SWindow.tcl
│ │ ├── tix84.dll
│ │ ├── tix84.lib
│ │ ├── Tix.tcl
│ │ ├── TList.tcl
│ │ ├── Tree.tcl
│ │ ├── Utils.tcl
│ │ ├── Variable.tcl
│ │ ├── VResize.tcl
│ │ ├── VStack.tcl
│ │ ├── VTree.tcl
│ │ └── WInfo.tcl
│ ├── tk8.5
│ │ ├── bgerror.tcl
│ │ ├── button.tcl
│ │ ├── choosedir.tcl
│ │ ├── clrpick.tcl
│ │ ├── comdlg.tcl
│ │ ├── console.tcl
│ │ ├── demos
│ │ │ ├── anilabel.tcl
│ │ │ ├── aniwave.tcl
│ │ │ ├── arrow.tcl
│ │ │ ├── bind.tcl
│ │ │ ├── bitmap.tcl
│ │ │ ├── browse
│ │ │ ├── button.tcl
│ │ │ ├── check.tcl
│ │ │ ├── clrpick.tcl
│ │ │ ├── colors.tcl
│ │ │ ├── combo.tcl
│ │ │ ├── cscroll.tcl
│ │ │ ├── ctext.tcl
│ │ │ ├── dialog1.tcl
│ │ │ ├── dialog2.tcl
│ │ │ ├── en.msg
│ │ │ ├── entry1.tcl
│ │ │ ├── entry2.tcl
│ │ │ ├── entry3.tcl
│ │ │ ├── filebox.tcl
│ │ │ ├── floor.tcl
│ │ │ ├── form.tcl
│ │ │ ├── goldberg.tcl
│ │ │ ├── hello
│ │ │ ├── hscale.tcl
│ │ │ ├── icon.tcl
│ │ │ ├── image1.tcl
│ │ │ ├── image2.tcl
│ │ │ ├── images
│ │ │ │ ├── earth.gif
│ │ │ │ ├── earthris.gif
│ │ │ │ ├── face.xbm
│ │ │ │ ├── flagdown.xbm
│ │ │ │ ├── flagup.xbm
│ │ │ │ ├── gray25.xbm
│ │ │ │ ├── letters.xbm
│ │ │ │ ├── noletter.xbm
│ │ │ │ ├── pattern.xbm
│ │ │ │ ├── tcllogo.gif
│ │ │ │ └── teapot.ppm
│ │ │ ├── items.tcl
│ │ │ ├── ixset
│ │ │ ├── knightstour.tcl
│ │ │ ├── labelframe.tcl
│ │ │ ├── label.tcl
│ │ │ ├── license.terms
│ │ │ ├── mclist.tcl
│ │ │ ├── menubu.tcl
│ │ │ ├── menu.tcl
│ │ │ ├── msgbox.tcl
│ │ │ ├── nl.msg
│ │ │ ├── paned1.tcl
│ │ │ ├── paned2.tcl
│ │ │ ├── pendulum.tcl
│ │ │ ├── plot.tcl
│ │ │ ├── puzzle.tcl
│ │ │ ├── radio.tcl
│ │ │ ├── README
│ │ │ ├── rmt
│ │ │ ├── rolodex
│ │ │ ├── ruler.tcl
│ │ │ ├── sayings.tcl
│ │ │ ├── search.tcl
│ │ │ ├── spin.tcl
│ │ │ ├── square
│ │ │ ├── states.tcl
│ │ │ ├── style.tcl
│ │ │ ├── tclIndex
│ │ │ ├── tcolor
│ │ │ ├── textpeer.tcl
│ │ │ ├── text.tcl
│ │ │ ├── timer
│ │ │ ├── toolbar.tcl
│ │ │ ├── tree.tcl
│ │ │ ├── ttkbut.tcl
│ │ │ ├── ttkmenu.tcl
│ │ │ ├── ttknote.tcl
│ │ │ ├── ttkpane.tcl
│ │ │ ├── ttkprogress.tcl
│ │ │ ├── ttkscale.tcl
│ │ │ ├── twind.tcl
│ │ │ ├── unicodeout.tcl
│ │ │ ├── vscale.tcl
│ │ │ └── widget
│ │ ├── dialog.tcl
│ │ ├── entry.tcl
│ │ ├── focus.tcl
│ │ ├── images
│ │ │ ├── logo100.gif
│ │ │ ├── logo64.gif
│ │ │ ├── logo.eps
│ │ │ ├── logoLarge.gif
│ │ │ ├── logoMed.gif
│ │ │ ├── pwrdLogo100.gif
│ │ │ ├── pwrdLogo150.gif
│ │ │ ├── pwrdLogo175.gif
│ │ │ ├── pwrdLogo200.gif
│ │ │ ├── pwrdLogo75.gif
│ │ │ ├── pwrdLogo.eps
│ │ │ ├── README
│ │ │ └── tai-ku.gif
│ │ ├── license.terms
│ │ ├── listbox.tcl
│ │ ├── menu.tcl
│ │ ├── mkpsenc.tcl
│ │ ├── msgbox.tcl
│ │ ├── msgs
│ │ │ ├── cs.msg
│ │ │ ├── da.msg
│ │ │ ├── de.msg
│ │ │ ├── el.msg
│ │ │ ├── en_gb.msg
│ │ │ ├── en.msg
│ │ │ ├── eo.msg
│ │ │ ├── es.msg
│ │ │ ├── fr.msg
│ │ │ ├── hu.msg
│ │ │ ├── it.msg
│ │ │ ├── nl.msg
│ │ │ ├── pl.msg
│ │ │ ├── pt.msg
│ │ │ ├── ru.msg
│ │ │ └── sv.msg
│ │ ├── obsolete.tcl
│ │ ├── optMenu.tcl
│ │ ├── palette.tcl
│ │ ├── panedwindow.tcl
│ │ ├── pkgIndex.tcl
│ │ ├── safetk.tcl
│ │ ├── scale.tcl
│ │ ├── scrlbar.tcl
│ │ ├── spinbox.tcl
│ │ ├── tclIndex
│ │ ├── tearoff.tcl
│ │ ├── text.tcl
│ │ ├── tkfbox.tcl
│ │ ├── tk.tcl
│ │ ├── ttk
│ │ │ ├── altTheme.tcl
│ │ │ ├── aquaTheme.tcl
│ │ │ ├── button.tcl
│ │ │ ├── clamTheme.tcl
│ │ │ ├── classicTheme.tcl
│ │ │ ├── combobox.tcl
│ │ │ ├── cursors.tcl
│ │ │ ├── defaults.tcl
│ │ │ ├── entry.tcl
│ │ │ ├── fonts.tcl
│ │ │ ├── menubutton.tcl
│ │ │ ├── notebook.tcl
│ │ │ ├── panedwindow.tcl
│ │ │ ├── progress.tcl
│ │ │ ├── scale.tcl
│ │ │ ├── scrollbar.tcl
│ │ │ ├── sizegrip.tcl
│ │ │ ├── spinbox.tcl
│ │ │ ├── treeview.tcl
│ │ │ ├── ttk.tcl
│ │ │ ├── utils.tcl
│ │ │ ├── vistaTheme.tcl
│ │ │ ├── winTheme.tcl
│ │ │ └── xpTheme.tcl
│ │ ├── unsupported.tcl
│ │ └── xmfbox.tcl
│ ├── tk85.lib
│ └── tkstub85.lib
└── Tools
├── i18n
│ ├── makelocalealias.py
│ ├── msgfmt.py
│ └── pygettext.py
├── pynche
│ ├── ChipViewer.py
│ ├── ColorDB.py
│ ├── DetailsViewer.py
│ ├── html40colors.txt
│ ├── __init__.py
│ ├── ListViewer.py
│ ├── Main.py
│ ├── namedcolors.txt
│ ├── pyColorChooser.py
│ ├── pynche.pyw
│ ├── PyncheWidget.py
│ ├── README.txt
│ ├── StripViewer.py
│ ├── Switchboard.py
│ ├── TextViewer.py
│ ├── TypeinViewer.py
│ ├── webcolors.txt
│ ├── websafe.txt
│ └── X
│ ├── rgb.txt
│ └── xlicense.txt
├── Scripts
│ ├── 2to3.py
│ ├── analyze_dxp.py
│ ├── byext.py
│ ├── byteyears.py
│ ├── checkappend.py
│ ├── checkpip.py
│ ├── checkpyc.py
│ ├── classfix.py
│ ├── cleanfuture.py
│ ├── combinerefs.py
│ ├── copytime.py
│ ├── crlf.py
│ ├── cvsfiles.py
│ ├── db2pickle.py
│ ├── diff.py
│ ├── dutree.py
│ ├── eptags.py
│ ├── finddiv.py
│ ├── findlinksto.py
│ ├── findnocoding.py
│ ├── find_recursionlimit.py
│ ├── fixcid.py
│ ├── fixdiv.py
│ ├── fixheader.py
│ ├── fixnotice.py
│ ├── fixps.py
│ ├── google.py
│ ├── gprof2html.py
│ ├── h2py.py
│ ├── hotshotmain.py
│ ├── ifdef.py
│ ├── lfcr.py
│ ├── linktree.py
│ ├── lll.py
│ ├── logmerge.py
│ ├── mailerdaemon.py
│ ├── md5sum.py
│ ├── methfix.py
│ ├── mkreal.py
│ ├── ndiff.py
│ ├── nm2def.py
│ ├── objgraph.py
│ ├── parseentities.py
│ ├── patchcheck.py
│ ├── pathfix.py
│ ├── pdeps.py
│ ├── pickle2db.py
│ ├── pindent.py
│ ├── ptags.py
│ ├── pydocgui.pyw
│ ├── pysource.py
│ ├── README.txt
│ ├── redemo.py
│ ├── reindent.py
│ ├── reindent-rst.py
│ ├── rgrep.py
│ ├── serve.py
│ ├── setup.py
│ ├── suff.py
│ ├── svneol.py
│ ├── texcheck.py
│ ├── texi2html.py
│ ├── treesync.py
│ ├── untabify.py
│ ├── which.py
│ ├── win_add2path.py
│ └── xxci.py
├── versioncheck
│ ├── _checkversion.py
│ ├── checkversions.py
│ ├── pyversioncheck.py
│ └── README.txt
└── webchecker
├── README.txt
├── tktools.py
├── wcgui.py
├── wcmac.py
├── webchecker.py
├── websucker.py
└── wsgui.py
175 directories, 4172 files
好例子网口号:伸出你的我的手 — 分享!
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论