├── .gitignore ├── LICENSE ├── README-CN.md ├── README.md ├── config.json ├── docs └── oss_remote_attachment.md ├── launcher ├── __init__.py ├── autorun.py ├── config.py ├── create_shortcut.js ├── gtk_tray.py ├── launcher_log.py ├── mac_tray.py ├── module_init.py ├── non_tray.py ├── start.py ├── systray │ ├── __init__.py │ ├── traybar.py │ └── win32_adapter.py ├── web_control.py ├── web_ui │ ├── about.html │ ├── about_en.html │ ├── config.html │ ├── config_en.html │ ├── css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap.css │ │ ├── flat-ui.css │ │ ├── ladda-themeless.min.css │ │ └── style.css │ ├── favicon.ico │ ├── favicon_MAC.ico │ ├── img │ │ ├── fixed-width.png │ │ ├── full-width.png │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ ├── logo.png │ │ └── switch-mask.png │ ├── index.html │ ├── index_en.html │ ├── js │ │ ├── bootstrap.min.js │ │ ├── flat-ui.min.js │ │ ├── jquery-1.11.2.min.js │ │ ├── jquery.placeholder.min.js │ │ ├── jquery.timer.js │ │ ├── jquery.xdomainrequest.min.js │ │ ├── ladda.min.js │ │ ├── site.js │ │ └── spin.min.js │ ├── logging.html │ ├── logging_en.html │ ├── menu.json │ ├── menu_en.json │ ├── status.html │ └── status_en.html ├── win32_proxy_manager.py ├── win_tray.py └── xlog.py ├── ossftp ├── __init__.py ├── defaults.py ├── ftpserver.py ├── oss_authorizers.py ├── oss_file_operation.py ├── oss_fs.py └── oss_fs_impl.py ├── python27 ├── unix │ └── lib │ │ ├── oss2 │ │ ├── __init__.py │ │ ├── api.py │ │ ├── auth.py │ │ ├── compat.py │ │ ├── defaults.py │ │ ├── exceptions.py │ │ ├── http.py │ │ ├── iterators.py │ │ ├── models.py │ │ ├── resumable.py │ │ ├── task_queue.py │ │ ├── utils.py │ │ └── xml_utils.py │ │ ├── pyftpdlib │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── _compat.py │ │ ├── authorizers.py │ │ ├── filesystems.py │ │ ├── handlers.py │ │ ├── ioloop.py │ │ ├── log.py │ │ ├── servers.py │ │ ├── splice.py │ │ └── test │ │ │ ├── README │ │ │ ├── __init__.py │ │ │ ├── keycert.pem │ │ │ ├── runner.py │ │ │ ├── test_authorizers.py │ │ │ ├── test_filesystems.py │ │ │ ├── test_functional.py │ │ │ ├── test_functional_ssl.py │ │ │ ├── test_ioloop.py │ │ │ └── test_servers.py │ │ ├── requests │ │ ├── __init__.py │ │ ├── adapters.py │ │ ├── api.py │ │ ├── auth.py │ │ ├── cacert.pem │ │ ├── certs.py │ │ ├── compat.py │ │ ├── cookies.py │ │ ├── exceptions.py │ │ ├── hooks.py │ │ ├── models.py │ │ ├── packages │ │ │ ├── __init__.py │ │ │ ├── chardet │ │ │ │ ├── __init__.py │ │ │ │ ├── big5freq.py │ │ │ │ ├── big5prober.py │ │ │ │ ├── chardetect.py │ │ │ │ ├── chardistribution.py │ │ │ │ ├── charsetgroupprober.py │ │ │ │ ├── charsetprober.py │ │ │ │ ├── codingstatemachine.py │ │ │ │ ├── compat.py │ │ │ │ ├── constants.py │ │ │ │ ├── cp949prober.py │ │ │ │ ├── escprober.py │ │ │ │ ├── escsm.py │ │ │ │ ├── eucjpprober.py │ │ │ │ ├── euckrfreq.py │ │ │ │ ├── euckrprober.py │ │ │ │ ├── euctwfreq.py │ │ │ │ ├── euctwprober.py │ │ │ │ ├── gb2312freq.py │ │ │ │ ├── gb2312prober.py │ │ │ │ ├── hebrewprober.py │ │ │ │ ├── jisfreq.py │ │ │ │ ├── jpcntx.py │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ ├── langcyrillicmodel.py │ │ │ │ ├── langgreekmodel.py │ │ │ │ ├── langhebrewmodel.py │ │ │ │ ├── langhungarianmodel.py │ │ │ │ ├── langthaimodel.py │ │ │ │ ├── latin1prober.py │ │ │ │ ├── mbcharsetprober.py │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ ├── mbcssm.py │ │ │ │ ├── sbcharsetprober.py │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ ├── sjisprober.py │ │ │ │ ├── universaldetector.py │ │ │ │ └── utf8prober.py │ │ │ └── urllib3 │ │ │ │ ├── __init__.py │ │ │ │ ├── _collections.py │ │ │ │ ├── connection.py │ │ │ │ ├── connectionpool.py │ │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ ├── appengine.py │ │ │ │ ├── ntlmpool.py │ │ │ │ └── pyopenssl.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── fields.py │ │ │ │ ├── filepost.py │ │ │ │ ├── packages │ │ │ │ ├── __init__.py │ │ │ │ ├── ordered_dict.py │ │ │ │ ├── six.py │ │ │ │ └── ssl_match_hostname │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── _implementation.py │ │ │ │ ├── poolmanager.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ └── util │ │ │ │ ├── __init__.py │ │ │ │ ├── connection.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ ├── retry.py │ │ │ │ ├── ssl_.py │ │ │ │ ├── timeout.py │ │ │ │ └── url.py │ │ ├── sessions.py │ │ ├── status_codes.py │ │ ├── structures.py │ │ └── utils.py │ │ └── urllib3 │ │ ├── __init__.py │ │ ├── _collections.py │ │ ├── connection.py │ │ ├── connectionpool.py │ │ ├── contrib │ │ ├── __init__.py │ │ ├── appengine.py │ │ ├── ntlmpool.py │ │ └── pyopenssl.py │ │ ├── exceptions.py │ │ ├── fields.py │ │ ├── filepost.py │ │ ├── packages │ │ ├── __init__.py │ │ ├── ordered_dict.py │ │ ├── six.py │ │ └── ssl_match_hostname │ │ │ ├── __init__.py │ │ │ └── _implementation.py │ │ ├── poolmanager.py │ │ ├── request.py │ │ ├── response.py │ │ └── util │ │ ├── __init__.py │ │ ├── connection.py │ │ ├── request.py │ │ ├── response.py │ │ ├── retry.py │ │ ├── ssl_.py │ │ ├── timeout.py │ │ └── url.py └── win32 │ ├── DLLs │ ├── _bsddb.pyd │ ├── _ctypes.pyd │ ├── _ctypes_test.pyd │ ├── _elementtree.pyd │ ├── _hashlib.pyd │ ├── _msi.pyd │ ├── _multiprocessing.pyd │ ├── _socket.pyd │ ├── _sqlite3.pyd │ ├── _ssl.pyd │ ├── _testcapi.pyd │ ├── _tkinter.pyd │ ├── bz2.pyd │ ├── py.ico │ ├── pyc.ico │ ├── pyexpat.pyd │ ├── select.pyd │ ├── sqlite3.dll │ ├── tcl85.dll │ ├── tclpip85.dll │ ├── tk85.dll │ ├── unicodedata.pyd │ └── winsound.pyd │ ├── Doc │ └── python279.chm │ ├── LICENSE.txt │ ├── Lib │ ├── BaseHTTPServer.py │ ├── Bastion.py │ ├── CGIHTTPServer.py │ ├── ConfigParser.py │ ├── Cookie.py │ ├── DocXMLRPCServer.py │ ├── HTMLParser.py │ ├── MimeWriter.py │ ├── Queue.py │ ├── SimpleHTTPServer.py │ ├── SimpleXMLRPCServer.py │ ├── SocketServer.py │ ├── StringIO.py │ ├── UserDict.py │ ├── UserList.py │ ├── UserString.py │ ├── _LWPCookieJar.py │ ├── _MozillaCookieJar.py │ ├── __future__.py │ ├── __phello__.foo.py │ ├── _abcoll.py │ ├── _osx_support.py │ ├── _pyio.py │ ├── _strptime.py │ ├── _threading_local.py │ ├── _weakrefset.py │ ├── abc.py │ ├── aifc.py │ ├── antigravity.py │ ├── anydbm.py │ ├── argparse.py │ ├── ast.py │ ├── asynchat.py │ ├── asyncore.py │ ├── atexit.py │ ├── audiodev.py │ ├── base64.py │ ├── bdb.py │ ├── binhex.py │ ├── bisect.py │ ├── bsddb │ │ ├── __init__.py │ │ ├── db.py │ │ ├── dbobj.py │ │ ├── dbrecio.py │ │ ├── dbshelve.py │ │ ├── dbtables.py │ │ ├── dbutils.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_db.py │ │ │ ├── test_dbenv.py │ │ │ ├── test_dbobj.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 │ ├── cProfile.py │ ├── calendar.py │ ├── cgi.py │ ├── cgitb.py │ ├── chunk.py │ ├── cmd.py │ ├── code.py │ ├── codecs.py │ ├── codeop.py │ ├── collections.py │ ├── colorsys.py │ ├── commands.py │ ├── compileall.py │ ├── compiler │ │ ├── __init__.py │ │ ├── ast.py │ │ ├── consts.py │ │ ├── future.py │ │ ├── misc.py │ │ ├── pyassem.py │ │ ├── pycodegen.py │ │ ├── symbols.py │ │ ├── syntax.py │ │ ├── transformer.py │ │ └── visitor.py │ ├── contextlib.py │ ├── cookielib.py │ ├── copy.py │ ├── copy_reg.py │ ├── csv.py │ ├── ctypes │ │ ├── __init__.py │ │ ├── _endian.py │ │ ├── macholib │ │ │ ├── __init__.py │ │ │ ├── dyld.py │ │ │ ├── dylib.py │ │ │ └── framework.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 │ ├── curses │ │ ├── __init__.py │ │ ├── ascii.py │ │ ├── has_key.py │ │ ├── panel.py │ │ ├── textpad.py │ │ └── wrapper.py │ ├── dbhash.py │ ├── decimal.py │ ├── difflib.py │ ├── dircache.py │ ├── dis.py │ ├── distutils │ │ ├── __init__.py │ │ ├── archive_util.py │ │ ├── bcppcompiler.py │ │ ├── ccompiler.py │ │ ├── cmd.py │ │ ├── command │ │ │ ├── __init__.py │ │ │ ├── bdist.py │ │ │ ├── bdist_dumb.py │ │ │ ├── bdist_msi.py │ │ │ ├── bdist_rpm.py │ │ │ ├── bdist_wininst.py │ │ │ ├── build.py │ │ │ ├── build_clib.py │ │ │ ├── build_ext.py │ │ │ ├── build_py.py │ │ │ ├── build_scripts.py │ │ │ ├── check.py │ │ │ ├── clean.py │ │ │ ├── config.py │ │ │ ├── install.py │ │ │ ├── install_data.py │ │ │ ├── install_egg_info.py │ │ │ ├── install_headers.py │ │ │ ├── install_lib.py │ │ │ ├── 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 │ │ ├── core.py │ │ ├── cygwinccompiler.py │ │ ├── debug.py │ │ ├── dep_util.py │ │ ├── dir_util.py │ │ ├── dist.py │ │ ├── emxccompiler.py │ │ ├── errors.py │ │ ├── extension.py │ │ ├── fancy_getopt.py │ │ ├── file_util.py │ │ ├── filelist.py │ │ ├── log.py │ │ ├── msvc9compiler.py │ │ ├── msvccompiler.py │ │ ├── spawn.py │ │ ├── sysconfig.py │ │ ├── tests │ │ │ ├── Setup.sample │ │ │ ├── __init__.py │ │ │ ├── setuptools_build_ext.py │ │ │ ├── setuptools_extension.py │ │ │ ├── support.py │ │ │ ├── test_archive_util.py │ │ │ ├── test_bdist.py │ │ │ ├── test_bdist_dumb.py │ │ │ ├── test_bdist_msi.py │ │ │ ├── test_bdist_rpm.py │ │ │ ├── test_bdist_wininst.py │ │ │ ├── test_build.py │ │ │ ├── test_build_clib.py │ │ │ ├── test_build_ext.py │ │ │ ├── test_build_py.py │ │ │ ├── test_build_scripts.py │ │ │ ├── test_ccompiler.py │ │ │ ├── test_check.py │ │ │ ├── test_clean.py │ │ │ ├── test_cmd.py │ │ │ ├── test_config.py │ │ │ ├── test_config_cmd.py │ │ │ ├── test_core.py │ │ │ ├── test_dep_util.py │ │ │ ├── test_dir_util.py │ │ │ ├── test_dist.py │ │ │ ├── test_file_util.py │ │ │ ├── test_filelist.py │ │ │ ├── test_install.py │ │ │ ├── test_install_data.py │ │ │ ├── test_install_headers.py │ │ │ ├── test_install_lib.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_version.py │ │ │ └── test_versionpredicate.py │ │ ├── text_file.py │ │ ├── unixccompiler.py │ │ ├── util.py │ │ ├── version.py │ │ └── versionpredicate.py │ ├── doctest.py │ ├── dumbdbm.py │ ├── dummy_thread.py │ ├── dummy_threading.py │ ├── email │ │ ├── __init__.py │ │ ├── _parseaddr.py │ │ ├── base64mime.py │ │ ├── charset.py │ │ ├── encoders.py │ │ ├── errors.py │ │ ├── feedparser.py │ │ ├── generator.py │ │ ├── header.py │ │ ├── iterators.py │ │ ├── message.py │ │ ├── mime │ │ │ ├── __init__.py │ │ │ ├── application.py │ │ │ ├── audio.py │ │ │ ├── base.py │ │ │ ├── image.py │ │ │ ├── message.py │ │ │ ├── multipart.py │ │ │ ├── nonmultipart.py │ │ │ └── text.py │ │ ├── parser.py │ │ ├── quoprimime.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ ├── PyBanner048.gif │ │ │ │ ├── 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_12.txt │ │ │ │ ├── msg_12a.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 │ │ │ ├── test_email.py │ │ │ ├── test_email_codecs.py │ │ │ ├── test_email_codecs_renamed.py │ │ │ ├── test_email_renamed.py │ │ │ └── test_email_torture.py │ │ └── utils.py │ ├── encodings │ │ ├── __init__.py │ │ ├── aliases.py │ │ ├── ascii.py │ │ ├── base64_codec.py │ │ ├── big5.py │ │ ├── big5hkscs.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 │ │ ├── hex_codec.py │ │ ├── hp_roman8.py │ │ ├── hz.py │ │ ├── idna.py │ │ ├── iso2022_jp.py │ │ ├── iso2022_jp_1.py │ │ ├── iso2022_jp_2.py │ │ ├── iso2022_jp_2004.py │ │ ├── iso2022_jp_3.py │ │ ├── iso2022_jp_ext.py │ │ ├── iso2022_kr.py │ │ ├── iso8859_1.py │ │ ├── iso8859_10.py │ │ ├── iso8859_11.py │ │ ├── iso8859_13.py │ │ ├── iso8859_14.py │ │ ├── iso8859_15.py │ │ ├── iso8859_16.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 │ │ ├── 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_roman.py │ │ ├── mac_romanian.py │ │ ├── mac_turkish.py │ │ ├── mbcs.py │ │ ├── palmos.py │ │ ├── ptcp154.py │ │ ├── punycode.py │ │ ├── quopri_codec.py │ │ ├── raw_unicode_escape.py │ │ ├── rot_13.py │ │ ├── shift_jis.py │ │ ├── shift_jis_2004.py │ │ ├── shift_jisx0213.py │ │ ├── string_escape.py │ │ ├── tis_620.py │ │ ├── undefined.py │ │ ├── unicode_escape.py │ │ ├── unicode_internal.py │ │ ├── utf_16.py │ │ ├── utf_16_be.py │ │ ├── utf_16_le.py │ │ ├── utf_32.py │ │ ├── utf_32_be.py │ │ ├── utf_32_le.py │ │ ├── utf_7.py │ │ ├── utf_8.py │ │ ├── utf_8_sig.py │ │ ├── uu_codec.py │ │ └── zlib_codec.py │ ├── ensurepip │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── _bundled │ │ │ ├── pip-1.5.6-py2.py3-none-any.whl │ │ │ └── setuptools-7.0-py2.py3-none-any.whl │ │ └── _uninstall.py │ ├── filecmp.py │ ├── fileinput.py │ ├── fnmatch.py │ ├── formatter.py │ ├── fpformat.py │ ├── fractions.py │ ├── ftplib.py │ ├── functools.py │ ├── genericpath.py │ ├── getopt.py │ ├── getpass.py │ ├── gettext.py │ ├── glob.py │ ├── gzip.py │ ├── hashlib.py │ ├── heapq.py │ ├── hmac.py │ ├── hotshot │ │ ├── __init__.py │ │ ├── log.py │ │ ├── stats.py │ │ └── stones.py │ ├── htmlentitydefs.py │ ├── htmllib.py │ ├── httplib.py │ ├── idlelib │ │ ├── AutoComplete.py │ │ ├── AutoCompleteWindow.py │ │ ├── AutoExpand.py │ │ ├── Bindings.py │ │ ├── CREDITS.txt │ │ ├── CallTipWindow.py │ │ ├── CallTips.py │ │ ├── ClassBrowser.py │ │ ├── CodeContext.py │ │ ├── ColorDelegator.py │ │ ├── Debugger.py │ │ ├── Delegator.py │ │ ├── EditorWindow.py │ │ ├── FileList.py │ │ ├── FormatParagraph.py │ │ ├── GrepDialog.py │ │ ├── HISTORY.txt │ │ ├── HyperParser.py │ │ ├── IOBinding.py │ │ ├── Icons │ │ │ ├── folder.gif │ │ │ ├── idle.icns │ │ │ ├── idle.ico │ │ │ ├── idle_16.gif │ │ │ ├── idle_32.gif │ │ │ ├── idle_48.gif │ │ │ ├── minusnode.gif │ │ │ ├── openfolder.gif │ │ │ ├── plusnode.gif │ │ │ ├── python.gif │ │ │ └── tk.gif │ │ ├── IdleHistory.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 │ │ ├── RstripExtension.py │ │ ├── ScriptBinding.py │ │ ├── ScrolledList.py │ │ ├── SearchDialog.py │ │ ├── SearchDialogBase.py │ │ ├── SearchEngine.py │ │ ├── StackViewer.py │ │ ├── TODO.txt │ │ ├── ToolTip.py │ │ ├── TreeWidget.py │ │ ├── UndoDelegator.py │ │ ├── WidgetRedirector.py │ │ ├── WindowList.py │ │ ├── ZoomHeight.py │ │ ├── __init__.py │ │ ├── aboutDialog.py │ │ ├── config-extensions.def │ │ ├── config-highlight.def │ │ ├── config-keys.def │ │ ├── config-main.def │ │ ├── configDialog.py │ │ ├── configHandler.py │ │ ├── configHelpSourceEdit.py │ │ ├── configSectionNameDialog.py │ │ ├── dynOptionMenuWidget.py │ │ ├── extend.txt │ │ ├── help.txt │ │ ├── idle.bat │ │ ├── idle.py │ │ ├── idle.pyw │ │ ├── idle_test │ │ │ ├── README.txt │ │ │ ├── __init__.py │ │ │ ├── htest.py │ │ │ ├── mock_idle.py │ │ │ ├── mock_tk.py │ │ │ ├── test_autocomplete.py │ │ │ ├── test_autoexpand.py │ │ │ ├── test_calltips.py │ │ │ ├── test_config_name.py │ │ │ ├── test_configdialog.py │ │ │ ├── test_delegator.py │ │ │ ├── test_formatparagraph.py │ │ │ ├── test_grep.py │ │ │ ├── test_hyperparser.py │ │ │ ├── test_idlehistory.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 │ │ ├── keybindingDialog.py │ │ ├── macosxSupport.py │ │ ├── rpc.py │ │ ├── run.py │ │ ├── tabbedpages.py │ │ ├── testcode.py │ │ └── textView.py │ ├── ihooks.py │ ├── imaplib.py │ ├── imghdr.py │ ├── importlib │ │ └── __init__.py │ ├── imputil.py │ ├── inspect.py │ ├── io.py │ ├── json │ │ ├── __init__.py │ │ ├── decoder.py │ │ ├── encoder.py │ │ ├── scanner.py │ │ ├── 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 │ ├── lib-tk │ │ ├── Canvas.py │ │ ├── Dialog.py │ │ ├── FileDialog.py │ │ ├── FixTk.py │ │ ├── ScrolledText.py │ │ ├── SimpleDialog.py │ │ ├── Tix.py │ │ ├── Tkconstants.py │ │ ├── Tkdnd.py │ │ ├── Tkinter.py │ │ ├── test │ │ │ ├── runtktests.py │ │ │ ├── test_tkinter │ │ │ │ ├── __init__.py │ │ │ │ ├── test_font.py │ │ │ │ ├── test_geometry_managers.py │ │ │ │ ├── test_images.py │ │ │ │ ├── test_loadtk.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 │ │ ├── tkColorChooser.py │ │ ├── tkCommonDialog.py │ │ ├── tkFileDialog.py │ │ ├── tkFont.py │ │ ├── tkMessageBox.py │ │ ├── tkSimpleDialog.py │ │ ├── ttk.py │ │ └── turtle.py │ ├── lib2to3 │ │ ├── Grammar.txt │ │ ├── PatternGrammar.txt │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── btm_matcher.py │ │ ├── btm_utils.py │ │ ├── fixer_base.py │ │ ├── fixer_util.py │ │ ├── fixes │ │ │ ├── __init__.py │ │ │ ├── fix_apply.py │ │ │ ├── fix_asserts.py │ │ │ ├── fix_basestring.py │ │ │ ├── fix_buffer.py │ │ │ ├── fix_callable.py │ │ │ ├── fix_dict.py │ │ │ ├── fix_except.py │ │ │ ├── fix_exec.py │ │ │ ├── fix_execfile.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_imports.py │ │ │ ├── fix_imports2.py │ │ │ ├── fix_input.py │ │ │ ├── fix_intern.py │ │ │ ├── fix_isinstance.py │ │ │ ├── fix_itertools.py │ │ │ ├── fix_itertools_imports.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 │ │ ├── main.py │ │ ├── patcomp.py │ │ ├── pgen2 │ │ │ ├── __init__.py │ │ │ ├── conv.py │ │ │ ├── driver.py │ │ │ ├── grammar.py │ │ │ ├── literals.py │ │ │ ├── parse.py │ │ │ ├── pgen.py │ │ │ ├── token.py │ │ │ └── tokenize.py │ │ ├── pygram.py │ │ ├── pytree.py │ │ ├── refactor.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ ├── bom.py │ │ │ ├── crlf.py │ │ │ ├── different_encoding.py │ │ │ ├── false_encoding.py │ │ │ ├── fixers │ │ │ │ ├── bad_order.py │ │ │ │ ├── myfixes │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── fix_explicit.py │ │ │ │ │ ├── fix_first.py │ │ │ │ │ ├── fix_last.py │ │ │ │ │ ├── fix_parrot.py │ │ │ │ │ └── fix_preorder.py │ │ │ │ ├── no_fixer_cls.py │ │ │ │ └── parrot_example.py │ │ │ ├── infinite_recursion.py │ │ │ ├── py2_test_grammar.py │ │ │ └── py3_test_grammar.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 │ ├── linecache.py │ ├── locale.py │ ├── logging │ │ ├── __init__.py │ │ ├── config.py │ │ └── handlers.py │ ├── macpath.py │ ├── macurl2path.py │ ├── mailbox.py │ ├── mailcap.py │ ├── markupbase.py │ ├── md5.py │ ├── mhlib.py │ ├── mimetools.py │ ├── mimetypes.py │ ├── mimify.py │ ├── modulefinder.py │ ├── msilib │ │ ├── __init__.py │ │ ├── schema.py │ │ ├── sequence.py │ │ └── text.py │ ├── multifile.py │ ├── multiprocessing │ │ ├── __init__.py │ │ ├── connection.py │ │ ├── dummy │ │ │ ├── __init__.py │ │ │ └── connection.py │ │ ├── forking.py │ │ ├── heap.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 │ ├── nturl2path.py │ ├── numbers.py │ ├── opcode.py │ ├── optparse.py │ ├── os.py │ ├── os2emxpath.py │ ├── pdb.py │ ├── pickle.py │ ├── pickletools.py │ ├── pipes.py │ ├── pkgutil.py │ ├── platform.py │ ├── plistlib.py │ ├── popen2.py │ ├── poplib.py │ ├── posixfile.py │ ├── posixpath.py │ ├── pprint.py │ ├── profile.py │ ├── pstats.py │ ├── pty.py │ ├── py_compile.py │ ├── pyclbr.py │ ├── pydoc.py │ ├── pydoc_data │ │ ├── __init__.py │ │ └── topics.py │ ├── quopri.py │ ├── random.py │ ├── re.py │ ├── repr.py │ ├── rexec.py │ ├── rfc822.py │ ├── rlcompleter.py │ ├── robotparser.py │ ├── runpy.py │ ├── sched.py │ ├── sets.py │ ├── sgmllib.py │ ├── sha.py │ ├── shelve.py │ ├── shlex.py │ ├── shutil.py │ ├── site-packages │ │ ├── OpenSSL │ │ │ ├── SSL.py │ │ │ ├── __init__.py │ │ │ ├── _util.py │ │ │ ├── crypto.py │ │ │ ├── rand.py │ │ │ ├── test │ │ │ │ ├── __init__.py │ │ │ │ ├── test_crypto.py │ │ │ │ ├── test_rand.py │ │ │ │ ├── test_ssl.py │ │ │ │ ├── test_tsafe.py │ │ │ │ ├── test_util.py │ │ │ │ └── util.py │ │ │ ├── tsafe.py │ │ │ └── version.py │ │ ├── README.txt │ │ ├── _cffi_backend.pyd │ │ ├── _markerlib │ │ │ ├── __init__.py │ │ │ └── markers.py │ │ ├── cffi-1.4.1.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ ├── metadata.json │ │ │ └── top_level.txt │ │ ├── cffi │ │ │ ├── __init__.py │ │ │ ├── _cffi_include.h │ │ │ ├── api.py │ │ │ ├── backend_ctypes.py │ │ │ ├── cffi_opcode.py │ │ │ ├── commontypes.py │ │ │ ├── cparser.py │ │ │ ├── ffiplatform.py │ │ │ ├── gc_weakref.py │ │ │ ├── lock.py │ │ │ ├── model.py │ │ │ ├── parse_c_type.h │ │ │ ├── recompiler.py │ │ │ ├── setuptools_ext.py │ │ │ ├── vengine_cpy.py │ │ │ ├── vengine_gen.py │ │ │ └── verifier.py │ │ ├── cryptography-1.1.2.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ ├── metadata.json │ │ │ └── top_level.txt │ │ ├── cryptography │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── exceptions.py │ │ │ ├── fernet.py │ │ │ ├── hazmat │ │ │ │ ├── __init__.py │ │ │ │ ├── backends │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── commoncrypto │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── backend.py │ │ │ │ │ │ ├── ciphers.py │ │ │ │ │ │ ├── hashes.py │ │ │ │ │ │ └── hmac.py │ │ │ │ │ ├── interfaces.py │ │ │ │ │ ├── multibackend.py │ │ │ │ │ └── openssl │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── backend.py │ │ │ │ │ │ ├── ciphers.py │ │ │ │ │ │ ├── cmac.py │ │ │ │ │ │ ├── dsa.py │ │ │ │ │ │ ├── ec.py │ │ │ │ │ │ ├── hashes.py │ │ │ │ │ │ ├── hmac.py │ │ │ │ │ │ ├── rsa.py │ │ │ │ │ │ ├── utils.py │ │ │ │ │ │ └── x509.py │ │ │ │ ├── bindings │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _constant_time.pyd │ │ │ │ │ ├── _openssl.pyd │ │ │ │ │ ├── _padding.pyd │ │ │ │ │ ├── commoncrypto │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── binding.py │ │ │ │ │ └── openssl │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _conditional.py │ │ │ │ │ │ └── binding.py │ │ │ │ └── primitives │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── asymmetric │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── dh.py │ │ │ │ │ ├── dsa.py │ │ │ │ │ ├── ec.py │ │ │ │ │ ├── padding.py │ │ │ │ │ ├── rsa.py │ │ │ │ │ └── utils.py │ │ │ │ │ ├── ciphers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── algorithms.py │ │ │ │ │ ├── base.py │ │ │ │ │ └── modes.py │ │ │ │ │ ├── cmac.py │ │ │ │ │ ├── constant_time.py │ │ │ │ │ ├── hashes.py │ │ │ │ │ ├── hmac.py │ │ │ │ │ ├── interfaces │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── kdf │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── concatkdf.py │ │ │ │ │ ├── hkdf.py │ │ │ │ │ ├── pbkdf2.py │ │ │ │ │ └── x963kdf.py │ │ │ │ │ ├── keywrap.py │ │ │ │ │ ├── padding.py │ │ │ │ │ ├── serialization.py │ │ │ │ │ └── twofactor │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── hotp.py │ │ │ │ │ ├── totp.py │ │ │ │ │ └── utils.py │ │ │ ├── utils.py │ │ │ └── x509 │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── extensions.py │ │ │ │ ├── general_name.py │ │ │ │ ├── name.py │ │ │ │ └── oid.py │ │ ├── easy_install.py │ │ ├── enum │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── __init__.py │ │ │ ├── doc │ │ │ │ ├── enum.pdf │ │ │ │ └── enum.rst │ │ │ └── test_enum.py │ │ ├── idna-2.0.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── metadata.json │ │ │ ├── pbr.json │ │ │ └── top_level.txt │ │ ├── idna │ │ │ ├── __init__.py │ │ │ ├── codec.py │ │ │ ├── compat.py │ │ │ ├── core.py │ │ │ ├── idnadata.py │ │ │ └── uts46data.py │ │ ├── ipaddress-1.0.15.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── pydist.json │ │ │ └── top_level.txt │ │ ├── ipaddress.py │ │ ├── oss2 │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ ├── auth.py │ │ │ ├── compat.py │ │ │ ├── defaults.py │ │ │ ├── exceptions.py │ │ │ ├── http.py │ │ │ ├── iterators.py │ │ │ ├── models.py │ │ │ ├── resumable.py │ │ │ ├── task_queue.py │ │ │ ├── utils.py │ │ │ └── xml_utils.py │ │ ├── pip-1.5.6.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ ├── metadata.json │ │ │ └── top_level.txt │ │ ├── pip │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── _markerlib │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── markers.py │ │ │ │ ├── colorama │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ansi.py │ │ │ │ │ ├── ansitowin32.py │ │ │ │ │ ├── initialise.py │ │ │ │ │ ├── win32.py │ │ │ │ │ └── winterm.py │ │ │ │ ├── distlib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _backport │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── misc.py │ │ │ │ │ │ ├── shutil.py │ │ │ │ │ │ ├── sysconfig.cfg │ │ │ │ │ │ ├── sysconfig.py │ │ │ │ │ │ └── tarfile.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── database.py │ │ │ │ │ ├── index.py │ │ │ │ │ ├── locators.py │ │ │ │ │ ├── manifest.py │ │ │ │ │ ├── markers.py │ │ │ │ │ ├── metadata.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── scripts.py │ │ │ │ │ ├── t32.exe │ │ │ │ │ ├── t64.exe │ │ │ │ │ ├── util.py │ │ │ │ │ ├── version.py │ │ │ │ │ ├── w32.exe │ │ │ │ │ ├── w64.exe │ │ │ │ │ └── wheel.py │ │ │ │ ├── html5lib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── constants.py │ │ │ │ │ ├── filters │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _base.py │ │ │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ │ │ ├── inject_meta_charset.py │ │ │ │ │ │ ├── lint.py │ │ │ │ │ │ ├── optionaltags.py │ │ │ │ │ │ ├── sanitizer.py │ │ │ │ │ │ └── whitespace.py │ │ │ │ │ ├── html5parser.py │ │ │ │ │ ├── ihatexml.py │ │ │ │ │ ├── inputstream.py │ │ │ │ │ ├── sanitizer.py │ │ │ │ │ ├── serializer │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── htmlserializer.py │ │ │ │ │ ├── tokenizer.py │ │ │ │ │ ├── treeadapters │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── sax.py │ │ │ │ │ ├── treebuilders │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _base.py │ │ │ │ │ │ ├── dom.py │ │ │ │ │ │ ├── etree.py │ │ │ │ │ │ └── etree_lxml.py │ │ │ │ │ ├── treewalkers │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _base.py │ │ │ │ │ │ ├── dom.py │ │ │ │ │ │ ├── etree.py │ │ │ │ │ │ ├── genshistream.py │ │ │ │ │ │ ├── lxmletree.py │ │ │ │ │ │ └── pulldom.py │ │ │ │ │ ├── trie │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _base.py │ │ │ │ │ │ ├── datrie.py │ │ │ │ │ │ └── py.py │ │ │ │ │ └── utils.py │ │ │ │ ├── pkg_resources.py │ │ │ │ ├── re-vendor.py │ │ │ │ ├── requests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── adapters.py │ │ │ │ │ ├── api.py │ │ │ │ │ ├── auth.py │ │ │ │ │ ├── cacert.pem │ │ │ │ │ ├── certs.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── cookies.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── hooks.py │ │ │ │ │ ├── models.py │ │ │ │ │ ├── packages │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── chardet │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── big5freq.py │ │ │ │ │ │ │ ├── big5prober.py │ │ │ │ │ │ │ ├── chardetect.py │ │ │ │ │ │ │ ├── chardistribution.py │ │ │ │ │ │ │ ├── charsetgroupprober.py │ │ │ │ │ │ │ ├── charsetprober.py │ │ │ │ │ │ │ ├── codingstatemachine.py │ │ │ │ │ │ │ ├── compat.py │ │ │ │ │ │ │ ├── constants.py │ │ │ │ │ │ │ ├── cp949prober.py │ │ │ │ │ │ │ ├── escprober.py │ │ │ │ │ │ │ ├── escsm.py │ │ │ │ │ │ │ ├── eucjpprober.py │ │ │ │ │ │ │ ├── euckrfreq.py │ │ │ │ │ │ │ ├── euckrprober.py │ │ │ │ │ │ │ ├── euctwfreq.py │ │ │ │ │ │ │ ├── euctwprober.py │ │ │ │ │ │ │ ├── gb2312freq.py │ │ │ │ │ │ │ ├── gb2312prober.py │ │ │ │ │ │ │ ├── hebrewprober.py │ │ │ │ │ │ │ ├── jisfreq.py │ │ │ │ │ │ │ ├── jpcntx.py │ │ │ │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ │ │ │ ├── langcyrillicmodel.py │ │ │ │ │ │ │ ├── langgreekmodel.py │ │ │ │ │ │ │ ├── langhebrewmodel.py │ │ │ │ │ │ │ ├── langhungarianmodel.py │ │ │ │ │ │ │ ├── langthaimodel.py │ │ │ │ │ │ │ ├── latin1prober.py │ │ │ │ │ │ │ ├── mbcharsetprober.py │ │ │ │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ │ │ │ ├── mbcssm.py │ │ │ │ │ │ │ ├── sbcharsetprober.py │ │ │ │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ │ │ │ ├── sjisprober.py │ │ │ │ │ │ │ ├── universaldetector.py │ │ │ │ │ │ │ └── utf8prober.py │ │ │ │ │ │ └── urllib3 │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── _collections.py │ │ │ │ │ │ │ ├── connection.py │ │ │ │ │ │ │ ├── connectionpool.py │ │ │ │ │ │ │ ├── contrib │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ │ │ └── pyopenssl.py │ │ │ │ │ │ │ ├── exceptions.py │ │ │ │ │ │ │ ├── fields.py │ │ │ │ │ │ │ ├── filepost.py │ │ │ │ │ │ │ ├── packages │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── ordered_dict.py │ │ │ │ │ │ │ ├── six.py │ │ │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ │ └── _implementation.py │ │ │ │ │ │ │ ├── poolmanager.py │ │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ │ ├── response.py │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── connection.py │ │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ │ ├── response.py │ │ │ │ │ │ │ ├── ssl_.py │ │ │ │ │ │ │ ├── timeout.py │ │ │ │ │ │ │ └── url.py │ │ │ │ │ ├── sessions.py │ │ │ │ │ ├── status_codes.py │ │ │ │ │ ├── structures.py │ │ │ │ │ └── utils.py │ │ │ │ └── six.py │ │ │ ├── backwardcompat │ │ │ │ └── __init__.py │ │ │ ├── basecommand.py │ │ │ ├── baseparser.py │ │ │ ├── cmdoptions.py │ │ │ ├── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── bundle.py │ │ │ │ ├── completion.py │ │ │ │ ├── freeze.py │ │ │ │ ├── help.py │ │ │ │ ├── install.py │ │ │ │ ├── list.py │ │ │ │ ├── search.py │ │ │ │ ├── show.py │ │ │ │ ├── uninstall.py │ │ │ │ ├── unzip.py │ │ │ │ ├── wheel.py │ │ │ │ └── zip.py │ │ │ ├── download.py │ │ │ ├── exceptions.py │ │ │ ├── index.py │ │ │ ├── locations.py │ │ │ ├── log.py │ │ │ ├── pep425tags.py │ │ │ ├── req.py │ │ │ ├── runner.py │ │ │ ├── status_codes.py │ │ │ ├── util.py │ │ │ ├── vcs │ │ │ │ ├── __init__.py │ │ │ │ ├── bazaar.py │ │ │ │ ├── git.py │ │ │ │ ├── mercurial.py │ │ │ │ └── subversion.py │ │ │ └── wheel.py │ │ ├── pkg_resources.py │ │ ├── pyOpenSSL-0.15.1.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── metadata.json │ │ │ └── top_level.txt │ │ ├── pyasn1-0.1.9.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── metadata.json │ │ │ ├── top_level.txt │ │ │ └── zip-safe │ │ ├── pyasn1 │ │ │ ├── __init__.py │ │ │ ├── codec │ │ │ │ ├── __init__.py │ │ │ │ ├── ber │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── decoder.py │ │ │ │ │ ├── encoder.py │ │ │ │ │ └── eoo.py │ │ │ │ ├── cer │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── decoder.py │ │ │ │ │ └── encoder.py │ │ │ │ └── der │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── decoder.py │ │ │ │ │ └── encoder.py │ │ │ ├── compat │ │ │ │ ├── __init__.py │ │ │ │ ├── binary.py │ │ │ │ └── octets.py │ │ │ ├── debug.py │ │ │ ├── error.py │ │ │ └── type │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── char.py │ │ │ │ ├── constraint.py │ │ │ │ ├── error.py │ │ │ │ ├── namedtype.py │ │ │ │ ├── namedval.py │ │ │ │ ├── tag.py │ │ │ │ ├── tagmap.py │ │ │ │ ├── univ.py │ │ │ │ └── useful.py │ │ ├── pycparser │ │ │ ├── __init__.py │ │ │ ├── _ast_gen.py │ │ │ ├── _build_tables.py │ │ │ ├── _c_ast.cfg │ │ │ ├── ast_transforms.py │ │ │ ├── c_ast.py │ │ │ ├── c_generator.py │ │ │ ├── c_lexer.py │ │ │ ├── c_parser.py │ │ │ ├── lextab.py │ │ │ ├── ply │ │ │ │ ├── __init__.py │ │ │ │ ├── cpp.py │ │ │ │ ├── ctokens.py │ │ │ │ ├── lex.py │ │ │ │ └── yacc.py │ │ │ ├── plyparser.py │ │ │ └── yacctab.py │ │ ├── pyftpdlib │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── _compat.py │ │ │ ├── authorizers.py │ │ │ ├── filesystems.py │ │ │ ├── handlers.py │ │ │ ├── ioloop.py │ │ │ ├── log.py │ │ │ ├── servers.py │ │ │ ├── splice.py │ │ │ └── test │ │ │ │ ├── README │ │ │ │ ├── __init__.py │ │ │ │ ├── keycert.pem │ │ │ │ ├── runner.py │ │ │ │ ├── test_authorizers.py │ │ │ │ ├── test_filesystems.py │ │ │ │ ├── test_functional.py │ │ │ │ ├── test_functional_ssl.py │ │ │ │ ├── test_ioloop.py │ │ │ │ └── test_servers.py │ │ ├── requests-2.8.1.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── metadata.json │ │ │ └── top_level.txt │ │ ├── requests │ │ │ ├── __init__.py │ │ │ ├── adapters.py │ │ │ ├── api.py │ │ │ ├── auth.py │ │ │ ├── cacert.pem │ │ │ ├── certs.py │ │ │ ├── compat.py │ │ │ ├── cookies.py │ │ │ ├── exceptions.py │ │ │ ├── hooks.py │ │ │ ├── models.py │ │ │ ├── packages │ │ │ │ ├── __init__.py │ │ │ │ ├── chardet │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── big5freq.py │ │ │ │ │ ├── big5prober.py │ │ │ │ │ ├── chardetect.py │ │ │ │ │ ├── chardistribution.py │ │ │ │ │ ├── charsetgroupprober.py │ │ │ │ │ ├── charsetprober.py │ │ │ │ │ ├── codingstatemachine.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── constants.py │ │ │ │ │ ├── cp949prober.py │ │ │ │ │ ├── escprober.py │ │ │ │ │ ├── escsm.py │ │ │ │ │ ├── eucjpprober.py │ │ │ │ │ ├── euckrfreq.py │ │ │ │ │ ├── euckrprober.py │ │ │ │ │ ├── euctwfreq.py │ │ │ │ │ ├── euctwprober.py │ │ │ │ │ ├── gb2312freq.py │ │ │ │ │ ├── gb2312prober.py │ │ │ │ │ ├── hebrewprober.py │ │ │ │ │ ├── jisfreq.py │ │ │ │ │ ├── jpcntx.py │ │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ │ ├── langcyrillicmodel.py │ │ │ │ │ ├── langgreekmodel.py │ │ │ │ │ ├── langhebrewmodel.py │ │ │ │ │ ├── langhungarianmodel.py │ │ │ │ │ ├── langthaimodel.py │ │ │ │ │ ├── latin1prober.py │ │ │ │ │ ├── mbcharsetprober.py │ │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ │ ├── mbcssm.py │ │ │ │ │ ├── sbcharsetprober.py │ │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ │ ├── sjisprober.py │ │ │ │ │ ├── universaldetector.py │ │ │ │ │ └── utf8prober.py │ │ │ │ └── urllib3 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _collections.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── connectionpool.py │ │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── appengine.py │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ └── pyopenssl.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── fields.py │ │ │ │ │ ├── filepost.py │ │ │ │ │ ├── packages │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ordered_dict.py │ │ │ │ │ ├── six.py │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _implementation.py │ │ │ │ │ ├── poolmanager.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ └── util │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ ├── retry.py │ │ │ │ │ ├── ssl_.py │ │ │ │ │ ├── timeout.py │ │ │ │ │ └── url.py │ │ │ ├── sessions.py │ │ │ ├── status_codes.py │ │ │ ├── structures.py │ │ │ └── utils.py │ │ ├── setuptools-7.0.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── dependency_links.txt │ │ │ ├── entry_points.txt │ │ │ ├── metadata.json │ │ │ ├── top_level.txt │ │ │ └── zip-safe │ │ ├── setuptools │ │ │ ├── __init__.py │ │ │ ├── archive_util.py │ │ │ ├── cli-32.exe │ │ │ ├── cli-64.exe │ │ │ ├── cli-arm-32.exe │ │ │ ├── cli.exe │ │ │ ├── command │ │ │ │ ├── __init__.py │ │ │ │ ├── alias.py │ │ │ │ ├── bdist_egg.py │ │ │ │ ├── bdist_rpm.py │ │ │ │ ├── bdist_wininst.py │ │ │ │ ├── build_ext.py │ │ │ │ ├── build_py.py │ │ │ │ ├── develop.py │ │ │ │ ├── easy_install.py │ │ │ │ ├── egg_info.py │ │ │ │ ├── install.py │ │ │ │ ├── install_egg_info.py │ │ │ │ ├── install_lib.py │ │ │ │ ├── install_scripts.py │ │ │ │ ├── launcher manifest.xml │ │ │ │ ├── register.py │ │ │ │ ├── rotate.py │ │ │ │ ├── saveopts.py │ │ │ │ ├── sdist.py │ │ │ │ ├── setopt.py │ │ │ │ ├── test.py │ │ │ │ └── upload_docs.py │ │ │ ├── compat.py │ │ │ ├── depends.py │ │ │ ├── dist.py │ │ │ ├── extension.py │ │ │ ├── gui-32.exe │ │ │ ├── gui-64.exe │ │ │ ├── gui-arm-32.exe │ │ │ ├── gui.exe │ │ │ ├── lib2to3_ex.py │ │ │ ├── msvc9_support.py │ │ │ ├── package_index.py │ │ │ ├── py26compat.py │ │ │ ├── py27compat.py │ │ │ ├── py31compat.py │ │ │ ├── sandbox.py │ │ │ ├── script (dev).tmpl │ │ │ ├── script.tmpl │ │ │ ├── site-patch.py │ │ │ ├── ssl_support.py │ │ │ ├── svn_utils.py │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── environment.py │ │ │ │ ├── py26compat.py │ │ │ │ ├── script-with-bom.py │ │ │ │ ├── server.py │ │ │ │ ├── test_bdist_egg.py │ │ │ │ ├── test_build_ext.py │ │ │ │ ├── test_develop.py │ │ │ │ ├── test_dist_info.py │ │ │ │ ├── test_easy_install.py │ │ │ │ ├── test_egg_info.py │ │ │ │ ├── test_find_packages.py │ │ │ │ ├── test_integration.py │ │ │ │ ├── test_markerlib.py │ │ │ │ ├── test_msvc9compiler.py │ │ │ │ ├── test_packageindex.py │ │ │ │ ├── test_resources.py │ │ │ │ ├── test_sandbox.py │ │ │ │ ├── test_sdist.py │ │ │ │ ├── test_svn.py │ │ │ │ ├── test_test.py │ │ │ │ └── test_upload_docs.py │ │ │ ├── unicode_utils.py │ │ │ ├── utils.py │ │ │ ├── version.py │ │ │ └── windows_support.py │ │ ├── six-1.10.0.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── metadata.json │ │ │ └── top_level.txt │ │ ├── six.py │ │ ├── urllib3-1.13.1.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── metadata.json │ │ │ ├── pbr.json │ │ │ └── top_level.txt │ │ └── urllib3 │ │ │ ├── __init__.py │ │ │ ├── _collections.py │ │ │ ├── connection.py │ │ │ ├── connectionpool.py │ │ │ ├── contrib │ │ │ ├── __init__.py │ │ │ ├── appengine.py │ │ │ ├── ntlmpool.py │ │ │ └── pyopenssl.py │ │ │ ├── exceptions.py │ │ │ ├── fields.py │ │ │ ├── filepost.py │ │ │ ├── packages │ │ │ ├── __init__.py │ │ │ ├── ordered_dict.py │ │ │ ├── six.py │ │ │ └── ssl_match_hostname │ │ │ │ ├── __init__.py │ │ │ │ └── _implementation.py │ │ │ ├── poolmanager.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ └── util │ │ │ ├── __init__.py │ │ │ ├── connection.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ ├── retry.py │ │ │ ├── ssl_.py │ │ │ ├── timeout.py │ │ │ └── url.py │ ├── site.py │ ├── smtpd.py │ ├── smtplib.py │ ├── sndhdr.py │ ├── socket.py │ ├── sqlite3 │ │ ├── __init__.py │ │ ├── dbapi2.py │ │ ├── dump.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── dbapi.py │ │ │ ├── dump.py │ │ │ ├── factory.py │ │ │ ├── hooks.py │ │ │ ├── py25tests.py │ │ │ ├── regression.py │ │ │ ├── transactions.py │ │ │ ├── types.py │ │ │ └── userfunctions.py │ ├── sre.py │ ├── sre_compile.py │ ├── sre_constants.py │ ├── sre_parse.py │ ├── ssl.py │ ├── stat.py │ ├── statvfs.py │ ├── string.py │ ├── stringold.py │ ├── stringprep.py │ ├── struct.py │ ├── subprocess.py │ ├── sunau.py │ ├── sunaudio.py │ ├── symbol.py │ ├── symtable.py │ ├── sysconfig.py │ ├── tabnanny.py │ ├── tarfile.py │ ├── telnetlib.py │ ├── tempfile.py │ ├── test │ │ ├── 185test.db │ │ ├── Sine-1000Hz-300ms.aif │ │ ├── __init__.py │ │ ├── _mock_backport.py │ │ ├── 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 │ │ ├── bad_coding.py │ │ ├── bad_coding2.py │ │ ├── bad_coding3.py │ │ ├── badcert.pem │ │ ├── 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 │ │ ├── buffer_tests.py │ │ ├── capath │ │ │ ├── 4e1295a3.0 │ │ │ ├── 5ed36f99.0 │ │ │ ├── 6e88d7b8.0 │ │ │ └── 99d0fa06.0 │ │ ├── cfgparser.1 │ │ ├── check_soundcard.vbs │ │ ├── cjkencodings │ │ │ ├── big5-utf8.txt │ │ │ ├── big5.txt │ │ │ ├── big5hkscs-utf8.txt │ │ │ ├── big5hkscs.txt │ │ │ ├── cp949-utf8.txt │ │ │ ├── cp949.txt │ │ │ ├── euc_jisx0213-utf8.txt │ │ │ ├── euc_jisx0213.txt │ │ │ ├── euc_jp-utf8.txt │ │ │ ├── euc_jp.txt │ │ │ ├── euc_kr-utf8.txt │ │ │ ├── euc_kr.txt │ │ │ ├── gb18030-utf8.txt │ │ │ ├── gb18030.txt │ │ │ ├── gb2312-utf8.txt │ │ │ ├── gb2312.txt │ │ │ ├── gbk-utf8.txt │ │ │ ├── gbk.txt │ │ │ ├── hz-utf8.txt │ │ │ ├── hz.txt │ │ │ ├── iso2022_jp-utf8.txt │ │ │ ├── iso2022_jp.txt │ │ │ ├── iso2022_kr-utf8.txt │ │ │ ├── iso2022_kr.txt │ │ │ ├── johab-utf8.txt │ │ │ ├── johab.txt │ │ │ ├── shift_jis-utf8.txt │ │ │ ├── shift_jis.txt │ │ │ ├── shift_jisx0213-utf8.txt │ │ │ └── shift_jisx0213.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 │ │ ├── curses_tests.py │ │ ├── decimaltestdata │ │ │ ├── abs.decTest │ │ │ ├── add.decTest │ │ │ ├── and.decTest │ │ │ ├── base.decTest │ │ │ ├── clamp.decTest │ │ │ ├── class.decTest │ │ │ ├── compare.decTest │ │ │ ├── comparetotal.decTest │ │ │ ├── comparetotmag.decTest │ │ │ ├── copy.decTest │ │ │ ├── copyabs.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 │ │ │ ├── ddCopy.decTest │ │ │ ├── ddCopyAbs.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 │ │ │ ├── dqCopy.decTest │ │ │ ├── dqCopyAbs.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 │ │ ├── dh512.pem │ │ ├── doctest_aliases.py │ │ ├── double_const.py │ │ ├── empty.vbs │ │ ├── exception_hierarchy.txt │ │ ├── floating_points.txt │ │ ├── fork_wait.py │ │ ├── formatfloat_testcases.txt │ │ ├── gdb_sample.py │ │ ├── greyrgb.uue │ │ ├── https_svn_python_org_root.pem │ │ ├── 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 │ │ ├── inspect_fodder.py │ │ ├── inspect_fodder2.py │ │ ├── keycert.passwd.pem │ │ ├── keycert.pem │ │ ├── keycert2.pem │ │ ├── keycert3.pem │ │ ├── keycert4.pem │ │ ├── leakers │ │ │ ├── README.txt │ │ │ ├── __init__.py │ │ │ ├── test_ctypes.py │ │ │ ├── test_dictself.py │ │ │ ├── test_gestalt.py │ │ │ └── test_selftype.py │ │ ├── list_tests.py │ │ ├── lock_tests.py │ │ ├── make_ssl_certs.py │ │ ├── mapping_tests.py │ │ ├── math_testcases.txt │ │ ├── mp_fork_bomb.py │ │ ├── nokia.pem │ │ ├── nullbytecert.pem │ │ ├── nullcert.pem │ │ ├── outstanding_bugs.py │ │ ├── pickletester.py │ │ ├── profilee.py │ │ ├── pycacert.pem │ │ ├── pyclbr_input.py │ │ ├── pydoc_mod.py │ │ ├── pydocfodder.py │ │ ├── pystone.py │ │ ├── randv2_32.pck │ │ ├── randv2_64.pck │ │ ├── randv3.pck │ │ ├── re_tests.py │ │ ├── regrtest.py │ │ ├── relimport.py │ │ ├── reperf.py │ │ ├── revocation.crl │ │ ├── sample_doctest.py │ │ ├── sample_doctest_no_docstrings.py │ │ ├── sample_doctest_no_doctests.py │ │ ├── script_helper.py │ │ ├── selfsigned_pythontestdotnet.pem │ │ ├── seq_tests.py │ │ ├── sgml_input.html │ │ ├── sha256.pem │ │ ├── sortperf.py │ │ ├── ssl_cert.pem │ │ ├── ssl_key.passwd.pem │ │ ├── ssl_key.pem │ │ ├── ssl_servers.py │ │ ├── string_tests.py │ │ ├── subprocessdata │ │ │ └── sigchild_ignore.py │ │ ├── symlink_support.py │ │ ├── test_MimeWriter.py │ │ ├── test_SimpleHTTPServer.py │ │ ├── test_StringIO.py │ │ ├── test___all__.py │ │ ├── test___future__.py │ │ ├── test__locale.py │ │ ├── test__osx_support.py │ │ ├── test_abc.py │ │ ├── test_abstract_numbers.py │ │ ├── test_aepack.py │ │ ├── test_aifc.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_bigaddrspace.py │ │ ├── test_bigmem.py │ │ ├── test_binascii.py │ │ ├── test_binhex.py │ │ ├── test_binop.py │ │ ├── test_bisect.py │ │ ├── test_bool.py │ │ ├── test_bsddb.py │ │ ├── test_bsddb185.py │ │ ├── test_bsddb3.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_cl.py │ │ ├── test_class.py │ │ ├── test_cmath.py │ │ ├── test_cmd.py │ │ ├── test_cmd_line.py │ │ ├── test_cmd_line_script.py │ │ ├── test_code.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 │ │ ├── test_codecs.py │ │ ├── test_codeop.py │ │ ├── test_coding.py │ │ ├── test_coercion.py │ │ ├── test_collections.py │ │ ├── test_colorsys.py │ │ ├── test_commands.py │ │ ├── test_compare.py │ │ ├── test_compile.py │ │ ├── test_compileall.py │ │ ├── test_compiler.py │ │ ├── test_complex.py │ │ ├── test_complex_args.py │ │ ├── test_contains.py │ │ ├── test_contextlib.py │ │ ├── test_cookie.py │ │ ├── test_cookielib.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_dict.py │ │ ├── test_dictcomps.py │ │ ├── test_dictviews.py │ │ ├── test_difflib.py │ │ ├── test_difflib_expect.html │ │ ├── test_dircache.py │ │ ├── test_dis.py │ │ ├── test_distutils.py │ │ ├── test_dl.py │ │ ├── test_doctest.py │ │ ├── test_doctest.txt │ │ ├── test_doctest2.py │ │ ├── test_doctest2.txt │ │ ├── test_doctest3.txt │ │ ├── test_doctest4.txt │ │ ├── test_docxmlrpc.py │ │ ├── test_dumbdbm.py │ │ ├── test_dummy_thread.py │ │ ├── test_dummy_threading.py │ │ ├── test_email.py │ │ ├── test_email_codecs.py │ │ ├── test_email_renamed.py │ │ ├── test_ensurepip.py │ │ ├── test_enumerate.py │ │ ├── test_eof.py │ │ ├── test_epoll.py │ │ ├── test_errno.py │ │ ├── test_exception_variations.py │ │ ├── test_exceptions.py │ │ ├── test_extcall.py │ │ ├── test_fcntl.py │ │ ├── test_file.py │ │ ├── test_file2k.py │ │ ├── test_file_eintr.py │ │ ├── test_filecmp.py │ │ ├── test_fileinput.py │ │ ├── test_fileio.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_future.py │ │ ├── test_future1.py │ │ ├── test_future2.py │ │ ├── test_future3.py │ │ ├── test_future4.py │ │ ├── test_future5.py │ │ ├── test_future_builtins.py │ │ ├── test_gc.py │ │ ├── test_gdb.py │ │ ├── test_gdbm.py │ │ ├── test_generators.py │ │ ├── test_genericpath.py │ │ ├── test_genexps.py │ │ ├── test_getargs.py │ │ ├── test_getargs2.py │ │ ├── test_getopt.py │ │ ├── test_gettext.py │ │ ├── test_gl.py │ │ ├── test_glob.py │ │ ├── test_global.py │ │ ├── test_grammar.py │ │ ├── test_grp.py │ │ ├── test_gzip.py │ │ ├── test_hash.py │ │ ├── test_hashlib.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 │ │ ├── test_imp.py │ │ ├── test_import.py │ │ ├── test_importhooks.py │ │ ├── test_importlib.py │ │ ├── test_index.py │ │ ├── test_inspect.py │ │ ├── test_int.py │ │ ├── test_int_literal.py │ │ ├── test_io.py │ │ ├── test_ioctl.py │ │ ├── test_isinstance.py │ │ ├── test_iter.py │ │ ├── test_iterlen.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_logging.py │ │ ├── test_long.py │ │ ├── test_long_future.py │ │ ├── test_longexp.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_minidom.py │ │ ├── test_mmap.py │ │ ├── test_module.py │ │ ├── test_modulefinder.py │ │ ├── test_msilib.py │ │ ├── test_multibytecodec.py │ │ ├── test_multibytecodec_support.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_os.py │ │ ├── test_ossaudiodev.py │ │ ├── test_parser.py │ │ ├── test_pdb.py │ │ ├── test_peepholer.py │ │ ├── test_pep247.py │ │ ├── test_pep263.py │ │ ├── test_pep277.py │ │ ├── test_pep292.py │ │ ├── test_pep352.py │ │ ├── test_pickle.py │ │ ├── test_pickletools.py │ │ ├── test_pipes.py │ │ ├── test_pkg.py │ │ ├── test_pkgimport.py │ │ ├── test_pkgutil.py │ │ ├── test_platform.py │ │ ├── test_plistlib.py │ │ ├── test_poll.py │ │ ├── test_popen.py │ │ ├── test_popen2.py │ │ ├── test_poplib.py │ │ ├── test_posix.py │ │ ├── test_posixpath.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_py_compile.py │ │ ├── test_pyclbr.py │ │ ├── test_pydoc.py │ │ ├── test_pyexpat.py │ │ ├── test_queue.py │ │ ├── test_quopri.py │ │ ├── test_random.py │ │ ├── test_re.py │ │ ├── test_readline.py │ │ ├── test_repr.py │ │ ├── test_resource.py │ │ ├── test_rfc822.py │ │ ├── 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_set.py │ │ ├── test_setcomps.py │ │ ├── test_sets.py │ │ ├── test_sgmllib.py │ │ ├── test_sha.py │ │ ├── test_shelve.py │ │ ├── test_shlex.py │ │ ├── test_shutil.py │ │ ├── test_signal.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_spwd.py │ │ ├── test_sqlite.py │ │ ├── test_ssl.py │ │ ├── test_startfile.py │ │ ├── test_stat.py │ │ ├── test_str.py │ │ ├── test_strftime.py │ │ ├── test_string.py │ │ ├── test_stringprep.py │ │ ├── test_strop.py │ │ ├── test_strptime.py │ │ ├── test_strtod.py │ │ ├── test_struct.py │ │ ├── test_structmembers.py │ │ ├── test_structseq.py │ │ ├── test_subprocess.py │ │ ├── test_sunau.py │ │ ├── test_sunaudiodev.py │ │ ├── test_sundry.py │ │ ├── test_support.py │ │ ├── test_symtable.py │ │ ├── test_syntax.py │ │ ├── test_sys.py │ │ ├── test_sys_setprofile.py │ │ ├── test_sys_settrace.py │ │ ├── test_sysconfig.py │ │ ├── test_tarfile.py │ │ ├── test_tcl.py │ │ ├── test_telnetlib.py │ │ ├── test_tempfile.py │ │ ├── test_textwrap.py │ │ ├── test_thread.py │ │ ├── test_threaded_import.py │ │ ├── test_threadedtempfile.py │ │ ├── test_threading.py │ │ ├── test_threading_local.py │ │ ├── test_threadsignals.py │ │ ├── test_time.py │ │ ├── test_timeout.py │ │ ├── test_tk.py │ │ ├── test_tokenize.py │ │ ├── test_tools.py │ │ ├── test_trace.py │ │ ├── test_traceback.py │ │ ├── test_transformer.py │ │ ├── test_ttk_guionly.py │ │ ├── test_ttk_textonly.py │ │ ├── test_tuple.py │ │ ├── test_typechecks.py │ │ ├── test_types.py │ │ ├── test_ucn.py │ │ ├── test_unary.py │ │ ├── test_undocumented_details.py │ │ ├── test_unicode.py │ │ ├── test_unicode_file.py │ │ ├── test_unicodedata.py │ │ ├── test_unittest.py │ │ ├── test_univnewlines.py │ │ ├── test_univnewlines2k.py │ │ ├── test_unpack.py │ │ ├── test_urllib.py │ │ ├── test_urllib2.py │ │ ├── test_urllib2_localnet.py │ │ ├── test_urllib2net.py │ │ ├── test_urllibnet.py │ │ ├── test_urlparse.py │ │ ├── test_userdict.py │ │ ├── test_userlist.py │ │ ├── test_userstring.py │ │ ├── test_uu.py │ │ ├── test_uuid.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.py │ │ ├── test_xml_etree_c.py │ │ ├── test_xmllib.py │ │ ├── test_xmlrpc.py │ │ ├── test_xpickle.py │ │ ├── test_xrange.py │ │ ├── test_zipfile.py │ │ ├── test_zipfile64.py │ │ ├── test_zipimport.py │ │ ├── test_zipimport_support.py │ │ ├── test_zlib.py │ │ ├── testall.py │ │ ├── testcodec.py │ │ ├── testimg.uue │ │ ├── testimgr.uue │ │ ├── testrgb.uue │ │ ├── testtar.tar │ │ ├── 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 │ │ ├── wrongcert.pem │ │ ├── xmltestdata │ │ │ ├── simple-ns.xml │ │ │ ├── simple.xml │ │ │ ├── test.xml │ │ │ └── test.xml.out │ │ ├── xmltests.py │ │ └── zipdir.zip │ ├── textwrap.py │ ├── this.py │ ├── threading.py │ ├── timeit.py │ ├── toaiff.py │ ├── token.py │ ├── tokenize.py │ ├── trace.py │ ├── traceback.py │ ├── tty.py │ ├── types.py │ ├── unittest │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── case.py │ │ ├── loader.py │ │ ├── main.py │ │ ├── result.py │ │ ├── runner.py │ │ ├── signals.py │ │ ├── suite.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── dummy.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 │ ├── urllib.py │ ├── urllib2.py │ ├── urlparse.py │ ├── user.py │ ├── uu.py │ ├── uuid.py │ ├── warnings.py │ ├── wave.py │ ├── weakref.py │ ├── webbrowser.py │ ├── whichdb.py │ ├── wsgiref │ │ ├── __init__.py │ │ ├── handlers.py │ │ ├── headers.py │ │ ├── simple_server.py │ │ ├── util.py │ │ └── validate.py │ ├── xdrlib.py │ ├── xml │ │ ├── __init__.py │ │ ├── dom │ │ │ ├── NodeFilter.py │ │ │ ├── __init__.py │ │ │ ├── domreg.py │ │ │ ├── expatbuilder.py │ │ │ ├── minicompat.py │ │ │ ├── minidom.py │ │ │ ├── pulldom.py │ │ │ └── xmlbuilder.py │ │ ├── etree │ │ │ ├── ElementInclude.py │ │ │ ├── ElementPath.py │ │ │ ├── ElementTree.py │ │ │ ├── __init__.py │ │ │ └── cElementTree.py │ │ ├── parsers │ │ │ ├── __init__.py │ │ │ └── expat.py │ │ └── sax │ │ │ ├── __init__.py │ │ │ ├── _exceptions.py │ │ │ ├── expatreader.py │ │ │ ├── handler.py │ │ │ ├── saxutils.py │ │ │ └── xmlreader.py │ ├── xmllib.py │ ├── xmlrpclib.py │ └── zipfile.py │ ├── Microsoft.VC90.CRT.manifest │ ├── NEWS.txt │ ├── README.txt │ ├── Scripts │ ├── easy_install-2.7.exe │ ├── easy_install.exe │ ├── ftpbench │ ├── pip.exe │ ├── pip2.7.exe │ └── pip2.exe │ ├── Tools │ ├── Scripts │ │ ├── 2to3.py │ │ ├── README.txt │ │ ├── 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 │ │ ├── find_recursionlimit.py │ │ ├── finddiv.py │ │ ├── findlinksto.py │ │ ├── findnocoding.py │ │ ├── fixcid.py │ │ ├── fixdiv.py │ │ ├── fixheader.py │ │ ├── fixnotice.py │ │ ├── fixps.py │ │ ├── ftpmirror.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 │ │ ├── redemo.py │ │ ├── reindent-rst.py │ │ ├── reindent.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 │ ├── i18n │ │ ├── makelocalealias.py │ │ ├── msgfmt.py │ │ └── pygettext.py │ ├── pynche │ │ ├── ChipViewer.py │ │ ├── ColorDB.py │ │ ├── DetailsViewer.py │ │ ├── ListViewer.py │ │ ├── Main.py │ │ ├── PyncheWidget.py │ │ ├── README.txt │ │ ├── StripViewer.py │ │ ├── Switchboard.py │ │ ├── TextViewer.py │ │ ├── TypeinViewer.py │ │ ├── X │ │ │ ├── rgb.txt │ │ │ └── xlicense.txt │ │ ├── __init__.py │ │ ├── html40colors.txt │ │ ├── namedcolors.txt │ │ ├── pyColorChooser.py │ │ ├── pynche.pyw │ │ ├── webcolors.txt │ │ └── websafe.txt │ ├── versioncheck │ │ ├── README.txt │ │ ├── _checkversion.py │ │ ├── checkversions.py │ │ └── pyversioncheck.py │ └── webchecker │ │ ├── README.txt │ │ ├── tktools.py │ │ ├── wcgui.py │ │ ├── wcmac.py │ │ ├── webchecker.py │ │ ├── websucker.py │ │ └── wsgui.py │ ├── include │ ├── Python-ast.h │ ├── Python.h │ ├── abstract.h │ ├── asdl.h │ ├── ast.h │ ├── bitset.h │ ├── boolobject.h │ ├── bufferobject.h │ ├── bytearrayobject.h │ ├── bytes_methods.h │ ├── bytesobject.h │ ├── cStringIO.h │ ├── cellobject.h │ ├── ceval.h │ ├── classobject.h │ ├── cobject.h │ ├── code.h │ ├── codecs.h │ ├── compile.h │ ├── complexobject.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 │ ├── py_curses.h │ ├── pyarena.h │ ├── pycapsule.h │ ├── pyconfig.h │ ├── pyctype.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 │ ├── 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 │ ├── libs │ ├── _bsddb.lib │ ├── _ctypes.lib │ ├── _ctypes_test.lib │ ├── _elementtree.lib │ ├── _hashlib.lib │ ├── _msi.lib │ ├── _multiprocessing.lib │ ├── _socket.lib │ ├── _sqlite3.lib │ ├── _ssl.lib │ ├── _testcapi.lib │ ├── _tkinter.lib │ ├── bz2.lib │ ├── libpython27.a │ ├── pyexpat.lib │ ├── python27.lib │ ├── select.lib │ ├── unicodedata.lib │ └── winsound.lib │ ├── msvcr90.dll │ ├── python.exe │ ├── python27.dll │ ├── pythonw.exe │ ├── tcl │ ├── dde1.3 │ │ ├── pkgIndex.tcl │ │ └── tcldde13.dll │ ├── reg1.2 │ │ ├── pkgIndex.tcl │ │ └── tclreg12.dll │ ├── 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-raw.enc │ │ │ ├── gb2312.enc │ │ │ ├── iso2022-jp.enc │ │ │ ├── iso2022-kr.enc │ │ │ ├── iso2022.enc │ │ │ ├── iso8859-1.enc │ │ │ ├── iso8859-10.enc │ │ │ ├── iso8859-13.enc │ │ │ ├── iso8859-14.enc │ │ │ ├── iso8859-15.enc │ │ │ ├── iso8859-16.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.msg │ │ │ ├── ar_in.msg │ │ │ ├── ar_jo.msg │ │ │ ├── ar_lb.msg │ │ │ ├── ar_sy.msg │ │ │ ├── be.msg │ │ │ ├── bg.msg │ │ │ ├── bn.msg │ │ │ ├── bn_in.msg │ │ │ ├── ca.msg │ │ │ ├── cs.msg │ │ │ ├── da.msg │ │ │ ├── de.msg │ │ │ ├── de_at.msg │ │ │ ├── de_be.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.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_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.msg │ │ │ ├── eu_es.msg │ │ │ ├── fa.msg │ │ │ ├── fa_in.msg │ │ │ ├── fa_ir.msg │ │ │ ├── fi.msg │ │ │ ├── fo.msg │ │ │ ├── fo_fo.msg │ │ │ ├── fr.msg │ │ │ ├── fr_be.msg │ │ │ ├── fr_ca.msg │ │ │ ├── fr_ch.msg │ │ │ ├── ga.msg │ │ │ ├── ga_ie.msg │ │ │ ├── gl.msg │ │ │ ├── gl_es.msg │ │ │ ├── gv.msg │ │ │ ├── gv_gb.msg │ │ │ ├── he.msg │ │ │ ├── hi.msg │ │ │ ├── hi_in.msg │ │ │ ├── hr.msg │ │ │ ├── hu.msg │ │ │ ├── id.msg │ │ │ ├── id_id.msg │ │ │ ├── is.msg │ │ │ ├── it.msg │ │ │ ├── it_ch.msg │ │ │ ├── ja.msg │ │ │ ├── kl.msg │ │ │ ├── kl_gl.msg │ │ │ ├── ko.msg │ │ │ ├── ko_kr.msg │ │ │ ├── kok.msg │ │ │ ├── kok_in.msg │ │ │ ├── kw.msg │ │ │ ├── kw_gb.msg │ │ │ ├── lt.msg │ │ │ ├── lv.msg │ │ │ ├── mk.msg │ │ │ ├── mr.msg │ │ │ ├── mr_in.msg │ │ │ ├── ms.msg │ │ │ ├── ms_my.msg │ │ │ ├── mt.msg │ │ │ ├── nb.msg │ │ │ ├── nl.msg │ │ │ ├── nl_be.msg │ │ │ ├── nn.msg │ │ │ ├── pl.msg │ │ │ ├── pt.msg │ │ │ ├── pt_br.msg │ │ │ ├── ro.msg │ │ │ ├── ru.msg │ │ │ ├── ru_ua.msg │ │ │ ├── sh.msg │ │ │ ├── sk.msg │ │ │ ├── sl.msg │ │ │ ├── sq.msg │ │ │ ├── sr.msg │ │ │ ├── sv.msg │ │ │ ├── sw.msg │ │ │ ├── ta.msg │ │ │ ├── ta_in.msg │ │ │ ├── te.msg │ │ │ ├── te_in.msg │ │ │ ├── th.msg │ │ │ ├── tr.msg │ │ │ ├── uk.msg │ │ │ ├── vi.msg │ │ │ ├── zh.msg │ │ │ ├── zh_cn.msg │ │ │ ├── zh_hk.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 │ │ │ │ ├── Fort_Wayne │ │ │ │ ├── Fortaleza │ │ │ │ ├── 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 │ │ │ │ ├── Port_of_Spain │ │ │ │ ├── Porto_Acre │ │ │ │ ├── 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 │ │ │ │ ├── St_Helena │ │ │ │ └── Stanley │ │ │ ├── Australia │ │ │ │ ├── ACT │ │ │ │ ├── Adelaide │ │ │ │ ├── Brisbane │ │ │ │ ├── Broken_Hill │ │ │ │ ├── Canberra │ │ │ │ ├── Currie │ │ │ │ ├── Darwin │ │ │ │ ├── Eucla │ │ │ │ ├── Hobart │ │ │ │ ├── LHI │ │ │ │ ├── Lindeman │ │ │ │ ├── Lord_Howe │ │ │ │ ├── Melbourne │ │ │ │ ├── NSW │ │ │ │ ├── North │ │ │ │ ├── Perth │ │ │ │ ├── Queensland │ │ │ │ ├── South │ │ │ │ ├── Sydney │ │ │ │ ├── Tasmania │ │ │ │ ├── Victoria │ │ │ │ ├── West │ │ │ │ └── Yancowinna │ │ │ ├── Brazil │ │ │ │ ├── Acre │ │ │ │ ├── DeNoronha │ │ │ │ ├── East │ │ │ │ └── West │ │ │ ├── CET │ │ │ ├── CST6CDT │ │ │ ├── Canada │ │ │ │ ├── Atlantic │ │ │ │ ├── Central │ │ │ │ ├── East-Saskatchewan │ │ │ │ ├── Eastern │ │ │ │ ├── Mountain │ │ │ │ ├── Newfoundland │ │ │ │ ├── Pacific │ │ │ │ ├── Saskatchewan │ │ │ │ └── Yukon │ │ │ ├── Chile │ │ │ │ ├── Continental │ │ │ │ └── EasterIsland │ │ │ ├── Cuba │ │ │ ├── EET │ │ │ ├── EST │ │ │ ├── EST5EDT │ │ │ ├── Egypt │ │ │ ├── Eire │ │ │ ├── Etc │ │ │ │ ├── GMT │ │ │ │ ├── GMT+0 │ │ │ │ ├── GMT+1 │ │ │ │ ├── GMT+10 │ │ │ │ ├── GMT+11 │ │ │ │ ├── GMT+12 │ │ │ │ ├── GMT+2 │ │ │ │ ├── GMT+3 │ │ │ │ ├── GMT+4 │ │ │ │ ├── GMT+5 │ │ │ │ ├── GMT+6 │ │ │ │ ├── GMT+7 │ │ │ │ ├── GMT+8 │ │ │ │ ├── GMT+9 │ │ │ │ ├── GMT-0 │ │ │ │ ├── GMT-1 │ │ │ │ ├── GMT-10 │ │ │ │ ├── GMT-11 │ │ │ │ ├── GMT-12 │ │ │ │ ├── GMT-13 │ │ │ │ ├── GMT-14 │ │ │ │ ├── GMT-2 │ │ │ │ ├── GMT-3 │ │ │ │ ├── GMT-4 │ │ │ │ ├── GMT-5 │ │ │ │ ├── GMT-6 │ │ │ │ ├── GMT-7 │ │ │ │ ├── GMT-8 │ │ │ │ ├── GMT-9 │ │ │ │ ├── GMT0 │ │ │ │ ├── Greenwich │ │ │ │ ├── UCT │ │ │ │ ├── UTC │ │ │ │ ├── Universal │ │ │ │ └── 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 │ │ │ ├── HST │ │ │ ├── Hongkong │ │ │ ├── Iceland │ │ │ ├── Indian │ │ │ │ ├── Antananarivo │ │ │ │ ├── Chagos │ │ │ │ ├── Christmas │ │ │ │ ├── Cocos │ │ │ │ ├── Comoro │ │ │ │ ├── Kerguelen │ │ │ │ ├── Mahe │ │ │ │ ├── Maldives │ │ │ │ ├── Mauritius │ │ │ │ ├── Mayotte │ │ │ │ └── Reunion │ │ │ ├── Iran │ │ │ ├── Israel │ │ │ ├── Jamaica │ │ │ ├── Japan │ │ │ ├── Kwajalein │ │ │ ├── Libya │ │ │ ├── MET │ │ │ ├── MST │ │ │ ├── MST7MDT │ │ │ ├── Mexico │ │ │ │ ├── BajaNorte │ │ │ │ ├── BajaSur │ │ │ │ └── General │ │ │ ├── NZ │ │ │ ├── NZ-CHAT │ │ │ ├── Navajo │ │ │ ├── PRC │ │ │ ├── PST8PDT │ │ │ ├── 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 │ │ │ ├── ROC │ │ │ ├── ROK │ │ │ ├── Singapore │ │ │ ├── SystemV │ │ │ │ ├── AST4 │ │ │ │ ├── AST4ADT │ │ │ │ ├── CST6 │ │ │ │ ├── CST6CDT │ │ │ │ ├── EST5 │ │ │ │ ├── EST5EDT │ │ │ │ ├── HST10 │ │ │ │ ├── MST7 │ │ │ │ ├── MST7MDT │ │ │ │ ├── PST8 │ │ │ │ ├── PST8PDT │ │ │ │ ├── YST9 │ │ │ │ └── YST9YDT │ │ │ ├── Turkey │ │ │ ├── UCT │ │ │ ├── US │ │ │ │ ├── Alaska │ │ │ │ ├── Aleutian │ │ │ │ ├── Arizona │ │ │ │ ├── Central │ │ │ │ ├── East-Indiana │ │ │ │ ├── Eastern │ │ │ │ ├── Hawaii │ │ │ │ ├── Indiana-Starke │ │ │ │ ├── Michigan │ │ │ │ ├── Mountain │ │ │ │ ├── Pacific │ │ │ │ ├── Pacific-New │ │ │ │ └── Samoa │ │ │ ├── UTC │ │ │ ├── Universal │ │ │ ├── W-SU │ │ │ ├── WET │ │ │ └── Zulu │ │ └── word.tcl │ ├── tcl8 │ │ ├── 8.4 │ │ │ ├── http-2.7.12.tm │ │ │ ├── platform-1.0.12.tm │ │ │ └── platform │ │ │ │ └── shell-1.1.4.tm │ │ └── 8.5 │ │ │ ├── msgcat-1.5.2.tm │ │ │ └── tcltest-2.3.5.tm │ ├── tcl85.lib │ ├── tclConfig.sh │ ├── tclstub85.lib │ ├── tix8.4.3 │ │ ├── Balloon.tcl │ │ ├── BtnBox.tcl │ │ ├── CObjView.tcl │ │ ├── ChkList.tcl │ │ ├── ComboBox.tcl │ │ ├── Compat.tcl │ │ ├── Console.tcl │ │ ├── Control.tcl │ │ ├── DefSchm.tcl │ │ ├── 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 │ │ ├── Grid.tcl │ │ ├── HList.tcl │ │ ├── HListDD.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 │ │ ├── PopMenu.tcl │ │ ├── Primitiv.tcl │ │ ├── ResizeH.tcl │ │ ├── SGrid.tcl │ │ ├── SHList.tcl │ │ ├── SListBox.tcl │ │ ├── STList.tcl │ │ ├── SText.tcl │ │ ├── SWidget.tcl │ │ ├── SWindow.tcl │ │ ├── Select.tcl │ │ ├── Shell.tcl │ │ ├── SimpDlg.tcl │ │ ├── StackWin.tcl │ │ ├── StatBar.tcl │ │ ├── StdBBox.tcl │ │ ├── StdShell.tcl │ │ ├── TList.tcl │ │ ├── Tix.tcl │ │ ├── Tree.tcl │ │ ├── Utils.tcl │ │ ├── VResize.tcl │ │ ├── VStack.tcl │ │ ├── VTree.tcl │ │ ├── Variable.tcl │ │ ├── WInfo.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 │ │ │ ├── minus.gif │ │ │ ├── minus.xbm │ │ │ ├── minus.xpm │ │ │ ├── minusarm.gif │ │ │ ├── minusarm.xbm │ │ │ ├── minusarm.xpm │ │ │ ├── mktransgif.tcl │ │ │ ├── network.xbm │ │ │ ├── no_entry.gif │ │ │ ├── no_entry.xpm │ │ │ ├── openfile.xbm │ │ │ ├── openfold.gif │ │ │ ├── openfold.xbm │ │ │ ├── openfold.xpm │ │ │ ├── plus.gif │ │ │ ├── plus.xbm │ │ │ ├── plus.xpm │ │ │ ├── plusarm.gif │ │ │ ├── plusarm.xbm │ │ │ ├── plusarm.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 │ │ ├── demos │ │ │ ├── MkChoose.tcl │ │ │ ├── MkDirLis.tcl │ │ │ ├── MkSample.tcl │ │ │ ├── MkScroll.tcl │ │ │ ├── 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 │ │ │ │ ├── netw.xbm │ │ │ │ ├── netw.xpm │ │ │ │ ├── network.xbm │ │ │ │ ├── network.xpm │ │ │ │ ├── optmenu.xpm │ │ │ │ ├── rightj.xbm │ │ │ │ ├── select.xpm │ │ │ │ ├── tix.gif │ │ │ │ └── underlin.xbm │ │ │ ├── samples │ │ │ │ ├── AllSampl.tcl │ │ │ │ ├── ArrowBtn.tcl │ │ │ │ ├── Balloon.tcl │ │ │ │ ├── BtnBox.tcl │ │ │ │ ├── CObjView.tcl │ │ │ │ ├── ChkList.tcl │ │ │ │ ├── CmpImg.tcl │ │ │ │ ├── CmpImg1.tcl │ │ │ │ ├── CmpImg2.tcl │ │ │ │ ├── CmpImg3.tcl │ │ │ │ ├── CmpImg4.tcl │ │ │ │ ├── ComboBox.tcl │ │ │ │ ├── Control.tcl │ │ │ │ ├── DirDlg.tcl │ │ │ │ ├── DirList.tcl │ │ │ │ ├── DirTree.tcl │ │ │ │ ├── DragDrop.tcl │ │ │ │ ├── DynTree.tcl │ │ │ │ ├── EFileDlg.tcl │ │ │ │ ├── EditGrid.tcl │ │ │ │ ├── FileDlg.tcl │ │ │ │ ├── FileEnt.tcl │ │ │ │ ├── HList1.tcl │ │ │ │ ├── LabEntry.tcl │ │ │ │ ├── LabFrame.tcl │ │ │ │ ├── ListNBK.tcl │ │ │ │ ├── Meter.tcl │ │ │ │ ├── NoteBook.tcl │ │ │ │ ├── OptMenu.tcl │ │ │ │ ├── PanedWin.tcl │ │ │ │ ├── PopMenu.tcl │ │ │ │ ├── SGrid0.tcl │ │ │ │ ├── SGrid1.tcl │ │ │ │ ├── SHList.tcl │ │ │ │ ├── SHList2.tcl │ │ │ │ ├── SListBox.tcl │ │ │ │ ├── STList1.tcl │ │ │ │ ├── STList2.tcl │ │ │ │ ├── STList3.tcl │ │ │ │ ├── SText.tcl │ │ │ │ ├── SWindow.tcl │ │ │ │ ├── Sample.tcl │ │ │ │ ├── Select.tcl │ │ │ │ ├── StdBBox.tcl │ │ │ │ ├── Tree.tcl │ │ │ │ ├── Xpm.tcl │ │ │ │ └── Xpm1.tcl │ │ │ ├── tclIndex │ │ │ ├── tixwidgets.tcl │ │ │ └── widget │ │ ├── fs.tcl │ │ ├── pkgIndex.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 │ │ │ ├── SGIGray.cs │ │ │ ├── SGIGray.csc │ │ │ ├── TK.cs │ │ │ ├── TK.csc │ │ │ ├── TK.fs │ │ │ ├── TK.fsc │ │ │ ├── TixGray.cs │ │ │ ├── TixGray.csc │ │ │ ├── TkWin.cs │ │ │ ├── TkWin.csc │ │ │ ├── TkWin.fs │ │ │ ├── TkWin.fsc │ │ │ ├── WmDefault.cs │ │ │ ├── WmDefault.csc │ │ │ ├── WmDefault.fs │ │ │ ├── WmDefault.fsc │ │ │ ├── WmDefault.py │ │ │ ├── WmDefault.tcl │ │ │ ├── WmDefault.txt │ │ │ ├── pkgIndex.tcl │ │ │ └── tixmkpref │ │ ├── tix84.dll │ │ └── tix84.lib │ ├── tk8.5 │ │ ├── bgerror.tcl │ │ ├── button.tcl │ │ ├── choosedir.tcl │ │ ├── clrpick.tcl │ │ ├── comdlg.tcl │ │ ├── console.tcl │ │ ├── demos │ │ │ ├── README │ │ │ ├── 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 │ │ │ ├── label.tcl │ │ │ ├── labelframe.tcl │ │ │ ├── license.terms │ │ │ ├── mclist.tcl │ │ │ ├── menu.tcl │ │ │ ├── menubu.tcl │ │ │ ├── msgbox.tcl │ │ │ ├── nl.msg │ │ │ ├── paned1.tcl │ │ │ ├── paned2.tcl │ │ │ ├── pendulum.tcl │ │ │ ├── plot.tcl │ │ │ ├── puzzle.tcl │ │ │ ├── radio.tcl │ │ │ ├── rmt │ │ │ ├── rolodex │ │ │ ├── ruler.tcl │ │ │ ├── sayings.tcl │ │ │ ├── search.tcl │ │ │ ├── spin.tcl │ │ │ ├── square │ │ │ ├── states.tcl │ │ │ ├── style.tcl │ │ │ ├── tclIndex │ │ │ ├── tcolor │ │ │ ├── text.tcl │ │ │ ├── textpeer.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 │ │ │ ├── README │ │ │ ├── logo.eps │ │ │ ├── logo100.gif │ │ │ ├── logo64.gif │ │ │ ├── logoLarge.gif │ │ │ ├── logoMed.gif │ │ │ ├── pwrdLogo.eps │ │ │ ├── pwrdLogo100.gif │ │ │ ├── pwrdLogo150.gif │ │ │ ├── pwrdLogo175.gif │ │ │ ├── pwrdLogo200.gif │ │ │ ├── pwrdLogo75.gif │ │ │ └── tai-ku.gif │ │ ├── license.terms │ │ ├── listbox.tcl │ │ ├── menu.tcl │ │ ├── mkpsenc.tcl │ │ ├── msgbox.tcl │ │ ├── msgs │ │ │ ├── cs.msg │ │ │ ├── da.msg │ │ │ ├── de.msg │ │ │ ├── el.msg │ │ │ ├── en.msg │ │ │ ├── en_gb.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 │ │ ├── tk.tcl │ │ ├── tkfbox.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 │ └── w9xpopen.exe ├── python36 └── unix │ └── lib │ ├── certifi │ ├── __init__.py │ ├── __main__.py │ ├── cacert.pem │ └── core.py │ ├── chardet │ ├── __init__.py │ ├── big5freq.py │ ├── big5prober.py │ ├── chardistribution.py │ ├── charsetgroupprober.py │ ├── charsetprober.py │ ├── cli │ │ ├── __init__.py │ │ └── chardetect.py │ ├── codingstatemachine.py │ ├── compat.py │ ├── cp949prober.py │ ├── enums.py │ ├── escprober.py │ ├── escsm.py │ ├── eucjpprober.py │ ├── euckrfreq.py │ ├── euckrprober.py │ ├── euctwfreq.py │ ├── euctwprober.py │ ├── gb2312freq.py │ ├── gb2312prober.py │ ├── hebrewprober.py │ ├── jisfreq.py │ ├── jpcntx.py │ ├── langbulgarianmodel.py │ ├── langgreekmodel.py │ ├── langhebrewmodel.py │ ├── langhungarianmodel.py │ ├── langrussianmodel.py │ ├── langthaimodel.py │ ├── langturkishmodel.py │ ├── latin1prober.py │ ├── mbcharsetprober.py │ ├── mbcsgroupprober.py │ ├── mbcssm.py │ ├── metadata │ │ ├── __init__.py │ │ └── languages.py │ ├── sbcharsetprober.py │ ├── sbcsgroupprober.py │ ├── sjisprober.py │ ├── universaldetector.py │ ├── utf8prober.py │ └── version.py │ ├── idna │ ├── __init__.py │ ├── codec.py │ ├── compat.py │ ├── core.py │ ├── idnadata.py │ ├── intranges.py │ ├── package_data.py │ └── uts46data.py │ ├── oss2 │ ├── __init__.py │ ├── api.py │ ├── auth.py │ ├── compat.py │ ├── defaults.py │ ├── exceptions.py │ ├── http.py │ ├── iterators.py │ ├── models.py │ ├── resumable.py │ ├── task_queue.py │ ├── utils.py │ └── xml_utils.py │ ├── pyftpdlib │ ├── __init__.py │ ├── __main__.py │ ├── _compat.py │ ├── authorizers.py │ ├── filesystems.py │ ├── handlers.py │ ├── ioloop.py │ ├── log.py │ ├── prefork.py │ ├── servers.py │ └── test │ │ ├── README │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── keycert.pem │ │ ├── runner.py │ │ ├── test_authorizers.py │ │ ├── test_filesystems.py │ │ ├── test_functional.py │ │ ├── test_functional_ssl.py │ │ ├── test_ioloop.py │ │ ├── test_misc.py │ │ └── test_servers.py │ ├── requests │ ├── __init__.py │ ├── __version__.py │ ├── _internal_utils.py │ ├── adapters.py │ ├── api.py │ ├── auth.py │ ├── certs.py │ ├── compat.py │ ├── cookies.py │ ├── exceptions.py │ ├── help.py │ ├── hooks.py │ ├── models.py │ ├── packages.py │ ├── sessions.py │ ├── status_codes.py │ ├── structures.py │ └── utils.py │ └── urllib3 │ ├── __init__.py │ ├── _collections.py │ ├── _version.py │ ├── connection.py │ ├── connectionpool.py │ ├── contrib │ ├── __init__.py │ ├── _appengine_environ.py │ ├── _securetransport │ │ ├── __init__.py │ │ ├── bindings.py │ │ └── low_level.py │ ├── appengine.py │ ├── ntlmpool.py │ ├── pyopenssl.py │ ├── securetransport.py │ └── socks.py │ ├── exceptions.py │ ├── fields.py │ ├── filepost.py │ ├── packages │ ├── __init__.py │ ├── backports │ │ ├── __init__.py │ │ └── makefile.py │ ├── six.py │ └── ssl_match_hostname │ │ ├── __init__.py │ │ └── _implementation.py │ ├── poolmanager.py │ ├── request.py │ ├── response.py │ └── util │ ├── __init__.py │ ├── connection.py │ ├── proxy.py │ ├── queue.py │ ├── request.py │ ├── response.py │ ├── retry.py │ ├── ssl_.py │ ├── ssltransport.py │ ├── timeout.py │ ├── url.py │ └── wait.py ├── setup.py ├── start.bat ├── start.command ├── start.sh ├── start.vbs └── test ├── .DS_Store ├── .coverage ├── .coverage.jh-air.local.20849.739242 ├── dir.py ├── file.py ├── login.py ├── run_test.sh ├── test.cfg └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/LICENSE -------------------------------------------------------------------------------- /README-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/README-CN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/config.json -------------------------------------------------------------------------------- /docs/oss_remote_attachment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/docs/oss_remote_attachment.md -------------------------------------------------------------------------------- /launcher/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /launcher/autorun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/autorun.py -------------------------------------------------------------------------------- /launcher/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/config.py -------------------------------------------------------------------------------- /launcher/create_shortcut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/create_shortcut.js -------------------------------------------------------------------------------- /launcher/gtk_tray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/gtk_tray.py -------------------------------------------------------------------------------- /launcher/launcher_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/launcher_log.py -------------------------------------------------------------------------------- /launcher/mac_tray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/mac_tray.py -------------------------------------------------------------------------------- /launcher/module_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/module_init.py -------------------------------------------------------------------------------- /launcher/non_tray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/non_tray.py -------------------------------------------------------------------------------- /launcher/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/start.py -------------------------------------------------------------------------------- /launcher/systray/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/systray/__init__.py -------------------------------------------------------------------------------- /launcher/systray/traybar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/systray/traybar.py -------------------------------------------------------------------------------- /launcher/systray/win32_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/systray/win32_adapter.py -------------------------------------------------------------------------------- /launcher/web_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/web_control.py -------------------------------------------------------------------------------- /launcher/web_ui/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/web_ui/about.html -------------------------------------------------------------------------------- /launcher/web_ui/about_en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/web_ui/about_en.html -------------------------------------------------------------------------------- /launcher/web_ui/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/web_ui/config.html -------------------------------------------------------------------------------- /launcher/web_ui/config_en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/web_ui/config_en.html -------------------------------------------------------------------------------- /launcher/web_ui/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/web_ui/css/bootstrap.css -------------------------------------------------------------------------------- /launcher/web_ui/css/flat-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/web_ui/css/flat-ui.css -------------------------------------------------------------------------------- /launcher/web_ui/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/web_ui/css/style.css -------------------------------------------------------------------------------- /launcher/web_ui/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/web_ui/favicon.ico -------------------------------------------------------------------------------- /launcher/web_ui/favicon_MAC.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/web_ui/favicon_MAC.ico -------------------------------------------------------------------------------- /launcher/web_ui/img/fixed-width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/web_ui/img/fixed-width.png -------------------------------------------------------------------------------- /launcher/web_ui/img/full-width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/web_ui/img/full-width.png -------------------------------------------------------------------------------- /launcher/web_ui/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/web_ui/img/logo.png -------------------------------------------------------------------------------- /launcher/web_ui/img/switch-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/web_ui/img/switch-mask.png -------------------------------------------------------------------------------- /launcher/web_ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/web_ui/index.html -------------------------------------------------------------------------------- /launcher/web_ui/index_en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/web_ui/index_en.html -------------------------------------------------------------------------------- /launcher/web_ui/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/web_ui/js/bootstrap.min.js -------------------------------------------------------------------------------- /launcher/web_ui/js/flat-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/web_ui/js/flat-ui.min.js -------------------------------------------------------------------------------- /launcher/web_ui/js/jquery-1.11.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/web_ui/js/jquery-1.11.2.min.js -------------------------------------------------------------------------------- /launcher/web_ui/js/jquery.timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/web_ui/js/jquery.timer.js -------------------------------------------------------------------------------- /launcher/web_ui/js/ladda.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/web_ui/js/ladda.min.js -------------------------------------------------------------------------------- /launcher/web_ui/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/web_ui/js/site.js -------------------------------------------------------------------------------- /launcher/web_ui/js/spin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/web_ui/js/spin.min.js -------------------------------------------------------------------------------- /launcher/web_ui/logging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/web_ui/logging.html -------------------------------------------------------------------------------- /launcher/web_ui/logging_en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/web_ui/logging_en.html -------------------------------------------------------------------------------- /launcher/web_ui/menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/web_ui/menu.json -------------------------------------------------------------------------------- /launcher/web_ui/menu_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/web_ui/menu_en.json -------------------------------------------------------------------------------- /launcher/web_ui/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/web_ui/status.html -------------------------------------------------------------------------------- /launcher/web_ui/status_en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/web_ui/status_en.html -------------------------------------------------------------------------------- /launcher/win32_proxy_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/win32_proxy_manager.py -------------------------------------------------------------------------------- /launcher/win_tray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/win_tray.py -------------------------------------------------------------------------------- /launcher/xlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/launcher/xlog.py -------------------------------------------------------------------------------- /ossftp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/ossftp/__init__.py -------------------------------------------------------------------------------- /ossftp/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/ossftp/defaults.py -------------------------------------------------------------------------------- /ossftp/ftpserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/ossftp/ftpserver.py -------------------------------------------------------------------------------- /ossftp/oss_authorizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/ossftp/oss_authorizers.py -------------------------------------------------------------------------------- /ossftp/oss_file_operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/ossftp/oss_file_operation.py -------------------------------------------------------------------------------- /ossftp/oss_fs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/ossftp/oss_fs.py -------------------------------------------------------------------------------- /ossftp/oss_fs_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/ossftp/oss_fs_impl.py -------------------------------------------------------------------------------- /python27/unix/lib/oss2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/oss2/__init__.py -------------------------------------------------------------------------------- /python27/unix/lib/oss2/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/oss2/api.py -------------------------------------------------------------------------------- /python27/unix/lib/oss2/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/oss2/auth.py -------------------------------------------------------------------------------- /python27/unix/lib/oss2/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/oss2/compat.py -------------------------------------------------------------------------------- /python27/unix/lib/oss2/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/oss2/defaults.py -------------------------------------------------------------------------------- /python27/unix/lib/oss2/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/oss2/exceptions.py -------------------------------------------------------------------------------- /python27/unix/lib/oss2/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/oss2/http.py -------------------------------------------------------------------------------- /python27/unix/lib/oss2/iterators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/oss2/iterators.py -------------------------------------------------------------------------------- /python27/unix/lib/oss2/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/oss2/models.py -------------------------------------------------------------------------------- /python27/unix/lib/oss2/resumable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/oss2/resumable.py -------------------------------------------------------------------------------- /python27/unix/lib/oss2/task_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/oss2/task_queue.py -------------------------------------------------------------------------------- /python27/unix/lib/oss2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/oss2/utils.py -------------------------------------------------------------------------------- /python27/unix/lib/oss2/xml_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/oss2/xml_utils.py -------------------------------------------------------------------------------- /python27/unix/lib/pyftpdlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/pyftpdlib/__init__.py -------------------------------------------------------------------------------- /python27/unix/lib/pyftpdlib/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/pyftpdlib/__main__.py -------------------------------------------------------------------------------- /python27/unix/lib/pyftpdlib/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/pyftpdlib/_compat.py -------------------------------------------------------------------------------- /python27/unix/lib/pyftpdlib/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/pyftpdlib/handlers.py -------------------------------------------------------------------------------- /python27/unix/lib/pyftpdlib/ioloop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/pyftpdlib/ioloop.py -------------------------------------------------------------------------------- /python27/unix/lib/pyftpdlib/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/pyftpdlib/log.py -------------------------------------------------------------------------------- /python27/unix/lib/pyftpdlib/servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/pyftpdlib/servers.py -------------------------------------------------------------------------------- /python27/unix/lib/pyftpdlib/splice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/pyftpdlib/splice.py -------------------------------------------------------------------------------- /python27/unix/lib/pyftpdlib/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/pyftpdlib/test/README -------------------------------------------------------------------------------- /python27/unix/lib/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/requests/__init__.py -------------------------------------------------------------------------------- /python27/unix/lib/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/requests/adapters.py -------------------------------------------------------------------------------- /python27/unix/lib/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/requests/api.py -------------------------------------------------------------------------------- /python27/unix/lib/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/requests/auth.py -------------------------------------------------------------------------------- /python27/unix/lib/requests/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/requests/cacert.pem -------------------------------------------------------------------------------- /python27/unix/lib/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/requests/certs.py -------------------------------------------------------------------------------- /python27/unix/lib/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/requests/compat.py -------------------------------------------------------------------------------- /python27/unix/lib/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/requests/cookies.py -------------------------------------------------------------------------------- /python27/unix/lib/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/requests/hooks.py -------------------------------------------------------------------------------- /python27/unix/lib/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/requests/models.py -------------------------------------------------------------------------------- /python27/unix/lib/requests/packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python27/unix/lib/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/requests/sessions.py -------------------------------------------------------------------------------- /python27/unix/lib/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/requests/utils.py -------------------------------------------------------------------------------- /python27/unix/lib/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/urllib3/__init__.py -------------------------------------------------------------------------------- /python27/unix/lib/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/urllib3/connection.py -------------------------------------------------------------------------------- /python27/unix/lib/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python27/unix/lib/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/urllib3/exceptions.py -------------------------------------------------------------------------------- /python27/unix/lib/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/urllib3/fields.py -------------------------------------------------------------------------------- /python27/unix/lib/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/urllib3/filepost.py -------------------------------------------------------------------------------- /python27/unix/lib/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/urllib3/request.py -------------------------------------------------------------------------------- /python27/unix/lib/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/urllib3/response.py -------------------------------------------------------------------------------- /python27/unix/lib/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/urllib3/util/retry.py -------------------------------------------------------------------------------- /python27/unix/lib/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /python27/unix/lib/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/unix/lib/urllib3/util/url.py -------------------------------------------------------------------------------- /python27/win32/DLLs/_bsddb.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/DLLs/_bsddb.pyd -------------------------------------------------------------------------------- /python27/win32/DLLs/_ctypes.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/DLLs/_ctypes.pyd -------------------------------------------------------------------------------- /python27/win32/DLLs/_ctypes_test.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/DLLs/_ctypes_test.pyd -------------------------------------------------------------------------------- /python27/win32/DLLs/_elementtree.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/DLLs/_elementtree.pyd -------------------------------------------------------------------------------- /python27/win32/DLLs/_hashlib.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/DLLs/_hashlib.pyd -------------------------------------------------------------------------------- /python27/win32/DLLs/_msi.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/DLLs/_msi.pyd -------------------------------------------------------------------------------- /python27/win32/DLLs/_socket.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/DLLs/_socket.pyd -------------------------------------------------------------------------------- /python27/win32/DLLs/_sqlite3.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/DLLs/_sqlite3.pyd -------------------------------------------------------------------------------- /python27/win32/DLLs/_ssl.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/DLLs/_ssl.pyd -------------------------------------------------------------------------------- /python27/win32/DLLs/_testcapi.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/DLLs/_testcapi.pyd -------------------------------------------------------------------------------- /python27/win32/DLLs/_tkinter.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/DLLs/_tkinter.pyd -------------------------------------------------------------------------------- /python27/win32/DLLs/bz2.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/DLLs/bz2.pyd -------------------------------------------------------------------------------- /python27/win32/DLLs/py.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/DLLs/py.ico -------------------------------------------------------------------------------- /python27/win32/DLLs/pyc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/DLLs/pyc.ico -------------------------------------------------------------------------------- /python27/win32/DLLs/pyexpat.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/DLLs/pyexpat.pyd -------------------------------------------------------------------------------- /python27/win32/DLLs/select.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/DLLs/select.pyd -------------------------------------------------------------------------------- /python27/win32/DLLs/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/DLLs/sqlite3.dll -------------------------------------------------------------------------------- /python27/win32/DLLs/tcl85.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/DLLs/tcl85.dll -------------------------------------------------------------------------------- /python27/win32/DLLs/tclpip85.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/DLLs/tclpip85.dll -------------------------------------------------------------------------------- /python27/win32/DLLs/tk85.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/DLLs/tk85.dll -------------------------------------------------------------------------------- /python27/win32/DLLs/unicodedata.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/DLLs/unicodedata.pyd -------------------------------------------------------------------------------- /python27/win32/DLLs/winsound.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/DLLs/winsound.pyd -------------------------------------------------------------------------------- /python27/win32/Doc/python279.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Doc/python279.chm -------------------------------------------------------------------------------- /python27/win32/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/LICENSE.txt -------------------------------------------------------------------------------- /python27/win32/Lib/BaseHTTPServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/BaseHTTPServer.py -------------------------------------------------------------------------------- /python27/win32/Lib/Bastion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/Bastion.py -------------------------------------------------------------------------------- /python27/win32/Lib/CGIHTTPServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/CGIHTTPServer.py -------------------------------------------------------------------------------- /python27/win32/Lib/ConfigParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/ConfigParser.py -------------------------------------------------------------------------------- /python27/win32/Lib/Cookie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/Cookie.py -------------------------------------------------------------------------------- /python27/win32/Lib/DocXMLRPCServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/DocXMLRPCServer.py -------------------------------------------------------------------------------- /python27/win32/Lib/HTMLParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/HTMLParser.py -------------------------------------------------------------------------------- /python27/win32/Lib/MimeWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/MimeWriter.py -------------------------------------------------------------------------------- /python27/win32/Lib/Queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/Queue.py -------------------------------------------------------------------------------- /python27/win32/Lib/SimpleHTTPServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/SimpleHTTPServer.py -------------------------------------------------------------------------------- /python27/win32/Lib/SocketServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/SocketServer.py -------------------------------------------------------------------------------- /python27/win32/Lib/StringIO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/StringIO.py -------------------------------------------------------------------------------- /python27/win32/Lib/UserDict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/UserDict.py -------------------------------------------------------------------------------- /python27/win32/Lib/UserList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/UserList.py -------------------------------------------------------------------------------- /python27/win32/Lib/UserString.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/UserString.py -------------------------------------------------------------------------------- /python27/win32/Lib/_LWPCookieJar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/_LWPCookieJar.py -------------------------------------------------------------------------------- /python27/win32/Lib/_MozillaCookieJar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/_MozillaCookieJar.py -------------------------------------------------------------------------------- /python27/win32/Lib/__future__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/__future__.py -------------------------------------------------------------------------------- /python27/win32/Lib/__phello__.foo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/__phello__.foo.py -------------------------------------------------------------------------------- /python27/win32/Lib/_abcoll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/_abcoll.py -------------------------------------------------------------------------------- /python27/win32/Lib/_osx_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/_osx_support.py -------------------------------------------------------------------------------- /python27/win32/Lib/_pyio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/_pyio.py -------------------------------------------------------------------------------- /python27/win32/Lib/_strptime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/_strptime.py -------------------------------------------------------------------------------- /python27/win32/Lib/_threading_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/_threading_local.py -------------------------------------------------------------------------------- /python27/win32/Lib/_weakrefset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/_weakrefset.py -------------------------------------------------------------------------------- /python27/win32/Lib/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/abc.py -------------------------------------------------------------------------------- /python27/win32/Lib/aifc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/aifc.py -------------------------------------------------------------------------------- /python27/win32/Lib/antigravity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/antigravity.py -------------------------------------------------------------------------------- /python27/win32/Lib/anydbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/anydbm.py -------------------------------------------------------------------------------- /python27/win32/Lib/argparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/argparse.py -------------------------------------------------------------------------------- /python27/win32/Lib/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/ast.py -------------------------------------------------------------------------------- /python27/win32/Lib/asynchat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/asynchat.py -------------------------------------------------------------------------------- /python27/win32/Lib/asyncore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/asyncore.py -------------------------------------------------------------------------------- /python27/win32/Lib/atexit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/atexit.py -------------------------------------------------------------------------------- /python27/win32/Lib/audiodev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/audiodev.py -------------------------------------------------------------------------------- /python27/win32/Lib/base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/base64.py -------------------------------------------------------------------------------- /python27/win32/Lib/bdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/bdb.py -------------------------------------------------------------------------------- /python27/win32/Lib/binhex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/binhex.py -------------------------------------------------------------------------------- /python27/win32/Lib/bisect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/bisect.py -------------------------------------------------------------------------------- /python27/win32/Lib/bsddb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/bsddb/__init__.py -------------------------------------------------------------------------------- /python27/win32/Lib/bsddb/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/bsddb/db.py -------------------------------------------------------------------------------- /python27/win32/Lib/bsddb/dbobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/bsddb/dbobj.py -------------------------------------------------------------------------------- /python27/win32/Lib/bsddb/dbrecio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/bsddb/dbrecio.py -------------------------------------------------------------------------------- /python27/win32/Lib/bsddb/dbshelve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/bsddb/dbshelve.py -------------------------------------------------------------------------------- /python27/win32/Lib/bsddb/dbtables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/bsddb/dbtables.py -------------------------------------------------------------------------------- /python27/win32/Lib/bsddb/dbutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/bsddb/dbutils.py -------------------------------------------------------------------------------- /python27/win32/Lib/bsddb/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python27/win32/Lib/cProfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/cProfile.py -------------------------------------------------------------------------------- /python27/win32/Lib/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/calendar.py -------------------------------------------------------------------------------- /python27/win32/Lib/cgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/cgi.py -------------------------------------------------------------------------------- /python27/win32/Lib/cgitb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/cgitb.py -------------------------------------------------------------------------------- /python27/win32/Lib/chunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/chunk.py -------------------------------------------------------------------------------- /python27/win32/Lib/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/cmd.py -------------------------------------------------------------------------------- /python27/win32/Lib/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/code.py -------------------------------------------------------------------------------- /python27/win32/Lib/codecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/codecs.py -------------------------------------------------------------------------------- /python27/win32/Lib/codeop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/codeop.py -------------------------------------------------------------------------------- /python27/win32/Lib/collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/collections.py -------------------------------------------------------------------------------- /python27/win32/Lib/colorsys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/colorsys.py -------------------------------------------------------------------------------- /python27/win32/Lib/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/commands.py -------------------------------------------------------------------------------- /python27/win32/Lib/compileall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/compileall.py -------------------------------------------------------------------------------- /python27/win32/Lib/compiler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/compiler/__init__.py -------------------------------------------------------------------------------- /python27/win32/Lib/compiler/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/compiler/ast.py -------------------------------------------------------------------------------- /python27/win32/Lib/compiler/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/compiler/consts.py -------------------------------------------------------------------------------- /python27/win32/Lib/compiler/future.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/compiler/future.py -------------------------------------------------------------------------------- /python27/win32/Lib/compiler/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/compiler/misc.py -------------------------------------------------------------------------------- /python27/win32/Lib/compiler/pyassem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/compiler/pyassem.py -------------------------------------------------------------------------------- /python27/win32/Lib/compiler/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/compiler/symbols.py -------------------------------------------------------------------------------- /python27/win32/Lib/compiler/syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/compiler/syntax.py -------------------------------------------------------------------------------- /python27/win32/Lib/compiler/visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/compiler/visitor.py -------------------------------------------------------------------------------- /python27/win32/Lib/contextlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/contextlib.py -------------------------------------------------------------------------------- /python27/win32/Lib/cookielib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/cookielib.py -------------------------------------------------------------------------------- /python27/win32/Lib/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/copy.py -------------------------------------------------------------------------------- /python27/win32/Lib/copy_reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/copy_reg.py -------------------------------------------------------------------------------- /python27/win32/Lib/csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/csv.py -------------------------------------------------------------------------------- /python27/win32/Lib/ctypes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/ctypes/__init__.py -------------------------------------------------------------------------------- /python27/win32/Lib/ctypes/_endian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/ctypes/_endian.py -------------------------------------------------------------------------------- /python27/win32/Lib/ctypes/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/ctypes/util.py -------------------------------------------------------------------------------- /python27/win32/Lib/ctypes/wintypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/ctypes/wintypes.py -------------------------------------------------------------------------------- /python27/win32/Lib/curses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/curses/__init__.py -------------------------------------------------------------------------------- /python27/win32/Lib/curses/ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/curses/ascii.py -------------------------------------------------------------------------------- /python27/win32/Lib/curses/has_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/curses/has_key.py -------------------------------------------------------------------------------- /python27/win32/Lib/curses/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/curses/panel.py -------------------------------------------------------------------------------- /python27/win32/Lib/curses/textpad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/curses/textpad.py -------------------------------------------------------------------------------- /python27/win32/Lib/curses/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/curses/wrapper.py -------------------------------------------------------------------------------- /python27/win32/Lib/dbhash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/dbhash.py -------------------------------------------------------------------------------- /python27/win32/Lib/decimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/decimal.py -------------------------------------------------------------------------------- /python27/win32/Lib/difflib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/difflib.py -------------------------------------------------------------------------------- /python27/win32/Lib/dircache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/dircache.py -------------------------------------------------------------------------------- /python27/win32/Lib/dis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/dis.py -------------------------------------------------------------------------------- /python27/win32/Lib/distutils/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/distutils/cmd.py -------------------------------------------------------------------------------- /python27/win32/Lib/distutils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/distutils/config.py -------------------------------------------------------------------------------- /python27/win32/Lib/distutils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/distutils/core.py -------------------------------------------------------------------------------- /python27/win32/Lib/distutils/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/distutils/debug.py -------------------------------------------------------------------------------- /python27/win32/Lib/distutils/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/distutils/dist.py -------------------------------------------------------------------------------- /python27/win32/Lib/distutils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/distutils/errors.py -------------------------------------------------------------------------------- /python27/win32/Lib/distutils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/distutils/log.py -------------------------------------------------------------------------------- /python27/win32/Lib/distutils/spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/distutils/spawn.py -------------------------------------------------------------------------------- /python27/win32/Lib/distutils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/distutils/util.py -------------------------------------------------------------------------------- /python27/win32/Lib/distutils/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/distutils/version.py -------------------------------------------------------------------------------- /python27/win32/Lib/doctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/doctest.py -------------------------------------------------------------------------------- /python27/win32/Lib/dumbdbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/dumbdbm.py -------------------------------------------------------------------------------- /python27/win32/Lib/dummy_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/dummy_thread.py -------------------------------------------------------------------------------- /python27/win32/Lib/dummy_threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/dummy_threading.py -------------------------------------------------------------------------------- /python27/win32/Lib/email/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/email/__init__.py -------------------------------------------------------------------------------- /python27/win32/Lib/email/_parseaddr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/email/_parseaddr.py -------------------------------------------------------------------------------- /python27/win32/Lib/email/base64mime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/email/base64mime.py -------------------------------------------------------------------------------- /python27/win32/Lib/email/charset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/email/charset.py -------------------------------------------------------------------------------- /python27/win32/Lib/email/encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/email/encoders.py -------------------------------------------------------------------------------- /python27/win32/Lib/email/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/email/errors.py -------------------------------------------------------------------------------- /python27/win32/Lib/email/feedparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/email/feedparser.py -------------------------------------------------------------------------------- /python27/win32/Lib/email/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/email/generator.py -------------------------------------------------------------------------------- /python27/win32/Lib/email/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/email/header.py -------------------------------------------------------------------------------- /python27/win32/Lib/email/iterators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/email/iterators.py -------------------------------------------------------------------------------- /python27/win32/Lib/email/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/email/message.py -------------------------------------------------------------------------------- /python27/win32/Lib/email/mime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python27/win32/Lib/email/mime/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/email/mime/audio.py -------------------------------------------------------------------------------- /python27/win32/Lib/email/mime/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/email/mime/base.py -------------------------------------------------------------------------------- /python27/win32/Lib/email/mime/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/email/mime/image.py -------------------------------------------------------------------------------- /python27/win32/Lib/email/mime/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/email/mime/text.py -------------------------------------------------------------------------------- /python27/win32/Lib/email/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/email/parser.py -------------------------------------------------------------------------------- /python27/win32/Lib/email/quoprimime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/email/quoprimime.py -------------------------------------------------------------------------------- /python27/win32/Lib/email/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python27/win32/Lib/email/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/email/utils.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/aliases.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/ascii.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/big5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/big5.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/charmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/charmap.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp037.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp037.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp1006.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp1006.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp1026.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp1026.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp1140.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp1140.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp1250.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp1250.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp1251.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp1251.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp1252.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp1252.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp1253.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp1253.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp1254.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp1254.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp1255.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp1255.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp1256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp1256.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp1257.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp1257.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp1258.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp1258.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp424.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp424.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp437.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp437.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp500.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp500.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp720.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp720.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp737.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp737.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp775.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp775.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp850.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp850.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp852.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp852.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp855.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp855.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp856.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp856.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp857.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp857.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp858.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp858.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp860.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp860.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp861.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp861.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp862.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp862.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp863.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp863.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/cp864.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/cp864.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/gbk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/gbk.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/hz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/hz.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/idna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/idna.py -------------------------------------------------------------------------------- /python27/win32/Lib/encodings/mbcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/encodings/mbcs.py -------------------------------------------------------------------------------- /python27/win32/Lib/filecmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/filecmp.py -------------------------------------------------------------------------------- /python27/win32/Lib/fileinput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/fileinput.py -------------------------------------------------------------------------------- /python27/win32/Lib/fnmatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/fnmatch.py -------------------------------------------------------------------------------- /python27/win32/Lib/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/formatter.py -------------------------------------------------------------------------------- /python27/win32/Lib/fpformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/fpformat.py -------------------------------------------------------------------------------- /python27/win32/Lib/fractions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/fractions.py -------------------------------------------------------------------------------- /python27/win32/Lib/ftplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/ftplib.py -------------------------------------------------------------------------------- /python27/win32/Lib/functools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/functools.py -------------------------------------------------------------------------------- /python27/win32/Lib/genericpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/genericpath.py -------------------------------------------------------------------------------- /python27/win32/Lib/getopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/getopt.py -------------------------------------------------------------------------------- /python27/win32/Lib/getpass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/getpass.py -------------------------------------------------------------------------------- /python27/win32/Lib/gettext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/gettext.py -------------------------------------------------------------------------------- /python27/win32/Lib/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/glob.py -------------------------------------------------------------------------------- /python27/win32/Lib/gzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/gzip.py -------------------------------------------------------------------------------- /python27/win32/Lib/hashlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/hashlib.py -------------------------------------------------------------------------------- /python27/win32/Lib/heapq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/heapq.py -------------------------------------------------------------------------------- /python27/win32/Lib/hmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/hmac.py -------------------------------------------------------------------------------- /python27/win32/Lib/hotshot/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/hotshot/log.py -------------------------------------------------------------------------------- /python27/win32/Lib/hotshot/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/hotshot/stats.py -------------------------------------------------------------------------------- /python27/win32/Lib/hotshot/stones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/hotshot/stones.py -------------------------------------------------------------------------------- /python27/win32/Lib/htmlentitydefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/htmlentitydefs.py -------------------------------------------------------------------------------- /python27/win32/Lib/htmllib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/htmllib.py -------------------------------------------------------------------------------- /python27/win32/Lib/httplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/httplib.py -------------------------------------------------------------------------------- /python27/win32/Lib/idlelib/NEWS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/idlelib/NEWS.txt -------------------------------------------------------------------------------- /python27/win32/Lib/idlelib/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/idlelib/TODO.txt -------------------------------------------------------------------------------- /python27/win32/Lib/idlelib/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this a package. 2 | -------------------------------------------------------------------------------- /python27/win32/Lib/idlelib/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/idlelib/help.txt -------------------------------------------------------------------------------- /python27/win32/Lib/idlelib/idle.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/idlelib/idle.bat -------------------------------------------------------------------------------- /python27/win32/Lib/idlelib/idle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/idlelib/idle.py -------------------------------------------------------------------------------- /python27/win32/Lib/idlelib/idle.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/idlelib/idle.pyw -------------------------------------------------------------------------------- /python27/win32/Lib/idlelib/idlever.py: -------------------------------------------------------------------------------- 1 | IDLE_VERSION = "2.7.9" 2 | -------------------------------------------------------------------------------- /python27/win32/Lib/idlelib/rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/idlelib/rpc.py -------------------------------------------------------------------------------- /python27/win32/Lib/idlelib/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/idlelib/run.py -------------------------------------------------------------------------------- /python27/win32/Lib/ihooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/ihooks.py -------------------------------------------------------------------------------- /python27/win32/Lib/imaplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/imaplib.py -------------------------------------------------------------------------------- /python27/win32/Lib/imghdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/imghdr.py -------------------------------------------------------------------------------- /python27/win32/Lib/imputil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/imputil.py -------------------------------------------------------------------------------- /python27/win32/Lib/inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/inspect.py -------------------------------------------------------------------------------- /python27/win32/Lib/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/io.py -------------------------------------------------------------------------------- /python27/win32/Lib/json/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/json/__init__.py -------------------------------------------------------------------------------- /python27/win32/Lib/json/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/json/decoder.py -------------------------------------------------------------------------------- /python27/win32/Lib/json/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/json/encoder.py -------------------------------------------------------------------------------- /python27/win32/Lib/json/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/json/scanner.py -------------------------------------------------------------------------------- /python27/win32/Lib/json/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/json/tool.py -------------------------------------------------------------------------------- /python27/win32/Lib/keyword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/keyword.py -------------------------------------------------------------------------------- /python27/win32/Lib/lib-tk/Canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/lib-tk/Canvas.py -------------------------------------------------------------------------------- /python27/win32/Lib/lib-tk/Dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/lib-tk/Dialog.py -------------------------------------------------------------------------------- /python27/win32/Lib/lib-tk/FixTk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/lib-tk/FixTk.py -------------------------------------------------------------------------------- /python27/win32/Lib/lib-tk/Tix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/lib-tk/Tix.py -------------------------------------------------------------------------------- /python27/win32/Lib/lib-tk/Tkdnd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/lib-tk/Tkdnd.py -------------------------------------------------------------------------------- /python27/win32/Lib/lib-tk/Tkinter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/lib-tk/Tkinter.py -------------------------------------------------------------------------------- /python27/win32/Lib/lib-tk/test/test_tkinter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python27/win32/Lib/lib-tk/test/test_ttk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python27/win32/Lib/lib-tk/tkFont.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/lib-tk/tkFont.py -------------------------------------------------------------------------------- /python27/win32/Lib/lib-tk/ttk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/lib-tk/ttk.py -------------------------------------------------------------------------------- /python27/win32/Lib/lib-tk/turtle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/lib-tk/turtle.py -------------------------------------------------------------------------------- /python27/win32/Lib/lib2to3/__init__.py: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /python27/win32/Lib/lib2to3/fixes/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /python27/win32/Lib/lib2to3/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/lib2to3/main.py -------------------------------------------------------------------------------- /python27/win32/Lib/lib2to3/pygram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/lib2to3/pygram.py -------------------------------------------------------------------------------- /python27/win32/Lib/lib2to3/pytree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/lib2to3/pytree.py -------------------------------------------------------------------------------- /python27/win32/Lib/lib2to3/tests/data/bom.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | print "BOM BOOM!" 3 | -------------------------------------------------------------------------------- /python27/win32/Lib/lib2to3/tests/data/false_encoding.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | print '#coding=0' 3 | -------------------------------------------------------------------------------- /python27/win32/Lib/lib2to3/tests/data/fixers/myfixes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python27/win32/Lib/lib2to3/tests/data/fixers/parrot_example.py: -------------------------------------------------------------------------------- 1 | def parrot(): 2 | pass 3 | -------------------------------------------------------------------------------- /python27/win32/Lib/linecache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/linecache.py -------------------------------------------------------------------------------- /python27/win32/Lib/locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/locale.py -------------------------------------------------------------------------------- /python27/win32/Lib/logging/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/logging/config.py -------------------------------------------------------------------------------- /python27/win32/Lib/macpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/macpath.py -------------------------------------------------------------------------------- /python27/win32/Lib/macurl2path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/macurl2path.py -------------------------------------------------------------------------------- /python27/win32/Lib/mailbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/mailbox.py -------------------------------------------------------------------------------- /python27/win32/Lib/mailcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/mailcap.py -------------------------------------------------------------------------------- /python27/win32/Lib/markupbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/markupbase.py -------------------------------------------------------------------------------- /python27/win32/Lib/md5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/md5.py -------------------------------------------------------------------------------- /python27/win32/Lib/mhlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/mhlib.py -------------------------------------------------------------------------------- /python27/win32/Lib/mimetools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/mimetools.py -------------------------------------------------------------------------------- /python27/win32/Lib/mimetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/mimetypes.py -------------------------------------------------------------------------------- /python27/win32/Lib/mimify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/mimify.py -------------------------------------------------------------------------------- /python27/win32/Lib/modulefinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/modulefinder.py -------------------------------------------------------------------------------- /python27/win32/Lib/msilib/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/msilib/schema.py -------------------------------------------------------------------------------- /python27/win32/Lib/msilib/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/msilib/text.py -------------------------------------------------------------------------------- /python27/win32/Lib/multifile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/multifile.py -------------------------------------------------------------------------------- /python27/win32/Lib/mutex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/mutex.py -------------------------------------------------------------------------------- /python27/win32/Lib/netrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/netrc.py -------------------------------------------------------------------------------- /python27/win32/Lib/new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/new.py -------------------------------------------------------------------------------- /python27/win32/Lib/nntplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/nntplib.py -------------------------------------------------------------------------------- /python27/win32/Lib/ntpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/ntpath.py -------------------------------------------------------------------------------- /python27/win32/Lib/nturl2path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/nturl2path.py -------------------------------------------------------------------------------- /python27/win32/Lib/numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/numbers.py -------------------------------------------------------------------------------- /python27/win32/Lib/opcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/opcode.py -------------------------------------------------------------------------------- /python27/win32/Lib/optparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/optparse.py -------------------------------------------------------------------------------- /python27/win32/Lib/os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/os.py -------------------------------------------------------------------------------- /python27/win32/Lib/os2emxpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/os2emxpath.py -------------------------------------------------------------------------------- /python27/win32/Lib/pdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/pdb.py -------------------------------------------------------------------------------- /python27/win32/Lib/pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/pickle.py -------------------------------------------------------------------------------- /python27/win32/Lib/pickletools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/pickletools.py -------------------------------------------------------------------------------- /python27/win32/Lib/pipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/pipes.py -------------------------------------------------------------------------------- /python27/win32/Lib/pkgutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/pkgutil.py -------------------------------------------------------------------------------- /python27/win32/Lib/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/platform.py -------------------------------------------------------------------------------- /python27/win32/Lib/plistlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/plistlib.py -------------------------------------------------------------------------------- /python27/win32/Lib/popen2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/popen2.py -------------------------------------------------------------------------------- /python27/win32/Lib/poplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/poplib.py -------------------------------------------------------------------------------- /python27/win32/Lib/posixfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/posixfile.py -------------------------------------------------------------------------------- /python27/win32/Lib/posixpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/posixpath.py -------------------------------------------------------------------------------- /python27/win32/Lib/pprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/pprint.py -------------------------------------------------------------------------------- /python27/win32/Lib/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/profile.py -------------------------------------------------------------------------------- /python27/win32/Lib/pstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/pstats.py -------------------------------------------------------------------------------- /python27/win32/Lib/pty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/pty.py -------------------------------------------------------------------------------- /python27/win32/Lib/py_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/py_compile.py -------------------------------------------------------------------------------- /python27/win32/Lib/pyclbr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/pyclbr.py -------------------------------------------------------------------------------- /python27/win32/Lib/pydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/pydoc.py -------------------------------------------------------------------------------- /python27/win32/Lib/pydoc_data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python27/win32/Lib/quopri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/quopri.py -------------------------------------------------------------------------------- /python27/win32/Lib/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/random.py -------------------------------------------------------------------------------- /python27/win32/Lib/re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/re.py -------------------------------------------------------------------------------- /python27/win32/Lib/repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/repr.py -------------------------------------------------------------------------------- /python27/win32/Lib/rexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/rexec.py -------------------------------------------------------------------------------- /python27/win32/Lib/rfc822.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/rfc822.py -------------------------------------------------------------------------------- /python27/win32/Lib/rlcompleter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/rlcompleter.py -------------------------------------------------------------------------------- /python27/win32/Lib/robotparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/robotparser.py -------------------------------------------------------------------------------- /python27/win32/Lib/runpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/runpy.py -------------------------------------------------------------------------------- /python27/win32/Lib/sched.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/sched.py -------------------------------------------------------------------------------- /python27/win32/Lib/sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/sets.py -------------------------------------------------------------------------------- /python27/win32/Lib/sgmllib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/sgmllib.py -------------------------------------------------------------------------------- /python27/win32/Lib/sha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/sha.py -------------------------------------------------------------------------------- /python27/win32/Lib/shelve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/shelve.py -------------------------------------------------------------------------------- /python27/win32/Lib/shlex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/shlex.py -------------------------------------------------------------------------------- /python27/win32/Lib/shutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/shutil.py -------------------------------------------------------------------------------- /python27/win32/Lib/site-packages/idna-2.0.dist-info/pbr.json: -------------------------------------------------------------------------------- 1 | {"is_release": true, "git_version": "bb6e94c"} -------------------------------------------------------------------------------- /python27/win32/Lib/site-packages/idna-2.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | idna 2 | -------------------------------------------------------------------------------- /python27/win32/Lib/site-packages/idna/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import * 2 | -------------------------------------------------------------------------------- /python27/win32/Lib/site-packages/ipaddress-1.0.15.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ipaddress 2 | -------------------------------------------------------------------------------- /python27/win32/Lib/site-packages/pip-1.5.6.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /python27/win32/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python27/win32/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python27/win32/Lib/site-packages/pip/_vendor/requests/packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python27/win32/Lib/site-packages/pyOpenSSL-0.15.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | OpenSSL 2 | -------------------------------------------------------------------------------- /python27/win32/Lib/site-packages/pyasn1-0.1.9.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pyasn1 2 | -------------------------------------------------------------------------------- /python27/win32/Lib/site-packages/pyasn1-0.1.9.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /python27/win32/Lib/site-packages/requests-2.8.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /python27/win32/Lib/site-packages/requests/packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python27/win32/Lib/site-packages/setuptools-7.0.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /python27/win32/Lib/site-packages/setuptools/tests/script-with-bom.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | result = 'passed' 4 | -------------------------------------------------------------------------------- /python27/win32/Lib/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '7.0' 2 | -------------------------------------------------------------------------------- /python27/win32/Lib/site-packages/six-1.10.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | six 2 | -------------------------------------------------------------------------------- /python27/win32/Lib/site-packages/urllib3-1.13.1.dist-info/pbr.json: -------------------------------------------------------------------------------- 1 | {"is_release": false, "git_version": "12d04b7"} -------------------------------------------------------------------------------- /python27/win32/Lib/site-packages/urllib3-1.13.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | urllib3 2 | -------------------------------------------------------------------------------- /python27/win32/Lib/site-packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python27/win32/Lib/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/site.py -------------------------------------------------------------------------------- /python27/win32/Lib/smtpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/smtpd.py -------------------------------------------------------------------------------- /python27/win32/Lib/smtplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/smtplib.py -------------------------------------------------------------------------------- /python27/win32/Lib/sndhdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/sndhdr.py -------------------------------------------------------------------------------- /python27/win32/Lib/socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/socket.py -------------------------------------------------------------------------------- /python27/win32/Lib/sqlite3/dbapi2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/sqlite3/dbapi2.py -------------------------------------------------------------------------------- /python27/win32/Lib/sqlite3/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/sqlite3/dump.py -------------------------------------------------------------------------------- /python27/win32/Lib/sqlite3/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python27/win32/Lib/sre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/sre.py -------------------------------------------------------------------------------- /python27/win32/Lib/sre_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/sre_compile.py -------------------------------------------------------------------------------- /python27/win32/Lib/sre_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/sre_constants.py -------------------------------------------------------------------------------- /python27/win32/Lib/sre_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/sre_parse.py -------------------------------------------------------------------------------- /python27/win32/Lib/ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/ssl.py -------------------------------------------------------------------------------- /python27/win32/Lib/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/stat.py -------------------------------------------------------------------------------- /python27/win32/Lib/statvfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/statvfs.py -------------------------------------------------------------------------------- /python27/win32/Lib/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/string.py -------------------------------------------------------------------------------- /python27/win32/Lib/stringold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/stringold.py -------------------------------------------------------------------------------- /python27/win32/Lib/stringprep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/stringprep.py -------------------------------------------------------------------------------- /python27/win32/Lib/struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/struct.py -------------------------------------------------------------------------------- /python27/win32/Lib/subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/subprocess.py -------------------------------------------------------------------------------- /python27/win32/Lib/sunau.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/sunau.py -------------------------------------------------------------------------------- /python27/win32/Lib/sunaudio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/sunaudio.py -------------------------------------------------------------------------------- /python27/win32/Lib/symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/symbol.py -------------------------------------------------------------------------------- /python27/win32/Lib/symtable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/symtable.py -------------------------------------------------------------------------------- /python27/win32/Lib/sysconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/sysconfig.py -------------------------------------------------------------------------------- /python27/win32/Lib/tabnanny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/tabnanny.py -------------------------------------------------------------------------------- /python27/win32/Lib/tarfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/tarfile.py -------------------------------------------------------------------------------- /python27/win32/Lib/telnetlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/telnetlib.py -------------------------------------------------------------------------------- /python27/win32/Lib/tempfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/tempfile.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/185test.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/185test.db -------------------------------------------------------------------------------- /python27/win32/Lib/test/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /python27/win32/Lib/test/audiotest.au: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/audiotest.au -------------------------------------------------------------------------------- /python27/win32/Lib/test/autotest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/autotest.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/bad_coding.py: -------------------------------------------------------------------------------- 1 | # -*- coding: uft-8 -*- 2 | -------------------------------------------------------------------------------- /python27/win32/Lib/test/bad_coding2.py: -------------------------------------------------------------------------------- 1 | #coding: utf8 2 | print '我' 3 | -------------------------------------------------------------------------------- /python27/win32/Lib/test/badcert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/badcert.pem -------------------------------------------------------------------------------- /python27/win32/Lib/test/badkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/badkey.pem -------------------------------------------------------------------------------- /python27/win32/Lib/test/badsyntax_nocaret.py: -------------------------------------------------------------------------------- 1 | def f(x): 2 | [x for x in x] = x 3 | -------------------------------------------------------------------------------- /python27/win32/Lib/test/cfgparser.1: -------------------------------------------------------------------------------- 1 | [Foo Bar] 2 | foo=newbar 3 | -------------------------------------------------------------------------------- /python27/win32/Lib/test/cjkencodings/big5hkscs-utf8.txt: -------------------------------------------------------------------------------- 1 | 𠄌Ě鵮罓洆 2 | ÊÊ̄ê êê̄ 3 | -------------------------------------------------------------------------------- /python27/win32/Lib/test/dh512.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/dh512.pem -------------------------------------------------------------------------------- /python27/win32/Lib/test/empty.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/empty.vbs -------------------------------------------------------------------------------- /python27/win32/Lib/test/fork_wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/fork_wait.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/greyrgb.uue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/greyrgb.uue -------------------------------------------------------------------------------- /python27/win32/Lib/test/ieee754.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/ieee754.txt -------------------------------------------------------------------------------- /python27/win32/Lib/test/keycert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/keycert.pem -------------------------------------------------------------------------------- /python27/win32/Lib/test/keycert2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/keycert2.pem -------------------------------------------------------------------------------- /python27/win32/Lib/test/keycert3.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/keycert3.pem -------------------------------------------------------------------------------- /python27/win32/Lib/test/keycert4.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/keycert4.pem -------------------------------------------------------------------------------- /python27/win32/Lib/test/leakers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python27/win32/Lib/test/nokia.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/nokia.pem -------------------------------------------------------------------------------- /python27/win32/Lib/test/nullcert.pem: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python27/win32/Lib/test/profilee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/profilee.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/pycacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/pycacert.pem -------------------------------------------------------------------------------- /python27/win32/Lib/test/pydoc_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/pydoc_mod.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/pystone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/pystone.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/randv3.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/randv3.pck -------------------------------------------------------------------------------- /python27/win32/Lib/test/re_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/re_tests.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/regrtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/regrtest.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/relimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/relimport.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/reperf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/reperf.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/seq_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/seq_tests.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/sha256.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/sha256.pem -------------------------------------------------------------------------------- /python27/win32/Lib/test/sortperf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/sortperf.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/ssl_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/ssl_cert.pem -------------------------------------------------------------------------------- /python27/win32/Lib/test/ssl_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/ssl_key.pem -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_abc.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_aifc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_aifc.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_al.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_al.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_ast.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_bool.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_bz2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_bz2.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_call.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_capi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_capi.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_cd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_cd.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_cgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_cgi.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_cl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_cl.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_cmd.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_code.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_copy.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_csv.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_dbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_dbm.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_dict.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_dis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_dis.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_dl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_dl.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_eof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_eof.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_file.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_gc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_gc.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_gdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_gdb.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_gdbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_gdbm.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_gl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_gl.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_glob.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_grp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_grp.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_gzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_gzip.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_hash.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_hmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_hmac.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_idle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_idle.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_imp.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_int.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_io.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_iter.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_json.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_list.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_long.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_long.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_math.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_md5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_md5.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_mmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_mmap.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_new.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_nis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_nis.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_os.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_pdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_pdb.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_pkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_pkg.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_poll.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_pow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_pow.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_pty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_pty.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_pwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_pwd.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_re.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_repr.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_sax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_sax.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_set.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_sets.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_sha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_sha.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_site.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_sort.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_spwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_spwd.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_ssl.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_stat.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_str.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_sys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_sys.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_tcl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_tcl.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_time.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_tk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_tk.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_ucn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_ucn.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_uu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_uu.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_uuid.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_wave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_wave.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_with.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_with.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/test_zlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/test_zlib.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/testall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/testall.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/testcodec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/testcodec.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/testimg.uue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/testimg.uue -------------------------------------------------------------------------------- /python27/win32/Lib/test/testimgr.uue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/testimgr.uue -------------------------------------------------------------------------------- /python27/win32/Lib/test/testrgb.uue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/testrgb.uue -------------------------------------------------------------------------------- /python27/win32/Lib/test/testtar.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/testtar.tar -------------------------------------------------------------------------------- /python27/win32/Lib/test/xmltests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/xmltests.py -------------------------------------------------------------------------------- /python27/win32/Lib/test/zipdir.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/test/zipdir.zip -------------------------------------------------------------------------------- /python27/win32/Lib/textwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/textwrap.py -------------------------------------------------------------------------------- /python27/win32/Lib/this.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/this.py -------------------------------------------------------------------------------- /python27/win32/Lib/threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/threading.py -------------------------------------------------------------------------------- /python27/win32/Lib/timeit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/timeit.py -------------------------------------------------------------------------------- /python27/win32/Lib/toaiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/toaiff.py -------------------------------------------------------------------------------- /python27/win32/Lib/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/token.py -------------------------------------------------------------------------------- /python27/win32/Lib/tokenize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/tokenize.py -------------------------------------------------------------------------------- /python27/win32/Lib/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/trace.py -------------------------------------------------------------------------------- /python27/win32/Lib/traceback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/traceback.py -------------------------------------------------------------------------------- /python27/win32/Lib/tty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/tty.py -------------------------------------------------------------------------------- /python27/win32/Lib/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/types.py -------------------------------------------------------------------------------- /python27/win32/Lib/unittest/case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/unittest/case.py -------------------------------------------------------------------------------- /python27/win32/Lib/unittest/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/unittest/main.py -------------------------------------------------------------------------------- /python27/win32/Lib/unittest/suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/unittest/suite.py -------------------------------------------------------------------------------- /python27/win32/Lib/unittest/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/unittest/util.py -------------------------------------------------------------------------------- /python27/win32/Lib/urllib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/urllib.py -------------------------------------------------------------------------------- /python27/win32/Lib/urllib2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/urllib2.py -------------------------------------------------------------------------------- /python27/win32/Lib/urlparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/urlparse.py -------------------------------------------------------------------------------- /python27/win32/Lib/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/user.py -------------------------------------------------------------------------------- /python27/win32/Lib/uu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/uu.py -------------------------------------------------------------------------------- /python27/win32/Lib/uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/uuid.py -------------------------------------------------------------------------------- /python27/win32/Lib/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/warnings.py -------------------------------------------------------------------------------- /python27/win32/Lib/wave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/wave.py -------------------------------------------------------------------------------- /python27/win32/Lib/weakref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/weakref.py -------------------------------------------------------------------------------- /python27/win32/Lib/webbrowser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/webbrowser.py -------------------------------------------------------------------------------- /python27/win32/Lib/whichdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/whichdb.py -------------------------------------------------------------------------------- /python27/win32/Lib/wsgiref/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/wsgiref/util.py -------------------------------------------------------------------------------- /python27/win32/Lib/xdrlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/xdrlib.py -------------------------------------------------------------------------------- /python27/win32/Lib/xml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/xml/__init__.py -------------------------------------------------------------------------------- /python27/win32/Lib/xml/dom/domreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/xml/dom/domreg.py -------------------------------------------------------------------------------- /python27/win32/Lib/xmllib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/xmllib.py -------------------------------------------------------------------------------- /python27/win32/Lib/xmlrpclib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/xmlrpclib.py -------------------------------------------------------------------------------- /python27/win32/Lib/zipfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Lib/zipfile.py -------------------------------------------------------------------------------- /python27/win32/NEWS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/NEWS.txt -------------------------------------------------------------------------------- /python27/win32/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/README.txt -------------------------------------------------------------------------------- /python27/win32/Scripts/ftpbench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Scripts/ftpbench -------------------------------------------------------------------------------- /python27/win32/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Scripts/pip.exe -------------------------------------------------------------------------------- /python27/win32/Scripts/pip2.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Scripts/pip2.7.exe -------------------------------------------------------------------------------- /python27/win32/Scripts/pip2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Scripts/pip2.exe -------------------------------------------------------------------------------- /python27/win32/Tools/Scripts/2to3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Tools/Scripts/2to3.py -------------------------------------------------------------------------------- /python27/win32/Tools/Scripts/crlf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Tools/Scripts/crlf.py -------------------------------------------------------------------------------- /python27/win32/Tools/Scripts/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Tools/Scripts/diff.py -------------------------------------------------------------------------------- /python27/win32/Tools/Scripts/h2py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Tools/Scripts/h2py.py -------------------------------------------------------------------------------- /python27/win32/Tools/Scripts/lfcr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Tools/Scripts/lfcr.py -------------------------------------------------------------------------------- /python27/win32/Tools/Scripts/lll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Tools/Scripts/lll.py -------------------------------------------------------------------------------- /python27/win32/Tools/Scripts/suff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Tools/Scripts/suff.py -------------------------------------------------------------------------------- /python27/win32/Tools/Scripts/xxci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Tools/Scripts/xxci.py -------------------------------------------------------------------------------- /python27/win32/Tools/i18n/msgfmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Tools/i18n/msgfmt.py -------------------------------------------------------------------------------- /python27/win32/Tools/pynche/Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/Tools/pynche/Main.py -------------------------------------------------------------------------------- /python27/win32/Tools/pynche/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /python27/win32/include/Python-ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/Python-ast.h -------------------------------------------------------------------------------- /python27/win32/include/Python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/Python.h -------------------------------------------------------------------------------- /python27/win32/include/abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/abstract.h -------------------------------------------------------------------------------- /python27/win32/include/asdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/asdl.h -------------------------------------------------------------------------------- /python27/win32/include/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/ast.h -------------------------------------------------------------------------------- /python27/win32/include/bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/bitset.h -------------------------------------------------------------------------------- /python27/win32/include/boolobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/boolobject.h -------------------------------------------------------------------------------- /python27/win32/include/bytesobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/bytesobject.h -------------------------------------------------------------------------------- /python27/win32/include/cStringIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/cStringIO.h -------------------------------------------------------------------------------- /python27/win32/include/cellobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/cellobject.h -------------------------------------------------------------------------------- /python27/win32/include/ceval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/ceval.h -------------------------------------------------------------------------------- /python27/win32/include/classobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/classobject.h -------------------------------------------------------------------------------- /python27/win32/include/cobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/cobject.h -------------------------------------------------------------------------------- /python27/win32/include/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/code.h -------------------------------------------------------------------------------- /python27/win32/include/codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/codecs.h -------------------------------------------------------------------------------- /python27/win32/include/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/compile.h -------------------------------------------------------------------------------- /python27/win32/include/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/datetime.h -------------------------------------------------------------------------------- /python27/win32/include/descrobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/descrobject.h -------------------------------------------------------------------------------- /python27/win32/include/dictobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/dictobject.h -------------------------------------------------------------------------------- /python27/win32/include/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/dtoa.h -------------------------------------------------------------------------------- /python27/win32/include/enumobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/enumobject.h -------------------------------------------------------------------------------- /python27/win32/include/errcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/errcode.h -------------------------------------------------------------------------------- /python27/win32/include/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/eval.h -------------------------------------------------------------------------------- /python27/win32/include/fileobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/fileobject.h -------------------------------------------------------------------------------- /python27/win32/include/floatobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/floatobject.h -------------------------------------------------------------------------------- /python27/win32/include/frameobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/frameobject.h -------------------------------------------------------------------------------- /python27/win32/include/funcobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/funcobject.h -------------------------------------------------------------------------------- /python27/win32/include/genobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/genobject.h -------------------------------------------------------------------------------- /python27/win32/include/graminit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/graminit.h -------------------------------------------------------------------------------- /python27/win32/include/grammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/grammar.h -------------------------------------------------------------------------------- /python27/win32/include/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/import.h -------------------------------------------------------------------------------- /python27/win32/include/intobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/intobject.h -------------------------------------------------------------------------------- /python27/win32/include/intrcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/intrcheck.h -------------------------------------------------------------------------------- /python27/win32/include/iterobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/iterobject.h -------------------------------------------------------------------------------- /python27/win32/include/listobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/listobject.h -------------------------------------------------------------------------------- /python27/win32/include/longintrepr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/longintrepr.h -------------------------------------------------------------------------------- /python27/win32/include/longobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/longobject.h -------------------------------------------------------------------------------- /python27/win32/include/marshal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/marshal.h -------------------------------------------------------------------------------- /python27/win32/include/metagrammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/metagrammar.h -------------------------------------------------------------------------------- /python27/win32/include/modsupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/modsupport.h -------------------------------------------------------------------------------- /python27/win32/include/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/node.h -------------------------------------------------------------------------------- /python27/win32/include/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/object.h -------------------------------------------------------------------------------- /python27/win32/include/objimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/objimpl.h -------------------------------------------------------------------------------- /python27/win32/include/opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/opcode.h -------------------------------------------------------------------------------- /python27/win32/include/osdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/osdefs.h -------------------------------------------------------------------------------- /python27/win32/include/parsetok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/parsetok.h -------------------------------------------------------------------------------- /python27/win32/include/patchlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/patchlevel.h -------------------------------------------------------------------------------- /python27/win32/include/pgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/pgen.h -------------------------------------------------------------------------------- /python27/win32/include/pgenheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/pgenheaders.h -------------------------------------------------------------------------------- /python27/win32/include/py_curses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/py_curses.h -------------------------------------------------------------------------------- /python27/win32/include/pyarena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/pyarena.h -------------------------------------------------------------------------------- /python27/win32/include/pycapsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/pycapsule.h -------------------------------------------------------------------------------- /python27/win32/include/pyconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/pyconfig.h -------------------------------------------------------------------------------- /python27/win32/include/pyctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/pyctype.h -------------------------------------------------------------------------------- /python27/win32/include/pydebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/pydebug.h -------------------------------------------------------------------------------- /python27/win32/include/pyerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/pyerrors.h -------------------------------------------------------------------------------- /python27/win32/include/pyexpat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/pyexpat.h -------------------------------------------------------------------------------- /python27/win32/include/pyfpe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/pyfpe.h -------------------------------------------------------------------------------- /python27/win32/include/pygetopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/pygetopt.h -------------------------------------------------------------------------------- /python27/win32/include/pymacconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/pymacconfig.h -------------------------------------------------------------------------------- /python27/win32/include/pymath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/pymath.h -------------------------------------------------------------------------------- /python27/win32/include/pymem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/pymem.h -------------------------------------------------------------------------------- /python27/win32/include/pyport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/pyport.h -------------------------------------------------------------------------------- /python27/win32/include/pystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/pystate.h -------------------------------------------------------------------------------- /python27/win32/include/pystrcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/pystrcmp.h -------------------------------------------------------------------------------- /python27/win32/include/pystrtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/pystrtod.h -------------------------------------------------------------------------------- /python27/win32/include/pythonrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/pythonrun.h -------------------------------------------------------------------------------- /python27/win32/include/pythread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/pythread.h -------------------------------------------------------------------------------- /python27/win32/include/rangeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/rangeobject.h -------------------------------------------------------------------------------- /python27/win32/include/setobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/setobject.h -------------------------------------------------------------------------------- /python27/win32/include/sliceobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/sliceobject.h -------------------------------------------------------------------------------- /python27/win32/include/structseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/structseq.h -------------------------------------------------------------------------------- /python27/win32/include/symtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/symtable.h -------------------------------------------------------------------------------- /python27/win32/include/sysmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/sysmodule.h -------------------------------------------------------------------------------- /python27/win32/include/timefuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/timefuncs.h -------------------------------------------------------------------------------- /python27/win32/include/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/token.h -------------------------------------------------------------------------------- /python27/win32/include/traceback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/traceback.h -------------------------------------------------------------------------------- /python27/win32/include/tupleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/tupleobject.h -------------------------------------------------------------------------------- /python27/win32/include/ucnhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/ucnhash.h -------------------------------------------------------------------------------- /python27/win32/include/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/include/warnings.h -------------------------------------------------------------------------------- /python27/win32/libs/_bsddb.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/libs/_bsddb.lib -------------------------------------------------------------------------------- /python27/win32/libs/_ctypes.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/libs/_ctypes.lib -------------------------------------------------------------------------------- /python27/win32/libs/_ctypes_test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/libs/_ctypes_test.lib -------------------------------------------------------------------------------- /python27/win32/libs/_elementtree.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/libs/_elementtree.lib -------------------------------------------------------------------------------- /python27/win32/libs/_hashlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/libs/_hashlib.lib -------------------------------------------------------------------------------- /python27/win32/libs/_msi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/libs/_msi.lib -------------------------------------------------------------------------------- /python27/win32/libs/_socket.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/libs/_socket.lib -------------------------------------------------------------------------------- /python27/win32/libs/_sqlite3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/libs/_sqlite3.lib -------------------------------------------------------------------------------- /python27/win32/libs/_ssl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/libs/_ssl.lib -------------------------------------------------------------------------------- /python27/win32/libs/_testcapi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/libs/_testcapi.lib -------------------------------------------------------------------------------- /python27/win32/libs/_tkinter.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/libs/_tkinter.lib -------------------------------------------------------------------------------- /python27/win32/libs/bz2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/libs/bz2.lib -------------------------------------------------------------------------------- /python27/win32/libs/libpython27.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/libs/libpython27.a -------------------------------------------------------------------------------- /python27/win32/libs/pyexpat.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/libs/pyexpat.lib -------------------------------------------------------------------------------- /python27/win32/libs/python27.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/libs/python27.lib -------------------------------------------------------------------------------- /python27/win32/libs/select.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/libs/select.lib -------------------------------------------------------------------------------- /python27/win32/libs/unicodedata.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/libs/unicodedata.lib -------------------------------------------------------------------------------- /python27/win32/libs/winsound.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/libs/winsound.lib -------------------------------------------------------------------------------- /python27/win32/msvcr90.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/msvcr90.dll -------------------------------------------------------------------------------- /python27/win32/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/python.exe -------------------------------------------------------------------------------- /python27/win32/python27.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/python27.dll -------------------------------------------------------------------------------- /python27/win32/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/pythonw.exe -------------------------------------------------------------------------------- /python27/win32/tcl/tcl8.5/auto.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tcl8.5/auto.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tcl8.5/clock.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tcl8.5/clock.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tcl8.5/init.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tcl8.5/init.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tcl8.5/parray.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tcl8.5/parray.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tcl8.5/safe.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tcl8.5/safe.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tcl8.5/tclIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tcl8.5/tclIndex -------------------------------------------------------------------------------- /python27/win32/tcl/tcl8.5/tm.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tcl8.5/tm.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tcl8.5/tzdata/CET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tcl8.5/tzdata/CET -------------------------------------------------------------------------------- /python27/win32/tcl/tcl8.5/tzdata/EET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tcl8.5/tzdata/EET -------------------------------------------------------------------------------- /python27/win32/tcl/tcl8.5/tzdata/EST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tcl8.5/tzdata/EST -------------------------------------------------------------------------------- /python27/win32/tcl/tcl8.5/tzdata/GB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tcl8.5/tzdata/GB -------------------------------------------------------------------------------- /python27/win32/tcl/tcl8.5/tzdata/GMT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tcl8.5/tzdata/GMT -------------------------------------------------------------------------------- /python27/win32/tcl/tcl8.5/tzdata/HST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tcl8.5/tzdata/HST -------------------------------------------------------------------------------- /python27/win32/tcl/tcl8.5/tzdata/MET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tcl8.5/tzdata/MET -------------------------------------------------------------------------------- /python27/win32/tcl/tcl8.5/tzdata/MST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tcl8.5/tzdata/MST -------------------------------------------------------------------------------- /python27/win32/tcl/tcl8.5/tzdata/NZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tcl8.5/tzdata/NZ -------------------------------------------------------------------------------- /python27/win32/tcl/tcl8.5/tzdata/PRC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tcl8.5/tzdata/PRC -------------------------------------------------------------------------------- /python27/win32/tcl/tcl8.5/tzdata/ROC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tcl8.5/tzdata/ROC -------------------------------------------------------------------------------- /python27/win32/tcl/tcl8.5/tzdata/ROK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tcl8.5/tzdata/ROK -------------------------------------------------------------------------------- /python27/win32/tcl/tcl8.5/tzdata/UCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tcl8.5/tzdata/UCT -------------------------------------------------------------------------------- /python27/win32/tcl/tcl8.5/tzdata/UTC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tcl8.5/tzdata/UTC -------------------------------------------------------------------------------- /python27/win32/tcl/tcl8.5/tzdata/WET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tcl8.5/tzdata/WET -------------------------------------------------------------------------------- /python27/win32/tcl/tcl8.5/word.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tcl8.5/word.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tcl85.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tcl85.lib -------------------------------------------------------------------------------- /python27/win32/tcl/tclConfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tclConfig.sh -------------------------------------------------------------------------------- /python27/win32/tcl/tclstub85.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tclstub85.lib -------------------------------------------------------------------------------- /python27/win32/tcl/tix8.4.3/Grid.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tix8.4.3/Grid.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tix8.4.3/Init.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tix8.4.3/Init.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tix8.4.3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tix8.4.3/Makefile -------------------------------------------------------------------------------- /python27/win32/tcl/tix8.4.3/Tix.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tix8.4.3/Tix.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tix8.4.3/Tree.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tix8.4.3/Tree.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tix8.4.3/fs.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tix8.4.3/fs.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/bgerror.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/bgerror.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/button.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/button.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/clrpick.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/clrpick.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/comdlg.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/comdlg.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/console.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/console.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/demos/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/demos/hello -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/demos/ixset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/demos/ixset -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/demos/rmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/demos/rmt -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/demos/timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/demos/timer -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/dialog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/dialog.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/entry.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/entry.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/focus.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/focus.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/listbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/listbox.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/menu.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/menu.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/mkpsenc.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/mkpsenc.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/msgbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/msgbox.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/msgs/cs.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/msgs/cs.msg -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/msgs/da.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/msgs/da.msg -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/msgs/de.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/msgs/de.msg -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/msgs/el.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/msgs/el.msg -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/msgs/en.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/msgs/en.msg -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/msgs/eo.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/msgs/eo.msg -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/msgs/es.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/msgs/es.msg -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/msgs/fr.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/msgs/fr.msg -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/msgs/hu.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/msgs/hu.msg -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/msgs/it.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/msgs/it.msg -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/msgs/nl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/msgs/nl.msg -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/msgs/pl.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/msgs/pl.msg -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/msgs/pt.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/msgs/pt.msg -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/msgs/ru.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/msgs/ru.msg -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/msgs/sv.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/msgs/sv.msg -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/optMenu.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/optMenu.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/palette.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/palette.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/safetk.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/safetk.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/scale.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/scale.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/scrlbar.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/scrlbar.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/spinbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/spinbox.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/tclIndex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/tclIndex -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/tearoff.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/tearoff.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/text.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/text.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/tk.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/tk.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/tkfbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/tkfbox.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/ttk/ttk.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/ttk/ttk.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tk8.5/xmfbox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk8.5/xmfbox.tcl -------------------------------------------------------------------------------- /python27/win32/tcl/tk85.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tk85.lib -------------------------------------------------------------------------------- /python27/win32/tcl/tkstub85.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/tcl/tkstub85.lib -------------------------------------------------------------------------------- /python27/win32/w9xpopen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python27/win32/w9xpopen.exe -------------------------------------------------------------------------------- /python36/unix/lib/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2020.12.05" 4 | -------------------------------------------------------------------------------- /python36/unix/lib/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/certifi/cacert.pem -------------------------------------------------------------------------------- /python36/unix/lib/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/certifi/core.py -------------------------------------------------------------------------------- /python36/unix/lib/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /python36/unix/lib/chardet/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/chardet/compat.py -------------------------------------------------------------------------------- /python36/unix/lib/chardet/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/chardet/enums.py -------------------------------------------------------------------------------- /python36/unix/lib/chardet/escsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/chardet/escsm.py -------------------------------------------------------------------------------- /python36/unix/lib/chardet/jisfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/chardet/jisfreq.py -------------------------------------------------------------------------------- /python36/unix/lib/chardet/jpcntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/chardet/jpcntx.py -------------------------------------------------------------------------------- /python36/unix/lib/chardet/mbcssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/chardet/mbcssm.py -------------------------------------------------------------------------------- /python36/unix/lib/chardet/metadata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python36/unix/lib/chardet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/chardet/version.py -------------------------------------------------------------------------------- /python36/unix/lib/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/idna/__init__.py -------------------------------------------------------------------------------- /python36/unix/lib/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/idna/codec.py -------------------------------------------------------------------------------- /python36/unix/lib/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/idna/compat.py -------------------------------------------------------------------------------- /python36/unix/lib/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/idna/core.py -------------------------------------------------------------------------------- /python36/unix/lib/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/idna/idnadata.py -------------------------------------------------------------------------------- /python36/unix/lib/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/idna/intranges.py -------------------------------------------------------------------------------- /python36/unix/lib/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.10' 2 | 3 | -------------------------------------------------------------------------------- /python36/unix/lib/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/idna/uts46data.py -------------------------------------------------------------------------------- /python36/unix/lib/oss2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/oss2/__init__.py -------------------------------------------------------------------------------- /python36/unix/lib/oss2/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/oss2/api.py -------------------------------------------------------------------------------- /python36/unix/lib/oss2/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/oss2/auth.py -------------------------------------------------------------------------------- /python36/unix/lib/oss2/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/oss2/compat.py -------------------------------------------------------------------------------- /python36/unix/lib/oss2/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/oss2/defaults.py -------------------------------------------------------------------------------- /python36/unix/lib/oss2/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/oss2/exceptions.py -------------------------------------------------------------------------------- /python36/unix/lib/oss2/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/oss2/http.py -------------------------------------------------------------------------------- /python36/unix/lib/oss2/iterators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/oss2/iterators.py -------------------------------------------------------------------------------- /python36/unix/lib/oss2/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/oss2/models.py -------------------------------------------------------------------------------- /python36/unix/lib/oss2/resumable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/oss2/resumable.py -------------------------------------------------------------------------------- /python36/unix/lib/oss2/task_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/oss2/task_queue.py -------------------------------------------------------------------------------- /python36/unix/lib/oss2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/oss2/utils.py -------------------------------------------------------------------------------- /python36/unix/lib/oss2/xml_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/oss2/xml_utils.py -------------------------------------------------------------------------------- /python36/unix/lib/pyftpdlib/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/pyftpdlib/log.py -------------------------------------------------------------------------------- /python36/unix/lib/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/requests/api.py -------------------------------------------------------------------------------- /python36/unix/lib/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/requests/auth.py -------------------------------------------------------------------------------- /python36/unix/lib/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/requests/certs.py -------------------------------------------------------------------------------- /python36/unix/lib/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/requests/compat.py -------------------------------------------------------------------------------- /python36/unix/lib/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/requests/help.py -------------------------------------------------------------------------------- /python36/unix/lib/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/requests/hooks.py -------------------------------------------------------------------------------- /python36/unix/lib/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/requests/models.py -------------------------------------------------------------------------------- /python36/unix/lib/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/requests/utils.py -------------------------------------------------------------------------------- /python36/unix/lib/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.4" 3 | -------------------------------------------------------------------------------- /python36/unix/lib/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python36/unix/lib/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python36/unix/lib/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/urllib3/fields.py -------------------------------------------------------------------------------- /python36/unix/lib/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python36/unix/lib/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/python36/unix/lib/urllib3/request.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/setup.py -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/start.bat -------------------------------------------------------------------------------- /start.command: -------------------------------------------------------------------------------- 1 | cd "$(dirname "$0")" 2 | /usr/bin/env python2.7 launcher/start.py 3 | -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/start.sh -------------------------------------------------------------------------------- /start.vbs: -------------------------------------------------------------------------------- 1 | createobject("wscript.shell").run "start.bat",0 2 | -------------------------------------------------------------------------------- /test/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/test/.DS_Store -------------------------------------------------------------------------------- /test/.coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/test/.coverage -------------------------------------------------------------------------------- /test/dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/test/dir.py -------------------------------------------------------------------------------- /test/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/test/file.py -------------------------------------------------------------------------------- /test/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/test/login.py -------------------------------------------------------------------------------- /test/run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/test/run_test.sh -------------------------------------------------------------------------------- /test/test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/test/test.cfg -------------------------------------------------------------------------------- /test/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/oss-ftp/HEAD/test/util.py --------------------------------------------------------------------------------