实例介绍
这个是和《机器学习实战》要求的环境是一样的,只要把压缩包解压以后,为python配置环境变量就可以使用
【实例截图】
文件清单
└── Python26
├── DLLs
│ ├── _bsddb.pyd
│ ├── bz2.pyd
│ ├── _ctypes.pyd
│ ├── _ctypes_test.pyd
│ ├── _elementtree.pyd
│ ├── _hashlib.pyd
│ ├── Microsoft.VC90.CRT.manifest
│ ├── _msi.pyd
│ ├── _multiprocessing.pyd
│ ├── pyc.ico
│ ├── pyexpat.pyd
│ ├── py.ico
│ ├── select.pyd
│ ├── _socket.pyd
│ ├── sqlite3.dll
│ ├── _sqlite3.pyd
│ ├── _ssl.pyd
│ ├── tcl85.dll
│ ├── tclpip85.dll
│ ├── _testcapi.pyd
│ ├── tix84.dll
│ ├── tk85.dll
│ ├── _tkinter.pyd
│ ├── unicodedata.pyd
│ └── winsound.pyd
├── Doc
│ └── python26.chm
├── include
│ ├── abstract.h
│ ├── asdl.h
│ ├── ast.h
│ ├── bitset.h
│ ├── boolobject.h
│ ├── bufferobject.h
│ ├── bytearrayobject.h
│ ├── bytes_methods.h
│ ├── bytesobject.h
│ ├── cellobject.h
│ ├── ceval.h
│ ├── classobject.h
│ ├── cobject.h
│ ├── codecs.h
│ ├── code.h
│ ├── compile.h
│ ├── complexobject.h
│ ├── cStringIO.h
│ ├── datetime.h
│ ├── descrobject.h
│ ├── dictobject.h
│ ├── 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
│ ├── metagrammar.h
│ ├── methodobject.h
│ ├── modsupport.h
│ ├── moduleobject.h
│ ├── node.h
│ ├── object.h
│ ├── objimpl.h
│ ├── opcode.h
│ ├── osdefs.h
│ ├── parsetok.h
│ ├── patchlevel.h
│ ├── pgen.h
│ ├── pgenheaders.h
│ ├── pyarena.h
│ ├── pyconfig.h
│ ├── py_curses.h
│ ├── pydebug.h
│ ├── pyerrors.h
│ ├── pyexpat.h
│ ├── pyfpe.h
│ ├── pygetopt.h
│ ├── pymacconfig.h
│ ├── pymactoolbox.h
│ ├── pymath.h
│ ├── pymem.h
│ ├── pyport.h
│ ├── pystate.h
│ ├── pystrcmp.h
│ ├── pystrtod.h
│ ├── Python-ast.h
│ ├── Python.h
│ ├── pythonrun.h
│ ├── pythread.h
│ ├── rangeobject.h
│ ├── setobject.h
│ ├── sliceobject.h
│ ├── stringobject.h
│ ├── structmember.h
│ ├── structseq.h
│ ├── symtable.h
│ ├── sysmodule.h
│ ├── timefuncs.h
│ ├── token.h
│ ├── traceback.h
│ ├── tupleobject.h
│ ├── ucnhash.h
│ ├── unicodeobject.h
│ ├── warnings.h
│ └── weakrefobject.h
├── Lib
│ ├── _abcoll.py
│ ├── _abcoll.pyc
│ ├── _abcoll.pyo
│ ├── abc.py
│ ├── abc.pyc
│ ├── abc.pyo
│ ├── aifc.py
│ ├── anydbm.py
│ ├── ast.py
│ ├── asynchat.py
│ ├── asyncore.py
│ ├── atexit.py
│ ├── atexit.pyc
│ ├── audiodev.py
│ ├── base64.py
│ ├── base64.pyc
│ ├── BaseHTTPServer.py
│ ├── Bastion.py
│ ├── bdb.py
│ ├── bdb.pyc
│ ├── binhex.py
│ ├── bisect.py
│ ├── bisect.pyc
│ ├── bsddb
│ │ ├── dbobj.py
│ │ ├── db.py
│ │ ├── dbrecio.py
│ │ ├── dbshelve.py
│ │ ├── dbtables.py
│ │ ├── dbutils.py
│ │ ├── __init__.py
│ │ └── test
│ │ ├── __init__.py
│ │ ├── test_all.py
│ │ ├── test_associate.py
│ │ ├── test_basics.py
│ │ ├── test_compare.py
│ │ ├── test_compat.py
│ │ ├── test_cursor_pget_bug.py
│ │ ├── test_dbobj.py
│ │ ├── test_dbshelve.py
│ │ ├── test_dbtables.py
│ │ ├── test_distributed_transactions.py
│ │ ├── test_early_close.py
│ │ ├── test_get_none.py
│ │ ├── test_join.py
│ │ ├── test_lock.py
│ │ ├── test_misc.py
│ │ ├── test_pickle.py
│ │ ├── test_queue.py
│ │ ├── test_recno.py
│ │ ├── test_replication.py
│ │ ├── test_sequence.py
│ │ └── test_thread.py
│ ├── calendar.py
│ ├── calendar.pyc
│ ├── CGIHTTPServer.py
│ ├── cgi.py
│ ├── cgitb.py
│ ├── chunk.py
│ ├── cmd.py
│ ├── codecs.py
│ ├── codecs.pyc
│ ├── codecs.pyo
│ ├── codeop.py
│ ├── codeop.pyc
│ ├── code.py
│ ├── code.pyc
│ ├── collections.py
│ ├── collections.pyc
│ ├── colorsys.py
│ ├── commands.py
│ ├── compileall.py
│ ├── compiler
│ │ ├── ast.py
│ │ ├── consts.py
│ │ ├── future.py
│ │ ├── __init__.py
│ │ ├── misc.py
│ │ ├── pyassem.py
│ │ ├── pycodegen.py
│ │ ├── symbols.py
│ │ ├── syntax.py
│ │ ├── transformer.py
│ │ └── visitor.py
│ ├── ConfigParser.py
│ ├── ConfigParser.pyc
│ ├── contextlib.py
│ ├── contextlib.pyc
│ ├── cookielib.py
│ ├── Cookie.py
│ ├── copy.py
│ ├── copy.pyc
│ ├── copy_reg.py
│ ├── copy_reg.pyc
│ ├── copy_reg.pyo
│ ├── cProfile.py
│ ├── csv.py
│ ├── csv.pyc
│ ├── ctypes
│ │ ├── _endian.py
│ │ ├── _endian.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── macholib
│ │ │ ├── dyld.py
│ │ │ ├── dylib.py
│ │ │ ├── framework.py
│ │ │ └── __init__.py
│ │ ├── test
│ │ │ ├── __init__.py
│ │ │ ├── runtests.py
│ │ │ ├── test_anon.py
│ │ │ ├── test_array_in_pointer.py
│ │ │ ├── test_arrays.py
│ │ │ ├── test_as_parameter.py
│ │ │ ├── test_bitfields.py
│ │ │ ├── test_buffers.py
│ │ │ ├── test_byteswap.py
│ │ │ ├── test_callbacks.py
│ │ │ ├── test_cast.py
│ │ │ ├── test_cfuncs.py
│ │ │ ├── test_checkretval.py
│ │ │ ├── test_delattr.py
│ │ │ ├── test_errcheck.py
│ │ │ ├── test_errno.py
│ │ │ ├── test_find.py
│ │ │ ├── test_frombuffer.py
│ │ │ ├── test_funcptr.py
│ │ │ ├── test_functions.py
│ │ │ ├── test_incomplete.py
│ │ │ ├── test_init.py
│ │ │ ├── test_integers.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
│ │ ├── util.py
│ │ └── wintypes.py
│ ├── curses
│ │ ├── ascii.py
│ │ ├── has_key.py
│ │ ├── __init__.py
│ │ ├── panel.py
│ │ ├── textpad.py
│ │ └── wrapper.py
│ ├── dbhash.py
│ ├── decimal.py
│ ├── decimal.pyc
│ ├── difflib.py
│ ├── dircache.py
│ ├── dis.py
│ ├── dis.pyc
│ ├── distutils
│ │ ├── archive_util.py
│ │ ├── archive_util.pyc
│ │ ├── bcppcompiler.py
│ │ ├── ccompiler.py
│ │ ├── cmd.py
│ │ ├── cmd.pyc
│ │ ├── command
│ │ │ ├── bdist_dumb.py
│ │ │ ├── bdist_msi.py
│ │ │ ├── bdist.py
│ │ │ ├── bdist.pyc
│ │ │ ├── bdist_rpm.py
│ │ │ ├── bdist_wininst.py
│ │ │ ├── build_clib.py
│ │ │ ├── build_ext.py
│ │ │ ├── build.py
│ │ │ ├── build.pyc
│ │ │ ├── build_py.py
│ │ │ ├── build_py.pyc
│ │ │ ├── build_scripts.py
│ │ │ ├── build_scripts.pyc
│ │ │ ├── clean.py
│ │ │ ├── config.py
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── install_data.py
│ │ │ ├── install_egg_info.py
│ │ │ ├── install_egg_info.pyc
│ │ │ ├── install_headers.py
│ │ │ ├── install_lib.py
│ │ │ ├── install_lib.pyc
│ │ │ ├── install.py
│ │ │ ├── install.pyc
│ │ │ ├── install_scripts.py
│ │ │ ├── install_scripts.pyc
│ │ │ ├── register.py
│ │ │ ├── sdist.py
│ │ │ ├── sdist.pyc
│ │ │ ├── upload.py
│ │ │ ├── wininst-6.0.exe
│ │ │ ├── wininst-7.1.exe
│ │ │ ├── wininst-8.0.exe
│ │ │ ├── wininst-8_d.exe
│ │ │ ├── wininst-9.0-amd64.exe
│ │ │ └── wininst-9.0.exe
│ │ ├── config.py
│ │ ├── config.pyc
│ │ ├── core.py
│ │ ├── core.pyc
│ │ ├── cygwinccompiler.py
│ │ ├── debug.py
│ │ ├── debug.pyc
│ │ ├── dep_util.py
│ │ ├── dep_util.pyc
│ │ ├── dir_util.py
│ │ ├── dir_util.pyc
│ │ ├── dist.py
│ │ ├── dist.pyc
│ │ ├── emxccompiler.py
│ │ ├── errors.py
│ │ ├── errors.pyc
│ │ ├── extension.py
│ │ ├── extension.pyc
│ │ ├── fancy_getopt.py
│ │ ├── fancy_getopt.pyc
│ │ ├── filelist.py
│ │ ├── filelist.pyc
│ │ ├── file_util.py
│ │ ├── file_util.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── log.py
│ │ ├── log.pyc
│ │ ├── msvc9compiler.py
│ │ ├── msvccompiler.py
│ │ ├── mwerkscompiler.py
│ │ ├── spawn.py
│ │ ├── spawn.pyc
│ │ ├── sysconfig.py
│ │ ├── sysconfig.pyc
│ │ ├── tests
│ │ │ ├── __init__.py
│ │ │ ├── support.py
│ │ │ ├── test_build_ext.py
│ │ │ ├── test_build_py.py
│ │ │ ├── test_build_scripts.py
│ │ │ ├── test_config.py
│ │ │ ├── test_core.py
│ │ │ ├── test_dist.py
│ │ │ ├── test_install.py
│ │ │ ├── test_install_scripts.py
│ │ │ ├── test_sysconfig.py
│ │ │ ├── test_upload.py
│ │ │ └── test_versionpredicate.py
│ │ ├── text_file.py
│ │ ├── text_file.pyc
│ │ ├── unixccompiler.py
│ │ ├── util.py
│ │ ├── util.pyc
│ │ ├── versionpredicate.py
│ │ ├── versionpredicate.pyc
│ │ ├── version.py
│ │ └── version.pyc
│ ├── doctest.py
│ ├── DocXMLRPCServer.py
│ ├── dumbdbm.py
│ ├── dummy_threading.py
│ ├── dummy_thread.py
│ │ ├── base64mime.py
│ │ ├── charset.py
│ │ ├── encoders.py
│ │ ├── errors.py
│ │ ├── feedparser.py
│ │ ├── generator.py
│ │ ├── header.py
│ │ ├── __init__.py
│ │ ├── iterators.py
│ │ ├── message.py
│ │ ├── mime
│ │ │ ├── application.py
│ │ │ ├── audio.py
│ │ │ ├── base.py
│ │ │ ├── image.py
│ │ │ ├── __init__.py
│ │ │ ├── message.py
│ │ │ ├── multipart.py
│ │ │ ├── nonmultipart.py
│ │ │ └── text.py
│ │ ├── _parseaddr.py
│ │ ├── parser.py
│ │ ├── quoprimime.py
│ │ ├── test
│ │ │ ├── data
│ │ │ │ ├── audiotest.au
│ │ │ │ ├── msg_01.txt
│ │ │ │ ├── msg_02.txt
│ │ │ │ ├── msg_03.txt
│ │ │ │ ├── msg_04.txt
│ │ │ │ ├── msg_05.txt
│ │ │ │ ├── msg_06.txt
│ │ │ │ ├── msg_07.txt
│ │ │ │ ├── msg_08.txt
│ │ │ │ ├── msg_09.txt
│ │ │ │ ├── msg_10.txt
│ │ │ │ ├── msg_11.txt
│ │ │ │ ├── msg_12a.txt
│ │ │ │ ├── msg_12.txt
│ │ │ │ ├── msg_13.txt
│ │ │ │ ├── msg_14.txt
│ │ │ │ ├── msg_15.txt
│ │ │ │ ├── msg_16.txt
│ │ │ │ ├── msg_17.txt
│ │ │ │ ├── msg_18.txt
│ │ │ │ ├── msg_19.txt
│ │ │ │ ├── msg_20.txt
│ │ │ │ ├── msg_21.txt
│ │ │ │ ├── msg_22.txt
│ │ │ │ ├── msg_23.txt
│ │ │ │ ├── msg_24.txt
│ │ │ │ ├── msg_25.txt
│ │ │ │ ├── msg_26.txt
│ │ │ │ ├── msg_27.txt
│ │ │ │ ├── msg_28.txt
│ │ │ │ ├── msg_29.txt
│ │ │ │ ├── msg_30.txt
│ │ │ │ ├── msg_31.txt
│ │ │ │ ├── msg_32.txt
│ │ │ │ ├── msg_33.txt
│ │ │ │ ├── msg_34.txt
│ │ │ │ ├── msg_35.txt
│ │ │ │ ├── msg_36.txt
│ │ │ │ ├── msg_37.txt
│ │ │ │ ├── msg_38.txt
│ │ │ │ ├── msg_39.txt
│ │ │ │ ├── msg_40.txt
│ │ │ │ ├── msg_41.txt
│ │ │ │ ├── msg_42.txt
│ │ │ │ ├── msg_43.txt
│ │ │ │ ├── msg_44.txt
│ │ │ │ └── PyBanner048.gif
│ │ │ ├── __init__.py
│ │ │ ├── test_email_codecs.py
│ │ │ ├── test_email_codecs_renamed.py
│ │ │ ├── test_email.py
│ │ │ ├── test_email_renamed.py
│ │ │ └── test_email_torture.py
│ │ └── utils.py
│ ├── encodings
│ │ ├── aliases.py
│ │ ├── aliases.pyc
│ │ ├── aliases.pyo
│ │ ├── ascii.py
│ │ ├── ascii.pyc
│ │ ├── base64_codec.py
│ │ ├── big5hkscs.py
│ │ ├── big5.py
│ │ ├── bz2_codec.py
│ │ ├── charmap.py
│ │ ├── cp037.py
│ │ ├── cp1006.py
│ │ ├── cp1026.py
│ │ ├── cp1140.py
│ │ ├── cp1250.py
│ │ ├── cp1251.py
│ │ ├── cp1252.py
│ │ ├── cp1253.py
│ │ ├── cp1254.py
│ │ ├── cp1255.py
│ │ ├── cp1256.py
│ │ ├── cp1257.py
│ │ ├── cp1258.py
│ │ ├── cp424.py
│ │ ├── cp437.py
│ │ ├── cp500.py
│ │ ├── cp737.py
│ │ ├── cp775.py
│ │ ├── cp850.py
│ │ ├── cp852.py
│ │ ├── cp855.py
│ │ ├── cp856.py
│ │ ├── cp857.py
│ │ ├── cp860.py
│ │ ├── cp861.py
│ │ ├── cp862.py
│ │ ├── cp863.py
│ │ ├── cp864.py
│ │ ├── cp865.py
│ │ ├── cp866.py
│ │ ├── cp869.py
│ │ ├── cp874.py
│ │ ├── cp875.py
│ │ ├── cp932.py
│ │ ├── cp949.py
│ │ ├── cp950.py
│ │ ├── euc_jis_2004.py
│ │ ├── euc_jisx0213.py
│ │ ├── euc_jp.py
│ │ ├── euc_kr.py
│ │ ├── gb18030.py
│ │ ├── gb2312.py
│ │ ├── gbk.py
│ │ ├── gbk.pyc
│ │ ├── gbk.pyo
│ │ ├── hex_codec.py
│ │ ├── hp_roman8.py
│ │ ├── hz.py
│ │ ├── idna.py
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── __init__.pyo
│ │ ├── iso2022_jp_1.py
│ │ ├── iso2022_jp_2004.py
│ │ ├── iso2022_jp_2.py
│ │ ├── iso2022_jp_3.py
│ │ ├── iso2022_jp_ext.py
│ │ ├── iso2022_jp.py
│ │ ├── iso2022_kr.py
│ │ ├── iso8859_10.py
│ │ ├── iso8859_11.py
│ │ ├── iso8859_13.py
│ │ ├── iso8859_14.py
│ │ ├── iso8859_15.py
│ │ ├── iso8859_16.py
│ │ ├── iso8859_1.py
│ │ ├── iso8859_2.py
│ │ ├── iso8859_3.py
│ │ ├── iso8859_4.py
│ │ ├── iso8859_5.py
│ │ ├── iso8859_6.py
│ │ ├── iso8859_7.py
│ │ ├── iso8859_8.py
│ │ ├── iso8859_9.py
│ │ ├── johab.py
│ │ ├── koi8_r.py
│ │ ├── koi8_u.py
│ │ ├── latin_1.py
│ │ ├── mac_arabic.py
│ │ ├── mac_centeuro.py
│ │ ├── mac_croatian.py
│ │ ├── mac_cyrillic.py
│ │ ├── mac_farsi.py
│ │ ├── mac_greek.py
│ │ ├── mac_iceland.py
│ │ ├── mac_latin2.py
│ │ ├── mac_romanian.py
│ │ ├── mac_roman.py
│ │ ├── mac_roman.pyc
│ │ ├── mac_turkish.py
│ │ ├── mbcs.py
│ │ ├── mbcs.pyc
│ │ ├── palmos.py
│ │ ├── ptcp154.py
│ │ ├── punycode.py
│ │ ├── quopri_codec.py
│ │ ├── raw_unicode_escape.py
│ │ ├── rot_13.py
│ │ ├── shift_jis_2004.py
│ │ ├── shift_jis.py
│ │ ├── shift_jisx0213.py
│ │ ├── string_escape.py
│ │ ├── tis_620.py
│ │ ├── undefined.py
│ │ ├── unicode_escape.py
│ │ ├── unicode_escape.pyc
│ │ ├── unicode_internal.py
│ │ ├── utf_16_be.py
│ │ ├── utf_16_le.py
│ │ ├── utf_16.py
│ │ ├── utf_32_be.py
│ │ ├── utf_32_le.py
│ │ ├── utf_32.py
│ │ ├── utf_7.py
│ │ ├── utf_8.py
│ │ ├── utf_8.pyc
│ │ ├── utf_8_sig.py
│ │ ├── uu_codec.py
│ │ └── zlib_codec.py
│ ├── filecmp.py
│ ├── fileinput.py
│ ├── fnmatch.py
│ ├── fnmatch.pyc
│ ├── formatter.py
│ ├── fpformat.py
│ ├── fractions.py
│ ├── fractions.pyc
│ ├── ftplib.py
│ ├── functools.py
│ ├── functools.pyc
│ ├── functools.pyo
│ ├── __future__.py
│ ├── __future__.pyc
│ ├── genericpath.py
│ ├── genericpath.pyc
│ ├── genericpath.pyo
│ ├── getopt.py
│ ├── getopt.pyc
│ ├── getpass.py
│ ├── gettext.py
│ ├── glob.py
│ ├── glob.pyc
│ ├── gzip.py
│ ├── gzip.pyc
│ ├── hashlib.py
│ ├── hashlib.pyc
│ ├── heapq.py
│ ├── heapq.pyc
│ ├── hmac.py
│ ├── hotshot
│ │ ├── __init__.py
│ │ ├── log.py
│ │ ├── stats.py
│ │ └── stones.py
│ ├── htmlentitydefs.py
│ ├── htmllib.py
│ ├── HTMLParser.py
│ ├── httplib.py
│ ├── httplib.pyc
│ ├── idlelib
│ │ ├── aboutDialog.py
│ │ ├── aboutDialog.pyc
│ │ ├── AutoComplete.py
│ │ ├── AutoComplete.pyc
│ │ ├── AutoCompleteWindow.py
│ │ ├── AutoCompleteWindow.pyc
│ │ ├── AutoExpand.py
│ │ ├── AutoExpand.pyc
│ │ ├── Bindings.py
│ │ ├── Bindings.pyc
│ │ ├── CallTips.py
│ │ ├── CallTips.pyc
│ │ ├── CallTipWindow.py
│ │ ├── CallTipWindow.pyc
│ │ ├── ClassBrowser.py
│ │ ├── CodeContext.py
│ │ ├── CodeContext.pyc
│ │ ├── ColorDelegator.py
│ │ ├── ColorDelegator.pyc
│ │ ├── configDialog.py
│ │ ├── configDialog.pyc
│ │ ├── config-extensions.def
│ │ ├── configHandler.py
│ │ ├── configHandler.pyc
│ │ ├── configHelpSourceEdit.py
│ │ ├── configHelpSourceEdit.pyc
│ │ ├── config-highlight.def
│ │ ├── config-keys.def
│ │ ├── config-main.def
│ │ ├── configSectionNameDialog.py
│ │ ├── configSectionNameDialog.pyc
│ │ ├── CREDITS.txt
│ │ ├── Debugger.py
│ │ ├── Debugger.pyc
│ │ ├── Delegator.py
│ │ ├── Delegator.pyc
│ │ ├── dynOptionMenuWidget.py
│ │ ├── dynOptionMenuWidget.pyc
│ │ ├── EditorWindow.py
│ │ ├── EditorWindow.pyc
│ │ ├── extend.txt
│ │ ├── FileList.py
│ │ ├── FileList.pyc
│ │ ├── FormatParagraph.py
│ │ ├── FormatParagraph.pyc
│ │ ├── GrepDialog.py
│ │ ├── GrepDialog.pyc
│ │ ├── help.txt
│ │ ├── HISTORY.txt
│ │ ├── HyperParser.py
│ │ ├── HyperParser.pyc
│ │ ├── Icons
│ │ │ ├── folder.gif
│ │ │ ├── idle.icns
│ │ │ ├── minusnode.gif
│ │ │ ├── openfolder.gif
│ │ │ ├── plusnode.gif
│ │ │ ├── python.gif
│ │ │ └── tk.gif
│ │ ├── idle.bat
│ │ ├── IdleHistory.py
│ │ ├── IdleHistory.pyc
│ │ ├── idle.py
│ │ ├── idle.pyw
│ │ ├── idlever.py
│ │ ├── idlever.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── IOBinding.py
│ │ ├── IOBinding.pyc
│ │ ├── keybindingDialog.py
│ │ ├── keybindingDialog.pyc
│ │ ├── macosxSupport.py
│ │ ├── macosxSupport.pyc
│ │ ├── MultiCall.py
│ │ ├── MultiCall.pyc
│ │ ├── MultiStatusBar.py
│ │ ├── MultiStatusBar.pyc
│ │ ├── NEWS.txt
│ │ ├── ObjectBrowser.py
│ │ ├── OutputWindow.py
│ │ ├── OutputWindow.pyc
│ │ ├── ParenMatch.py
│ │ ├── ParenMatch.pyc
│ │ ├── PathBrowser.py
│ │ ├── Percolator.py
│ │ ├── Percolator.pyc
│ │ ├── PyParse.py
│ │ ├── PyParse.pyc
│ │ ├── PyShell.py
│ │ ├── PyShell.pyc
│ │ ├── README.txt
│ │ ├── RemoteDebugger.py
│ │ ├── RemoteDebugger.pyc
│ │ ├── RemoteObjectBrowser.py
│ │ ├── ReplaceDialog.py
│ │ ├── ReplaceDialog.pyc
│ │ ├── rpc.py
│ │ ├── rpc.pyc
│ │ ├── run.py
│ │ ├── ScriptBinding.py
│ │ ├── ScriptBinding.pyc
│ │ ├── ScrolledList.py
│ │ ├── ScrolledList.pyc
│ │ ├── SearchDialogBase.py
│ │ ├── SearchDialogBase.pyc
│ │ ├── SearchDialog.py
│ │ ├── SearchDialog.pyc
│ │ ├── SearchEngine.py
│ │ ├── SearchEngine.pyc
│ │ ├── StackViewer.py
│ │ ├── tabbedpages.py
│ │ ├── tabbedpages.pyc
│ │ ├── testcode.py
│ │ ├── textView.py
│ │ ├── textView.pyc
│ │ ├── TODO.txt
│ │ ├── ToolTip.py
│ │ ├── TreeWidget.py
│ │ ├── UndoDelegator.py
│ │ ├── UndoDelegator.pyc
│ │ ├── WidgetRedirector.py
│ │ ├── WidgetRedirector.pyc
│ │ ├── WindowList.py
│ │ ├── WindowList.pyc
│ │ ├── ZoomHeight.py
│ │ └── ZoomHeight.pyc
│ ├── ihooks.py
│ ├── imaplib.py
│ ├── imghdr.py
│ ├── imputil.py
│ ├── inspect.py
│ ├── inspect.pyc
│ ├── io.py
│ ├── io.pyc
│ ├── json
│ │ ├── decoder.py
│ │ ├── encoder.py
│ │ ├── __init__.py
│ │ ├── scanner.py
│ │ ├── tests
│ │ │ ├── __init__.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_unicode.py
│ │ └── tool.py
│ ├── keyword.py
│ ├── keyword.pyc
│ ├── lib2to3
│ │ ├── fixer_base.py
│ │ ├── fixer_util.py
│ │ ├── fixes
│ │ │ ├── fix_apply.py
│ │ │ ├── fix_basestring.py
│ │ │ ├── fix_buffer.py
│ │ │ ├── fix_callable.py
│ │ │ ├── fix_dict.py
│ │ │ ├── fix_except.py
│ │ │ ├── fix_execfile.py
│ │ │ ├── fix_exec.py
│ │ │ ├── fix_filter.py
│ │ │ ├── fix_funcattrs.py
│ │ │ ├── fix_future.py
│ │ │ ├── fix_has_key.py
│ │ │ ├── fix_idioms.py
│ │ │ ├── fix_import.py
│ │ │ ├── fix_imports2.py
│ │ │ ├── fix_imports.py
│ │ │ ├── fix_input.py
│ │ │ ├── fix_intern.py
│ │ │ ├── fix_itertools_imports.py
│ │ │ ├── fix_itertools.py
│ │ │ ├── fix_long.py
│ │ │ ├── fix_map.py
│ │ │ ├── fix_metaclass.py
│ │ │ ├── fix_methodattrs.py
│ │ │ ├── fix_ne.py
│ │ │ ├── fix_next.py
│ │ │ ├── fix_nonzero.py
│ │ │ ├── fix_numliterals.py
│ │ │ ├── fix_paren.py
│ │ │ ├── fix_print.py
│ │ │ ├── fix_raise.py
│ │ │ ├── fix_raw_input.py
│ │ │ ├── fix_renames.py
│ │ │ ├── fix_repr.py
│ │ │ ├── fix_standarderror.py
│ │ │ ├── fix_sys_exc.py
│ │ │ ├── fix_throw.py
│ │ │ ├── fix_tuple_params.py
│ │ │ ├── fix_types.py
│ │ │ ├── fix_unicode.py
│ │ │ ├── fix_urllib.py
│ │ │ ├── fix_ws_comma.py
│ │ │ ├── fix_xrange.py
│ │ │ ├── fix_xreadlines.py
│ │ │ ├── fix_zip.py
│ │ │ └── __init__.py
│ │ ├── Grammar.txt
│ │ ├── __init__.py
│ │ ├── main.py
│ │ ├── patcomp.py
│ │ ├── PatternGrammar.txt
│ │ ├── pgen2
│ │ │ ├── conv.py
│ │ │ ├── driver.py
│ │ │ ├── grammar.py
│ │ │ ├── __init__.py
│ │ │ ├── literals.py
│ │ │ ├── parse.py
│ │ │ ├── pgen.py
│ │ │ ├── tokenize.py
│ │ │ └── token.py
│ │ ├── pygram.py
│ │ ├── pytree.py
│ │ ├── refactor.py
│ │ └── tests
│ │ ├── benchmark.py
│ │ ├── data
│ │ │ ├── fixers
│ │ │ │ ├── bad_order.py
│ │ │ │ ├── myfixes
│ │ │ │ │ ├── fix_explicit.py
│ │ │ │ │ ├── fix_first.py
│ │ │ │ │ ├── fix_last.py
│ │ │ │ │ ├── fix_parrot.py
│ │ │ │ │ ├── fix_preorder.py
│ │ │ │ │ └── __init__.py
│ │ │ │ ├── no_fixer_cls.py
│ │ │ │ └── parrot_example.py
│ │ │ ├── py2_test_grammar.py
│ │ │ └── py3_test_grammar.py
│ │ ├── __init__.py
│ │ ├── pytree_idempotency.py
│ │ ├── support.py
│ │ ├── test_all_fixers.py
│ │ ├── test_fixers.py
│ │ ├── test_parser.py
│ │ ├── test_pytree.py
│ │ ├── test_refactor.py
│ │ └── test_util.py
│ ├── lib-tk
│ │ ├── Canvas.py
│ │ ├── Dialog.py
│ │ ├── Dialog.pyc
│ │ ├── FileDialog.py
│ │ ├── FileDialog.pyc
│ │ ├── FixTk.py
│ │ ├── FixTk.pyc
│ │ ├── ScrolledText.py
│ │ ├── SimpleDialog.py
│ │ ├── SimpleDialog.pyc
│ │ ├── Tix.py
│ │ ├── tkColorChooser.py
│ │ ├── tkColorChooser.pyc
│ │ ├── tkCommonDialog.py
│ │ ├── tkCommonDialog.pyc
│ │ ├── Tkconstants.py
│ │ ├── Tkconstants.pyc
│ │ ├── Tkdnd.py
│ │ ├── tkFileDialog.py
│ │ ├── tkFileDialog.pyc
│ │ ├── tkFont.py
│ │ ├── tkFont.pyc
│ │ ├── Tkinter.py
│ │ ├── Tkinter.pyc
│ │ ├── tkMessageBox.py
│ │ ├── tkMessageBox.pyc
│ │ ├── tkSimpleDialog.py
│ │ ├── tkSimpleDialog.pyc
│ │ └── turtle.py
│ ├── linecache.py
│ ├── linecache.pyc
│ ├── linecache.pyo
│ ├── locale.py
│ ├── locale.pyc
│ ├── locale.pyo
│ ├── logging
│ │ ├── config.py
│ │ ├── handlers.py
│ │ └── __init__.py
│ ├── _LWPCookieJar.py
│ ├── macpath.py
│ ├── macurl2path.py
│ ├── mailbox.py
│ ├── mailcap.py
│ ├── markupbase.py
│ ├── md5.py
│ ├── mhlib.py
│ ├── mimetools.py
│ ├── mimetools.pyc
│ ├── mimetypes.py
│ ├── MimeWriter.py
│ ├── mimify.py
│ ├── modulefinder.py
│ ├── _MozillaCookieJar.py
│ ├── msilib
│ │ ├── __init__.py
│ │ ├── schema.py
│ │ ├── sequence.py
│ │ └── text.py
│ ├── multifile.py
│ ├── multiprocessing
│ │ ├── connection.py
│ │ ├── dummy
│ │ │ ├── connection.py
│ │ │ └── __init__.py
│ │ ├── forking.py
│ │ ├── heap.py
│ │ ├── __init__.py
│ │ ├── managers.py
│ │ ├── pool.py
│ │ ├── process.py
│ │ ├── queues.py
│ │ ├── reduction.py
│ │ ├── sharedctypes.py
│ │ ├── synchronize.py
│ │ └── util.py
│ ├── mutex.py
│ ├── netrc.py
│ ├── new.py
│ ├── new.pyc
│ ├── nntplib.py
│ ├── ntpath.py
│ ├── ntpath.pyc
│ ├── ntpath.pyo
│ ├── nturl2path.py
│ ├── nturl2path.pyc
│ ├── numbers.py
│ ├── numbers.pyc
│ ├── opcode.py
│ ├── opcode.pyc
│ ├── optparse.py
│ ├── os2emxpath.py
│ ├── os.py
│ ├── os.pyc
│ ├── os.pyo
│ ├── pdb.py
│ ├── __phello__.foo.py
│ ├── pickle.py
│ ├── pickletools.py
│ ├── pipes.py
│ ├── pkgutil.py
│ ├── pkgutil.pyc
│ ├── platform.py
│ ├── plistlib.py
│ ├── popen2.py
│ ├── poplib.py
│ ├── posixfile.py
│ ├── posixpath.py
│ ├── posixpath.pyc
│ ├── pprint.py
│ ├── profile.py
│ ├── pstats.py
│ ├── pty.py
│ ├── pyclbr.py
│ ├── py_compile.py
│ ├── py_compile.pyc
│ ├── py_compile.pyo
│ ├── pydoc.py
│ ├── pydoc_topics.py
│ ├── Queue.py
│ ├── Queue.pyc
│ ├── quopri.py
│ ├── random.py
│ ├── random.pyc
│ ├── repr.py
│ ├── re.py
│ ├── re.pyc
│ ├── re.pyo
│ ├── rexec.py
│ ├── rfc822.py
│ ├── rfc822.pyc
│ ├── rlcompleter.py
│ ├── robotparser.py
│ ├── runpy.py
│ ├── sched.py
│ ├── sets.py
│ ├── sgmllib.py
│ ├── sha.py
│ ├── shelve.py
│ ├── shlex.py
│ ├── shlex.pyc
│ ├── shutil.py
│ ├── shutil.pyc
│ ├── SimpleHTTPServer.py
│ ├── SimpleXMLRPCServer.py
│ ├── site-packages
│ │ ├── easy-install.pth
│ │ ├── matplotlib
│ │ │ ├── afm.py
│ │ │ ├── afm.pyc
│ │ │ ├── afm.pyo
│ │ │ ├── animation.py
│ │ │ ├── animation.pyc
│ │ │ ├── animation.pyo
│ │ │ ├── artist.py
│ │ │ ├── artist.pyc
│ │ │ ├── artist.pyo
│ │ │ ├── axes
│ │ │ │ ├── _axes.py
│ │ │ │ ├── _axes.pyc
│ │ │ │ ├── _axes.pyo
│ │ │ │ ├── _base.py
│ │ │ │ ├── _base.pyc
│ │ │ │ ├── _base.pyo
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── __init__.pyo
│ │ │ │ ├── _subplots.py
│ │ │ │ ├── _subplots.pyc
│ │ │ │ └── _subplots.pyo
│ │ │ ├── axis.py
│ │ │ ├── axis.pyc
│ │ │ ├── axis.pyo
│ │ │ ├── backend_bases.py
│ │ │ ├── backend_bases.pyc
│ │ │ ├── backend_bases.pyo
│ │ │ ├── backends
│ │ │ │ ├── backend_agg.py
│ │ │ │ ├── backend_agg.pyc
│ │ │ │ ├── _backend_agg.pyd
│ │ │ │ ├── backend_agg.pyo
│ │ │ │ ├── backend_cairo.py
│ │ │ │ ├── backend_cairo.pyc
│ │ │ │ ├── backend_cairo.pyo
│ │ │ │ ├── backend_cocoaagg.py
│ │ │ │ ├── backend_cocoaagg.pyc
│ │ │ │ ├── backend_cocoaagg.pyo
│ │ │ │ ├── backend_gdk.py
│ │ │ │ ├── backend_gdk.pyc
│ │ │ │ ├── _backend_gdk.pyd
│ │ │ │ ├── backend_gdk.pyo
│ │ │ │ ├── backend_gtk3agg.py
│ │ │ │ ├── backend_gtk3agg.pyc
│ │ │ │ ├── backend_gtk3agg.pyo
│ │ │ │ ├── backend_gtk3cairo.py
│ │ │ │ ├── backend_gtk3cairo.pyc
│ │ │ │ ├── backend_gtk3cairo.pyo
│ │ │ │ ├── backend_gtk3.py
│ │ │ │ ├── backend_gtk3.pyc
│ │ │ │ ├── backend_gtk3.pyo
│ │ │ │ ├── backend_gtkagg.py
│ │ │ │ ├── backend_gtkagg.pyc
│ │ │ │ ├── backend_gtkagg.pyo
│ │ │ │ ├── backend_gtkcairo.py
│ │ │ │ ├── backend_gtkcairo.pyc
│ │ │ │ ├── backend_gtkcairo.pyo
│ │ │ │ ├── backend_gtk.py
│ │ │ │ ├── backend_gtk.pyc
│ │ │ │ ├── backend_gtk.pyo
│ │ │ │ ├── backend_macosx.py
│ │ │ │ ├── backend_macosx.pyc
│ │ │ │ ├── backend_macosx.pyo
│ │ │ │ ├── backend_mixed.py
│ │ │ │ ├── backend_mixed.pyc
│ │ │ │ ├── backend_mixed.pyo
│ │ │ │ ├── backend_nbagg.py
│ │ │ │ ├── backend_nbagg.pyc
│ │ │ │ ├── backend_nbagg.pyo
│ │ │ │ ├── backend_pdf.py
│ │ │ │ ├── backend_pdf.pyc
│ │ │ │ ├── backend_pdf.pyo
│ │ │ │ ├── backend_pgf.py
│ │ │ │ ├── backend_pgf.pyc
│ │ │ │ ├── backend_pgf.pyo
│ │ │ │ ├── backend_ps.py
│ │ │ │ ├── backend_ps.pyc
│ │ │ │ ├── backend_ps.pyo
│ │ │ │ ├── backend_qt4agg.py
│ │ │ │ ├── backend_qt4agg.pyc
│ │ │ │ ├── backend_qt4agg.pyo
│ │ │ │ ├── backend_qt4.py
│ │ │ │ ├── backend_qt4.pyc
│ │ │ │ ├── backend_qt4.pyo
│ │ │ │ ├── backend_qt5agg.py
│ │ │ │ ├── backend_qt5agg.pyc
│ │ │ │ ├── backend_qt5agg.pyo
│ │ │ │ ├── backend_qt5.py
│ │ │ │ ├── backend_qt5.pyc
│ │ │ │ ├── backend_qt5.pyo
│ │ │ │ ├── backend_svg.py
│ │ │ │ ├── backend_svg.pyc
│ │ │ │ ├── backend_svg.pyo
│ │ │ │ ├── backend_template.py
│ │ │ │ ├── backend_template.pyc
│ │ │ │ ├── backend_template.pyo
│ │ │ │ ├── backend_tkagg.py
│ │ │ │ ├── backend_tkagg.pyc
│ │ │ │ ├── backend_tkagg.pyo
│ │ │ │ ├── backend_webagg_core.py
│ │ │ │ ├── backend_webagg_core.pyc
│ │ │ │ ├── backend_webagg_core.pyo
│ │ │ │ ├── backend_webagg.py
│ │ │ │ ├── backend_webagg.pyc
│ │ │ │ ├── backend_webagg.pyo
│ │ │ │ ├── backend_wxagg.py
│ │ │ │ ├── backend_wxagg.pyc
│ │ │ │ ├── backend_wxagg.pyo
│ │ │ │ ├── backend_wx.py
│ │ │ │ ├── backend_wx.pyc
│ │ │ │ ├── backend_wx.pyo
│ │ │ │ ├── _gtkagg.pyd
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── __init__.pyo
│ │ │ │ ├── Matplotlib.nib
│ │ │ │ │ ├── classes.nib
│ │ │ │ │ ├── info.nib
│ │ │ │ │ └── keyedobjects.nib
│ │ │ │ ├── qt4_compat.py
│ │ │ │ ├── qt4_compat.pyc
│ │ │ │ ├── qt4_compat.pyo
│ │ │ │ ├── qt_compat.py
│ │ │ │ ├── qt_compat.pyc
│ │ │ │ ├── qt_compat.pyo
│ │ │ │ ├── qt_editor
│ │ │ │ │ ├── figureoptions.py
│ │ │ │ │ ├── figureoptions.pyc
│ │ │ │ │ ├── figureoptions.pyo
│ │ │ │ │ ├── formlayout.py
│ │ │ │ │ ├── formlayout.pyc
│ │ │ │ │ ├── formlayout.pyo
│ │ │ │ │ ├── formsubplottool.py
│ │ │ │ │ ├── formsubplottool.pyc
│ │ │ │ │ ├── formsubplottool.pyo
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ └── __init__.pyo
│ │ │ │ ├── tkagg.py
│ │ │ │ ├── tkagg.pyc
│ │ │ │ ├── _tkagg.pyd
│ │ │ │ ├── tkagg.pyo
│ │ │ │ ├── web_backend
│ │ │ │ │ ├── all_figures.html
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── boilerplate.css
│ │ │ │ │ │ ├── fbm.css
│ │ │ │ │ │ └── page.css
│ │ │ │ │ ├── ipython_inline_figure.html
│ │ │ │ │ ├── jquery
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ └── themes
│ │ │ │ │ │ │ └── base
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png
│ │ │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│ │ │ │ │ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ │ │ │ │ │ ├── ui-icons_454545_256x240.png
│ │ │ │ │ │ │ │ ├── ui-icons_888888_256x240.png
│ │ │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png
│ │ │ │ │ │ │ └── jquery-ui.min.css
│ │ │ │ │ │ └── js
│ │ │ │ │ │ ├── jquery-1.7.1.min.js
│ │ │ │ │ │ ├── jquery.autogrow.js
│ │ │ │ │ │ └── jquery-ui.min.js
│ │ │ │ │ ├── mpl.js
│ │ │ │ │ ├── mpl_tornado.js
│ │ │ │ │ ├── nbagg_mpl.js
│ │ │ │ │ ├── nbagg_uat.ipynb
│ │ │ │ │ └── single_figure.html
│ │ │ │ ├── windowing.py
│ │ │ │ ├── windowing.pyc
│ │ │ │ └── windowing.pyo
│ │ │ ├── bezier.py
│ │ │ ├── bezier.pyc
│ │ │ ├── bezier.pyo
│ │ │ ├── blocking_input.py
│ │ │ ├── blocking_input.pyc
│ │ │ ├── blocking_input.pyo
│ │ │ ├── cbook.py
│ │ │ ├── cbook.pyc
│ │ │ ├── cbook.pyo
│ │ │ ├── _cm.py
│ │ │ ├── cm.py
│ │ │ ├── _cm.pyc
│ │ │ ├── cm.pyc
│ │ │ ├── _cm.pyo
│ │ │ ├── cm.pyo
│ │ │ ├── _cntr.pyd
│ │ │ ├── collections.py
│ │ │ ├── collections.pyc
│ │ │ ├── collections.pyo
│ │ │ ├── colorbar.py
│ │ │ ├── colorbar.pyc
│ │ │ ├── colorbar.pyo
│ │ │ ├── colors.py
│ │ │ ├── colors.pyc
│ │ │ ├── colors.pyo
│ │ │ ├── compat
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── __init__.pyo
│ │ │ │ ├── subprocess.py
│ │ │ │ ├── subprocess.pyc
│ │ │ │ └── subprocess.pyo
│ │ │ ├── container.py
│ │ │ ├── container.pyc
│ │ │ ├── container.pyo
│ │ │ ├── contour.py
│ │ │ ├── contour.pyc
│ │ │ ├── contour.pyo
│ │ │ ├── dates.py
│ │ │ ├── dates.pyc
│ │ │ ├── dates.pyo
│ │ │ ├── delaunay
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── __init__.pyo
│ │ │ │ ├── interpolate.py
│ │ │ │ ├── interpolate.pyc
│ │ │ │ ├── interpolate.pyo
│ │ │ │ ├── testfuncs.py
│ │ │ │ ├── testfuncs.pyc
│ │ │ │ ├── testfuncs.pyo
│ │ │ │ ├── triangulate.py
│ │ │ │ ├── triangulate.pyc
│ │ │ │ └── triangulate.pyo
│ │ │ ├── _delaunay.pyd
│ │ │ ├── docstring.py
│ │ │ ├── docstring.pyc
│ │ │ ├── docstring.pyo
│ │ │ ├── dviread.py
│ │ │ ├── dviread.pyc
│ │ │ ├── dviread.pyo
│ │ │ ├── figure.py
│ │ │ ├── figure.pyc
│ │ │ ├── figure.pyo
│ │ │ ├── finance.py
│ │ │ ├── finance.pyc
│ │ │ ├── finance.pyo
│ │ │ ├── fontconfig_pattern.py
│ │ │ ├── fontconfig_pattern.pyc
│ │ │ ├── fontconfig_pattern.pyo
│ │ │ ├── font_manager.py
│ │ │ ├── font_manager.pyc
│ │ │ ├── font_manager.pyo
│ │ │ ├── ft2font.pyd
│ │ │ ├── gridspec.py
│ │ │ ├── gridspec.pyc
│ │ │ ├── gridspec.pyo
│ │ │ ├── hatch.py
│ │ │ ├── hatch.pyc
│ │ │ ├── hatch.pyo
│ │ │ ├── image.py
│ │ │ ├── image.pyc
│ │ │ ├── _image.pyd
│ │ │ ├── image.pyo
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── __init__.pyo
│ │ │ ├── legend_handler.py
│ │ │ ├── legend_handler.pyc
│ │ │ ├── legend_handler.pyo
│ │ │ ├── legend.py
│ │ │ ├── legend.pyc
│ │ │ ├── legend.pyo
│ │ │ ├── lines.py
│ │ │ ├── lines.pyc
│ │ │ ├── lines.pyo
│ │ │ ├── markers.py
│ │ │ ├── markers.pyc
│ │ │ ├── markers.pyo
│ │ │ ├── _mathtext_data.py
│ │ │ ├── _mathtext_data.pyc
│ │ │ ├── _mathtext_data.pyo
│ │ │ ├── mathtext.py
│ │ │ ├── mathtext.pyc
│ │ │ ├── mathtext.pyo
│ │ │ ├── mlab.py
│ │ │ ├── mlab.pyc
│ │ │ ├── mlab.pyo
│ │ │ ├── mpl-data
│ │ │ │ ├── fonts
│ │ │ │ │ ├── afm
│ │ │ │ │ │ ├── cmex10.afm
│ │ │ │ │ │ ├── cmmi10.afm
│ │ │ │ │ │ ├── cmr10.afm
│ │ │ │ │ │ ├── cmsy10.afm
│ │ │ │ │ │ ├── cmtt10.afm
│ │ │ │ │ │ ├── pagd8a.afm
│ │ │ │ │ │ ├── pagdo8a.afm
│ │ │ │ │ │ ├── pagk8a.afm
│ │ │ │ │ │ ├── pagko8a.afm
│ │ │ │ │ │ ├── pbkd8a.afm
│ │ │ │ │ │ ├── pbkdi8a.afm
│ │ │ │ │ │ ├── pbkl8a.afm
│ │ │ │ │ │ ├── pbkli8a.afm
│ │ │ │ │ │ ├── pcrb8a.afm
│ │ │ │ │ │ ├── pcrbo8a.afm
│ │ │ │ │ │ ├── pcrr8a.afm
│ │ │ │ │ │ ├── pcrro8a.afm
│ │ │ │ │ │ ├── phvb8a.afm
│ │ │ │ │ │ ├── phvb8an.afm
│ │ │ │ │ │ ├── phvbo8a.afm
│ │ │ │ │ │ ├── phvbo8an.afm
│ │ │ │ │ │ ├── phvl8a.afm
│ │ │ │ │ │ ├── phvlo8a.afm
│ │ │ │ │ │ ├── phvr8a.afm
│ │ │ │ │ │ ├── phvr8an.afm
│ │ │ │ │ │ ├── phvro8a.afm
│ │ │ │ │ │ ├── phvro8an.afm
│ │ │ │ │ │ ├── pncb8a.afm
│ │ │ │ │ │ ├── pncbi8a.afm
│ │ │ │ │ │ ├── pncr8a.afm
│ │ │ │ │ │ ├── pncri8a.afm
│ │ │ │ │ │ ├── pplb8a.afm
│ │ │ │ │ │ ├── pplbi8a.afm
│ │ │ │ │ │ ├── pplr8a.afm
│ │ │ │ │ │ ├── pplri8a.afm
│ │ │ │ │ │ ├── psyr.afm
│ │ │ │ │ │ ├── ptmb8a.afm
│ │ │ │ │ │ ├── ptmbi8a.afm
│ │ │ │ │ │ ├── ptmr8a.afm
│ │ │ │ │ │ ├── ptmri8a.afm
│ │ │ │ │ │ ├── putb8a.afm
│ │ │ │ │ │ ├── putbi8a.afm
│ │ │ │ │ │ ├── putr8a.afm
│ │ │ │ │ │ ├── putri8a.afm
│ │ │ │ │ │ ├── pzcmi8a.afm
│ │ │ │ │ │ └── pzdr.afm
│ │ │ │ │ ├── pdfcorefonts
│ │ │ │ │ │ ├── Courier.afm
│ │ │ │ │ │ ├── Courier-Bold.afm
│ │ │ │ │ │ ├── Courier-BoldOblique.afm
│ │ │ │ │ │ ├── Courier-Oblique.afm
│ │ │ │ │ │ ├── Helvetica.afm
│ │ │ │ │ │ ├── Helvetica-Bold.afm
│ │ │ │ │ │ ├── Helvetica-BoldOblique.afm
│ │ │ │ │ │ ├── Helvetica-Oblique.afm
│ │ │ │ │ │ ├── readme.txt
│ │ │ │ │ │ ├── Symbol.afm
│ │ │ │ │ │ ├── Times-Bold.afm
│ │ │ │ │ │ ├── Times-BoldItalic.afm
│ │ │ │ │ │ ├── Times-Italic.afm
│ │ │ │ │ │ ├── Times-Roman.afm
│ │ │ │ │ │ └── ZapfDingbats.afm
│ │ │ │ │ └── ttf
│ │ │ │ │ ├── cmb10.ttf
│ │ │ │ │ ├── cmex10.ttf
│ │ │ │ │ ├── cmmi10.ttf
│ │ │ │ │ ├── cmr10.ttf
│ │ │ │ │ ├── cmss10.ttf
│ │ │ │ │ ├── cmsy10.ttf
│ │ │ │ │ ├── cmtt10.ttf
│ │ │ │ │ ├── COPYRIGHT.TXT
│ │ │ │ │ ├── LICENSE_STIX
│ │ │ │ │ ├── README.TXT
│ │ │ │ │ ├── RELEASENOTES.TXT
│ │ │ │ │ ├── STIXGeneralBolIta.ttf
│ │ │ │ │ ├── STIXGeneralBol.ttf
│ │ │ │ │ ├── STIXGeneralItalic.ttf
│ │ │ │ │ ├── STIXGeneral.ttf
│ │ │ │ │ ├── STIXNonUniBolIta.ttf
│ │ │ │ │ ├── STIXNonUniBol.ttf
│ │ │ │ │ ├── STIXNonUniIta.ttf
│ │ │ │ │ ├── STIXNonUni.ttf
│ │ │ │ │ ├── STIXSizFiveSymReg.ttf
│ │ │ │ │ ├── STIXSizFourSymBol.ttf
│ │ │ │ │ ├── STIXSizFourSymReg.ttf
│ │ │ │ │ ├── STIXSizOneSymBol.ttf
│ │ │ │ │ ├── STIXSizOneSymReg.ttf
│ │ │ │ │ ├── STIXSizThreeSymBol.ttf
│ │ │ │ │ ├── STIXSizThreeSymReg.ttf
│ │ │ │ │ ├── STIXSizTwoSymBol.ttf
│ │ │ │ │ ├── STIXSizTwoSymReg.ttf
│ │ │ │ │ ├── VeraBd.ttf
│ │ │ │ │ ├── VeraBI.ttf
│ │ │ │ │ ├── VeraIt.ttf
│ │ │ │ │ ├── VeraMoBd.ttf
│ │ │ │ │ ├── VeraMoBI.ttf
│ │ │ │ │ ├── VeraMoIt.ttf
│ │ │ │ │ ├── VeraMono.ttf
│ │ │ │ │ ├── VeraSeBd.ttf
│ │ │ │ │ ├── VeraSe.ttf
│ │ │ │ │ └── Vera.ttf
│ │ │ │ ├── images
│ │ │ │ │ ├── back.png
│ │ │ │ │ ├── back.ppm
│ │ │ │ │ ├── back.svg
│ │ │ │ │ ├── back.xpm
│ │ │ │ │ ├── filesave.png
│ │ │ │ │ ├── filesave.ppm
│ │ │ │ │ ├── filesave.svg
│ │ │ │ │ ├── filesave.xpm
│ │ │ │ │ ├── forward.png
│ │ │ │ │ ├── forward.ppm
│ │ │ │ │ ├── forward.svg
│ │ │ │ │ ├── forward.xpm
│ │ │ │ │ ├── hand.png
│ │ │ │ │ ├── hand.ppm
│ │ │ │ │ ├── hand.svg
│ │ │ │ │ ├── hand.xpm
│ │ │ │ │ ├── home.png
│ │ │ │ │ ├── home.ppm
│ │ │ │ │ ├── home.svg
│ │ │ │ │ ├── home.xpm
│ │ │ │ │ ├── matplotlib.gif
│ │ │ │ │ ├── matplotlib.png
│ │ │ │ │ ├── matplotlib.svg
│ │ │ │ │ ├── move.png
│ │ │ │ │ ├── move.ppm
│ │ │ │ │ ├── move.svg
│ │ │ │ │ ├── move.xpm
│ │ │ │ │ ├── qt4_editor_options.png
│ │ │ │ │ ├── qt4_editor_options.svg
│ │ │ │ │ ├── stock_close.ppm
│ │ │ │ │ ├── stock_close.xpm
│ │ │ │ │ ├── stock_down.ppm
│ │ │ │ │ ├── stock_down.xpm
│ │ │ │ │ ├── stock_left.ppm
│ │ │ │ │ ├── stock_left.xpm
│ │ │ │ │ ├── stock_refresh.ppm
│ │ │ │ │ ├── stock_refresh.xpm
│ │ │ │ │ ├── stock_right.ppm
│ │ │ │ │ ├── stock_right.xpm
│ │ │ │ │ ├── stock_save_as.ppm
│ │ │ │ │ ├── stock_save_as.xpm
│ │ │ │ │ ├── stock_up.ppm
│ │ │ │ │ ├── stock_up.xpm
│ │ │ │ │ ├── stock_zoom-in.ppm
│ │ │ │ │ ├── stock_zoom-in.xpm
│ │ │ │ │ ├── stock_zoom-out.ppm
│ │ │ │ │ ├── stock_zoom-out.xpm
│ │ │ │ │ ├── subplots.png
│ │ │ │ │ ├── subplots.ppm
│ │ │ │ │ ├── subplots.xpm
│ │ │ │ │ ├── zoom_to_rect.png
│ │ │ │ │ ├── zoom_to_rect.ppm
│ │ │ │ │ ├── zoom_to_rect.svg
│ │ │ │ │ └── zoom_to_rect.xpm
│ │ │ │ ├── lineprops.glade
│ │ │ │ ├── matplotlibrc
│ │ │ │ └── stylelib
│ │ │ │ ├── bmh.mplstyle
│ │ │ │ ├── dark_background.mplstyle
│ │ │ │ ├── fivethirtyeight.mplstyle
│ │ │ │ ├── ggplot.mplstyle
│ │ │ │ └── grayscale.mplstyle
│ │ │ ├── mpl.py
│ │ │ ├── mpl.pyc
│ │ │ ├── mpl.pyo
│ │ │ ├── offsetbox.py
│ │ │ ├── offsetbox.pyc
│ │ │ ├── offsetbox.pyo
│ │ │ ├── patches.py
│ │ │ ├── patches.pyc
│ │ │ ├── patches.pyo
│ │ │ ├── patheffects.py
│ │ │ ├── patheffects.pyc
│ │ │ ├── patheffects.pyo
│ │ │ ├── path.py
│ │ │ ├── path.pyc
│ │ │ ├── _path.pyd
│ │ │ ├── path.pyo
│ │ │ ├── _png.pyd
│ │ │ ├── projections
│ │ │ │ ├── geo.py
│ │ │ │ ├── geo.pyc
│ │ │ │ ├── geo.pyo
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── __init__.pyo
│ │ │ │ ├── polar.py
│ │ │ │ ├── polar.pyc
│ │ │ │ └── polar.pyo
│ │ │ ├── _pylab_helpers.py
│ │ │ ├── _pylab_helpers.pyc
│ │ │ ├── _pylab_helpers.pyo
│ │ │ ├── pylab.py
│ │ │ ├── pylab.pyc
│ │ │ ├── pylab.pyo
│ │ │ ├── pyplot.py
│ │ │ ├── pyplot.pyc
│ │ │ ├── pyplot.pyo
│ │ │ ├── _qhull.pyd
│ │ │ ├── quiver.py
│ │ │ ├── quiver.pyc
│ │ │ ├── quiver.pyo
│ │ │ ├── rcsetup.py
│ │ │ ├── rcsetup.pyc
│ │ │ ├── rcsetup.pyo
│ │ │ ├── sankey.py
│ │ │ ├── sankey.pyc
│ │ │ ├── sankey.pyo
│ │ │ ├── scale.py
│ │ │ ├── scale.pyc
│ │ │ ├── scale.pyo
│ │ │ ├── sphinxext
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── __init__.pyo
│ │ │ │ ├── ipython_console_highlighting.py
│ │ │ │ ├── ipython_console_highlighting.pyc
│ │ │ │ ├── ipython_console_highlighting.pyo
│ │ │ │ ├── ipython_directive.py
│ │ │ │ ├── ipython_directive.pyc
│ │ │ │ ├── ipython_directive.pyo
│ │ │ │ ├── mathmpl.py
│ │ │ │ ├── mathmpl.pyc
│ │ │ │ ├── mathmpl.pyo
│ │ │ │ ├── only_directives.py
│ │ │ │ ├── only_directives.pyc
│ │ │ │ ├── only_directives.pyo
│ │ │ │ ├── plot_directive.py
│ │ │ │ ├── plot_directive.pyc
│ │ │ │ └── plot_directive.pyo
│ │ │ ├── spines.py
│ │ │ ├── spines.pyc
│ │ │ ├── spines.pyo
│ │ │ ├── stackplot.py
│ │ │ ├── stackplot.pyc
│ │ │ ├── stackplot.pyo
│ │ │ ├── streamplot.py
│ │ │ ├── streamplot.pyc
│ │ │ ├── streamplot.pyo
│ │ │ ├── style
│ │ │ │ ├── core.py
│ │ │ │ ├── core.pyc
│ │ │ │ ├── core.pyo
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ └── __init__.pyo
│ │ │ ├── table.py
│ │ │ ├── table.pyc
│ │ │ ├── table.pyo
│ │ │ ├── testing
│ │ │ │ ├── compare.py
│ │ │ │ ├── compare.pyc
│ │ │ │ ├── compare.pyo
│ │ │ │ ├── decorators.py
│ │ │ │ ├── decorators.pyc
│ │ │ │ ├── decorators.pyo
│ │ │ │ ├── image_util.py
│ │ │ │ ├── image_util.pyc
│ │ │ │ ├── image_util.pyo
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── __init__.pyo
│ │ │ │ ├── jpl_units
│ │ │ │ │ ├── Duration.py
│ │ │ │ │ ├── Duration.pyc
│ │ │ │ │ ├── Duration.pyo
│ │ │ │ │ ├── EpochConverter.py
│ │ │ │ │ ├── EpochConverter.pyc
│ │ │ │ │ ├── EpochConverter.pyo
│ │ │ │ │ ├── Epoch.py
│ │ │ │ │ ├── Epoch.pyc
│ │ │ │ │ ├── Epoch.pyo
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── __init__.pyo
│ │ │ │ │ ├── StrConverter.py
│ │ │ │ │ ├── StrConverter.pyc
│ │ │ │ │ ├── StrConverter.pyo
│ │ │ │ │ ├── UnitDblConverter.py
│ │ │ │ │ ├── UnitDblConverter.pyc
│ │ │ │ │ ├── UnitDblConverter.pyo
│ │ │ │ │ ├── UnitDblFormatter.py
│ │ │ │ │ ├── UnitDblFormatter.pyc
│ │ │ │ │ ├── UnitDblFormatter.pyo
│ │ │ │ │ ├── UnitDbl.py
│ │ │ │ │ ├── UnitDbl.pyc
│ │ │ │ │ └── UnitDbl.pyo
│ │ │ │ ├── noseclasses.py
│ │ │ │ ├── noseclasses.pyc
│ │ │ │ └── noseclasses.pyo
│ │ │ ├── texmanager.py
│ │ │ ├── texmanager.pyc
│ │ │ ├── texmanager.pyo
│ │ │ ├── textpath.py
│ │ │ ├── textpath.pyc
│ │ │ ├── textpath.pyo
│ │ │ ├── text.py
│ │ │ ├── text.pyc
│ │ │ ├── text.pyo
│ │ │ ├── ticker.py
│ │ │ ├── ticker.pyc
│ │ │ ├── ticker.pyo
│ │ │ ├── tight_bbox.py
│ │ │ ├── tight_bbox.pyc
│ │ │ ├── tight_bbox.pyo
│ │ │ ├── tight_layout.py
│ │ │ ├── tight_layout.pyc
│ │ │ ├── tight_layout.pyo
│ │ │ ├── transforms.py
│ │ │ ├── transforms.pyc
│ │ │ ├── transforms.pyo
│ │ │ ├── tri
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── __init__.pyo
│ │ │ │ ├── triangulation.py
│ │ │ │ ├── triangulation.pyc
│ │ │ │ ├── triangulation.pyo
│ │ │ │ ├── tricontour.py
│ │ │ │ ├── tricontour.pyc
│ │ │ │ ├── tricontour.pyo
│ │ │ │ ├── trifinder.py
│ │ │ │ ├── trifinder.pyc
│ │ │ │ ├── trifinder.pyo
│ │ │ │ ├── triinterpolate.py
│ │ │ │ ├── triinterpolate.pyc
│ │ │ │ ├── triinterpolate.pyo
│ │ │ │ ├── tripcolor.py
│ │ │ │ ├── tripcolor.pyc
│ │ │ │ ├── tripcolor.pyo
│ │ │ │ ├── triplot.py
│ │ │ │ ├── triplot.pyc
│ │ │ │ ├── triplot.pyo
│ │ │ │ ├── trirefine.py
│ │ │ │ ├── trirefine.pyc
│ │ │ │ ├── trirefine.pyo
│ │ │ │ ├── tritools.py
│ │ │ │ ├── tritools.pyc
│ │ │ │ └── tritools.pyo
│ │ │ ├── _tri.pyd
│ │ │ ├── ttconv.pyd
│ │ │ ├── type1font.py
│ │ │ ├── type1font.pyc
│ │ │ ├── type1font.pyo
│ │ │ ├── units.py
│ │ │ ├── units.pyc
│ │ │ ├── units.pyo
│ │ │ ├── widgets.py
│ │ │ ├── widgets.pyc
│ │ │ ├── widgets.pyo
│ │ │ └── _windowing.pyd
│ │ ├── matplotlib-1.4.3-py2.6.egg-info
│ │ │ ├── dependency_links.txt
│ │ │ ├── namespace_packages.txt
│ │ │ ├── not-zip-safe
│ │ │ ├── PKG-INFO
│ │ │ ├── requires.txt
│ │ │ ├── SOURCES.txt
│ │ │ └── top_level.txt
│ │ ├── matplotlib-1.4.3-py2.6-nspkg.pth
│ │ ├── mpl_toolkits
│ │ │ ├── axes_grid
│ │ │ │ ├── anchored_artists.py
│ │ │ │ ├── anchored_artists.pyc
│ │ │ │ ├── anchored_artists.pyo
│ │ │ │ ├── angle_helper.py
│ │ │ │ ├── angle_helper.pyc
│ │ │ │ ├── angle_helper.pyo
│ │ │ │ ├── axes_divider.py
│ │ │ │ ├── axes_divider.pyc
│ │ │ │ ├── axes_divider.pyo
│ │ │ │ ├── axes_grid.py
│ │ │ │ ├── axes_grid.pyc
│ │ │ │ ├── axes_grid.pyo
│ │ │ │ ├── axes_rgb.py
│ │ │ │ ├── axes_rgb.pyc
│ │ │ │ ├── axes_rgb.pyo
│ │ │ │ ├── axes_size.py
│ │ │ │ ├── axes_size.pyc
│ │ │ │ ├── axes_size.pyo
│ │ │ │ ├── axis_artist.py
│ │ │ │ ├── axis_artist.pyc
│ │ │ │ ├── axis_artist.pyo
│ │ │ │ ├── axislines.py
│ │ │ │ ├── axislines.pyc
│ │ │ │ ├── axislines.pyo
│ │ │ │ ├── axisline_style.py
│ │ │ │ ├── axisline_style.pyc
│ │ │ │ ├── axisline_style.pyo
│ │ │ │ ├── clip_path.py
│ │ │ │ ├── clip_path.pyc
│ │ │ │ ├── clip_path.pyo
│ │ │ │ ├── colorbar.py
│ │ │ │ ├── colorbar.pyc
│ │ │ │ ├── colorbar.pyo
│ │ │ │ ├── floating_axes.py
│ │ │ │ ├── floating_axes.pyc
│ │ │ │ ├── floating_axes.pyo
│ │ │ │ ├── grid_finder.py
│ │ │ │ ├── grid_finder.pyc
│ │ │ │ ├── grid_finder.pyo
│ │ │ │ ├── grid_helper_curvelinear.py
│ │ │ │ ├── grid_helper_curvelinear.pyc
│ │ │ │ ├── grid_helper_curvelinear.pyo
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── __init__.pyo
│ │ │ │ ├── inset_locator.py
│ │ │ │ ├── inset_locator.pyc
│ │ │ │ ├── inset_locator.pyo
│ │ │ │ ├── parasite_axes.py
│ │ │ │ ├── parasite_axes.pyc
│ │ │ │ └── parasite_axes.pyo
│ │ │ ├── axes_grid1
│ │ │ │ ├── anchored_artists.py
│ │ │ │ ├── anchored_artists.pyc
│ │ │ │ ├── anchored_artists.pyo
│ │ │ │ ├── axes_divider.py
│ │ │ │ ├── axes_divider.pyc
│ │ │ │ ├── axes_divider.pyo
│ │ │ │ ├── axes_grid.py
│ │ │ │ ├── axes_grid.pyc
│ │ │ │ ├── axes_grid.pyo
│ │ │ │ ├── axes_rgb.py
│ │ │ │ ├── axes_rgb.pyc
│ │ │ │ ├── axes_rgb.pyo
│ │ │ │ ├── axes_size.py
│ │ │ │ ├── axes_size.pyc
│ │ │ │ ├── axes_size.pyo
│ │ │ │ ├── colorbar.py
│ │ │ │ ├── colorbar.pyc
│ │ │ │ ├── colorbar.pyo
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── __init__.pyo
│ │ │ │ ├── inset_locator.py
│ │ │ │ ├── inset_locator.pyc
│ │ │ │ ├── inset_locator.pyo
│ │ │ │ ├── mpl_axes.py
│ │ │ │ ├── mpl_axes.pyc
│ │ │ │ ├── mpl_axes.pyo
│ │ │ │ ├── parasite_axes.py
│ │ │ │ ├── parasite_axes.pyc
│ │ │ │ └── parasite_axes.pyo
│ │ │ ├── axisartist
│ │ │ │ ├── angle_helper.py
│ │ │ │ ├── angle_helper.pyc
│ │ │ │ ├── angle_helper.pyo
│ │ │ │ ├── axis_artist.py
│ │ │ │ ├── axis_artist.pyc
│ │ │ │ ├── axis_artist.pyo
│ │ │ │ ├── axislines.py
│ │ │ │ ├── axislines.pyc
│ │ │ │ ├── axislines.pyo
│ │ │ │ ├── axisline_style.py
│ │ │ │ ├── axisline_style.pyc
│ │ │ │ ├── axisline_style.pyo
│ │ │ │ ├── clip_path.py
│ │ │ │ ├── clip_path.pyc
│ │ │ │ ├── clip_path.pyo
│ │ │ │ ├── floating_axes.py
│ │ │ │ ├── floating_axes.pyc
│ │ │ │ ├── floating_axes.pyo
│ │ │ │ ├── grid_finder.py
│ │ │ │ ├── grid_finder.pyc
│ │ │ │ ├── grid_finder.pyo
│ │ │ │ ├── grid_helper_curvelinear.py
│ │ │ │ ├── grid_helper_curvelinear.pyc
│ │ │ │ ├── grid_helper_curvelinear.pyo
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ └── __init__.pyo
│ │ │ ├── exceltools.py
│ │ │ ├── exceltools.pyc
│ │ │ ├── exceltools.pyo
│ │ │ ├── gtktools.py
│ │ │ ├── gtktools.pyc
│ │ │ ├── gtktools.pyo
│ │ │ └── mplot3d
│ │ │ ├── art3d.py
│ │ │ ├── art3d.pyc
│ │ │ ├── art3d.pyo
│ │ │ ├── axes3d.py
│ │ │ ├── axes3d.pyc
│ │ │ ├── axes3d.pyo
│ │ │ ├── axis3d.py
│ │ │ ├── axis3d.pyc
│ │ │ ├── axis3d.pyo
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── __init__.pyo
│ │ │ ├── proj3d.py
│ │ │ ├── proj3d.pyc
│ │ │ └── proj3d.pyo
│ │ ├── numpy
│ │ │ ├── add_newdocs.py
│ │ │ ├── add_newdocs.pyc
│ │ │ ├── add_newdocs.pyo
│ │ │ ├── compat
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── __init__.pyo
│ │ │ │ ├── _inspect.py
│ │ │ │ ├── _inspect.pyc
│ │ │ │ ├── _inspect.pyo
│ │ │ │ ├── py3k.py
│ │ │ │ ├── py3k.pyc
│ │ │ │ ├── py3k.pyo
│ │ │ │ ├── setup.py
│ │ │ │ ├── setup.pyc
│ │ │ │ ├── setup.pyo
│ │ │ │ ├── setupscons.py
│ │ │ │ ├── setupscons.pyc
│ │ │ │ └── setupscons.pyo
│ │ │ ├── __config__.py
│ │ │ ├── __config__.pyc
│ │ │ ├── __config__.pyo
│ │ │ ├── core
│ │ │ │ ├── arrayprint.py
│ │ │ │ ├── arrayprint.pyc
│ │ │ │ ├── arrayprint.pyo
│ │ │ │ ├── defchararray.py
│ │ │ │ ├── defchararray.pyc
│ │ │ │ ├── defchararray.pyo
│ │ │ │ ├── _dotblas.pyd
│ │ │ │ ├── fromnumeric.py
│ │ │ │ ├── fromnumeric.pyc
│ │ │ │ ├── fromnumeric.pyo
│ │ │ │ ├── function_base.py
│ │ │ │ ├── function_base.pyc
│ │ │ │ ├── function_base.pyo
│ │ │ │ ├── generate_numpy_api.py
│ │ │ │ ├── generate_numpy_api.pyc
│ │ │ │ ├── generate_numpy_api.pyo
│ │ │ │ ├── getlimits.py
│ │ │ │ ├── getlimits.pyc
│ │ │ │ ├── getlimits.pyo
│ │ │ │ ├── include
│ │ │ │ │ └── numpy
│ │ │ │ │ ├── arrayobject.h
│ │ │ │ │ ├── arrayscalars.h
│ │ │ │ │ ├── halffloat.h
│ │ │ │ │ ├── __multiarray_api.h
│ │ │ │ │ ├── multiarray_api.txt
│ │ │ │ │ ├── ndarrayobject.h
│ │ │ │ │ ├── ndarraytypes.h
│ │ │ │ │ ├── _neighborhood_iterator_imp.h
│ │ │ │ │ ├── noprefix.h
│ │ │ │ │ ├── npy_3kcompat.h
│ │ │ │ │ ├── npy_common.h
│ │ │ │ │ ├── npy_cpu.h
│ │ │ │ │ ├── npy_endian.h
│ │ │ │ │ ├── npy_interrupt.h
│ │ │ │ │ ├── npy_math.h
│ │ │ │ │ ├── npy_os.h
│ │ │ │ │ ├── _numpyconfig.h
│ │ │ │ │ ├── numpyconfig.h
│ │ │ │ │ ├── old_defines.h
│ │ │ │ │ ├── oldnumeric.h
│ │ │ │ │ ├── __ufunc_api.h
│ │ │ │ │ ├── ufunc_api.txt
│ │ │ │ │ ├── ufuncobject.h
│ │ │ │ │ └── utils.h
│ │ │ │ ├── info.py
│ │ │ │ ├── info.pyc
│ │ │ │ ├── info.pyo
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── __init__.pyo
│ │ │ │ ├── _internal.py
│ │ │ │ ├── _internal.pyc
│ │ │ │ ├── _internal.pyo
│ │ │ │ ├── lib
│ │ │ │ │ ├── libnpymath.a
│ │ │ │ │ └── npy-pkg-config
│ │ │ │ │ ├── mlib.ini
│ │ │ │ │ └── npymath.ini
│ │ │ │ ├── machar.py
│ │ │ │ ├── machar.pyc
│ │ │ │ ├── machar.pyo
│ │ │ │ ├── memmap.py
│ │ │ │ ├── memmap.pyc
│ │ │ │ ├── memmap.pyo
│ │ │ │ ├── multiarray.pyd
│ │ │ │ ├── multiarray_tests.pyd
│ │ │ │ ├── _mx_datetime_parser.py
│ │ │ │ ├── _mx_datetime_parser.pyc
│ │ │ │ ├── _mx_datetime_parser.pyo
│ │ │ │ ├── numeric.py
│ │ │ │ ├── numeric.pyc
│ │ │ │ ├── numeric.pyo
│ │ │ │ ├── numerictypes.py
│ │ │ │ ├── numerictypes.pyc
│ │ │ │ ├── numerictypes.pyo
│ │ │ │ ├── records.py
│ │ │ │ ├── records.pyc
│ │ │ │ ├── records.pyo
│ │ │ │ ├── scalarmath.pyd
│ │ │ │ ├── scons_support.py
│ │ │ │ ├── scons_support.pyc
│ │ │ │ ├── scons_support.pyo
│ │ │ │ ├── setup_common.py
│ │ │ │ ├── setup_common.pyc
│ │ │ │ ├── setup_common.pyo
│ │ │ │ ├── setup.py
│ │ │ │ ├── setup.pyc
│ │ │ │ ├── setup.pyo
│ │ │ │ ├── setupscons.py
│ │ │ │ ├── setupscons.pyc
│ │ │ │ ├── setupscons.pyo
│ │ │ │ ├── shape_base.py
│ │ │ │ ├── shape_base.pyc
│ │ │ │ ├── shape_base.pyo
│ │ │ │ ├── _sort.pyd
│ │ │ │ ├── tests
│ │ │ │ │ ├── data
│ │ │ │ │ │ ├── astype_copy.pkl
│ │ │ │ │ │ └── recarray_from_file.fits
│ │ │ │ │ ├── test_api.py
│ │ │ │ │ ├── test_api.pyc
│ │ │ │ │ ├── test_api.pyo
│ │ │ │ │ ├── test_arrayprint.py
│ │ │ │ │ ├── test_arrayprint.pyc
│ │ │ │ │ ├── test_arrayprint.pyo
│ │ │ │ │ ├── test_blasdot.py
│ │ │ │ │ ├── test_blasdot.pyc
│ │ │ │ │ ├── test_blasdot.pyo
│ │ │ │ │ ├── test_datetime.py
│ │ │ │ │ ├── test_datetime.pyc
│ │ │ │ │ ├── test_datetime.pyo
│ │ │ │ │ ├── test_defchararray.py
│ │ │ │ │ ├── test_defchararray.pyc
│ │ │ │ │ ├── test_defchararray.pyo
│ │ │ │ │ ├── test_dtype.py
│ │ │ │ │ ├── test_dtype.pyc
│ │ │ │ │ ├── test_dtype.pyo
│ │ │ │ │ ├── test_einsum.py
│ │ │ │ │ ├── test_einsum.pyc
│ │ │ │ │ ├── test_einsum.pyo
│ │ │ │ │ ├── test_errstate.py
│ │ │ │ │ ├── test_errstate.pyc
│ │ │ │ │ ├── test_errstate.pyo
│ │ │ │ │ ├── test_function_base.py
│ │ │ │ │ ├── test_function_base.pyc
│ │ │ │ │ ├── test_function_base.pyo
│ │ │ │ │ ├── test_getlimits.py
│ │ │ │ │ ├── test_getlimits.pyc
│ │ │ │ │ ├── test_getlimits.pyo
│ │ │ │ │ ├── test_half.py
│ │ │ │ │ ├── test_half.pyc
│ │ │ │ │ ├── test_half.pyo
│ │ │ │ │ ├── test_iterator.py
│ │ │ │ │ ├── test_iterator.pyc
│ │ │ │ │ ├── test_iterator.pyo
│ │ │ │ │ ├── test_machar.py
│ │ │ │ │ ├── test_machar.pyc
│ │ │ │ │ ├── test_machar.pyo
│ │ │ │ │ ├── test_memmap.py
│ │ │ │ │ ├── test_memmap.pyc
│ │ │ │ │ ├── test_memmap.pyo
│ │ │ │ │ ├── test_multiarray.py
│ │ │ │ │ ├── test_multiarray.pyc
│ │ │ │ │ ├── test_multiarray.pyo
│ │ │ │ │ ├── test_numeric.py
│ │ │ │ │ ├── test_numeric.pyc
│ │ │ │ │ ├── test_numeric.pyo
│ │ │ │ │ ├── test_numerictypes.py
│ │ │ │ │ ├── test_numerictypes.pyc
│ │ │ │ │ ├── test_numerictypes.pyo
│ │ │ │ │ ├── test_print.py
│ │ │ │ │ ├── test_print.pyc
│ │ │ │ │ ├── test_print.pyo
│ │ │ │ │ ├── test_records.py
│ │ │ │ │ ├── test_records.pyc
│ │ │ │ │ ├── test_records.pyo
│ │ │ │ │ ├── test_regression.py
│ │ │ │ │ ├── test_regression.pyc
│ │ │ │ │ ├── test_regression.pyo
│ │ │ │ │ ├── test_scalarmath.py
│ │ │ │ │ ├── test_scalarmath.pyc
│ │ │ │ │ ├── test_scalarmath.pyo
│ │ │ │ │ ├── test_shape_base.py
│ │ │ │ │ ├── test_shape_base.pyc
│ │ │ │ │ ├── test_shape_base.pyo
│ │ │ │ │ ├── test_ufunc.py
│ │ │ │ │ ├── test_ufunc.pyc
│ │ │ │ │ ├── test_ufunc.pyo
│ │ │ │ │ ├── test_umath_complex.py
│ │ │ │ │ ├── test_umath_complex.pyc
│ │ │ │ │ ├── test_umath_complex.pyo
│ │ │ │ │ ├── test_umath.py
│ │ │ │ │ ├── test_umath.pyc
│ │ │ │ │ ├── test_umath.pyo
│ │ │ │ │ ├── test_unicode.py
│ │ │ │ │ ├── test_unicode.pyc
│ │ │ │ │ └── test_unicode.pyo
│ │ │ │ ├── umath.pyd
│ │ │ │ └── umath_tests.pyd
│ │ │ ├── ctypeslib.py
│ │ │ ├── ctypeslib.pyc
│ │ │ ├── ctypeslib.pyo
│ │ │ ├── distutils
│ │ │ │ ├── ccompiler.py
│ │ │ │ ├── ccompiler.pyc
│ │ │ │ ├── ccompiler.pyo
│ │ │ │ ├── command
│ │ │ │ │ ├── autodist.py
│ │ │ │ │ ├── autodist.pyc
│ │ │ │ │ ├── autodist.pyo
│ │ │ │ │ ├── bdist_rpm.py
│ │ │ │ │ ├── bdist_rpm.pyc
│ │ │ │ │ ├── bdist_rpm.pyo
│ │ │ │ │ ├── build_clib.py
│ │ │ │ │ ├── build_clib.pyc
│ │ │ │ │ ├── build_clib.pyo
│ │ │ │ │ ├── build_ext.py
│ │ │ │ │ ├── build_ext.pyc
│ │ │ │ │ ├── build_ext.pyo
│ │ │ │ │ ├── build.py
│ │ │ │ │ ├── build.pyc
│ │ │ │ │ ├── build.pyo
│ │ │ │ │ ├── build_py.py
│ │ │ │ │ ├── build_py.pyc
│ │ │ │ │ ├── build_py.pyo
│ │ │ │ │ ├── build_scripts.py
│ │ │ │ │ ├── build_scripts.pyc
│ │ │ │ │ ├── build_scripts.pyo
│ │ │ │ │ ├── build_src.py
│ │ │ │ │ ├── build_src.pyc
│ │ │ │ │ ├── build_src.pyo
│ │ │ │ │ ├── config_compiler.py
│ │ │ │ │ ├── config_compiler.pyc
│ │ │ │ │ ├── config_compiler.pyo
│ │ │ │ │ ├── config.py
│ │ │ │ │ ├── config.pyc
│ │ │ │ │ ├── config.pyo
│ │ │ │ │ ├── develop.py
│ │ │ │ │ ├── develop.pyc
│ │ │ │ │ ├── develop.pyo
│ │ │ │ │ ├── egg_info.py
│ │ │ │ │ ├── egg_info.pyc
│ │ │ │ │ ├── egg_info.pyo
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── __init__.pyo
│ │ │ │ │ ├── install_clib.py
│ │ │ │ │ ├── install_clib.pyc
│ │ │ │ │ ├── install_clib.pyo
│ │ │ │ │ ├── install_data.py
│ │ │ │ │ ├── install_data.pyc
│ │ │ │ │ ├── install_data.pyo
│ │ │ │ │ ├── install_headers.py
│ │ │ │ │ ├── install_headers.pyc
│ │ │ │ │ ├── install_headers.pyo
│ │ │ │ │ ├── install.py
│ │ │ │ │ ├── install.pyc
│ │ │ │ │ ├── install.pyo
│ │ │ │ │ ├── scons.py
│ │ │ │ │ ├── scons.pyc
│ │ │ │ │ ├── scons.pyo
│ │ │ │ │ ├── sdist.py
│ │ │ │ │ ├── sdist.pyc
│ │ │ │ │ └── sdist.pyo
│ │ │ │ ├── compat.py
│ │ │ │ ├── compat.pyc
│ │ │ │ ├── compat.pyo
│ │ │ │ ├── __config__.py
│ │ │ │ ├── __config__.pyc
│ │ │ │ ├── __config__.pyo
│ │ │ │ ├── conv_template.py
│ │ │ │ ├── conv_template.pyc
│ │ │ │ ├── conv_template.pyo
│ │ │ │ ├── core.py
│ │ │ │ ├── core.pyc
│ │ │ │ ├── core.pyo
│ │ │ │ ├── cpuinfo.py
│ │ │ │ ├── cpuinfo.pyc
│ │ │ │ ├── cpuinfo.pyo
│ │ │ │ ├── environment.py
│ │ │ │ ├── environment.pyc
│ │ │ │ ├── environment.pyo
│ │ │ │ ├── exec_command.py
│ │ │ │ ├── exec_command.pyc
│ │ │ │ ├── exec_command.pyo
│ │ │ │ ├── extension.py
│ │ │ │ ├── extension.pyc
│ │ │ │ ├── extension.pyo
│ │ │ │ ├── fcompiler
│ │ │ │ │ ├── absoft.py
│ │ │ │ │ ├── absoft.pyc
│ │ │ │ │ ├── absoft.pyo
│ │ │ │ │ ├── compaq.py
│ │ │ │ │ ├── compaq.pyc
│ │ │ │ │ ├── compaq.pyo
│ │ │ │ │ ├── g95.py
│ │ │ │ │ ├── g95.pyc
│ │ │ │ │ ├── g95.pyo
│ │ │ │ │ ├── gnu.py
│ │ │ │ │ ├── gnu.pyc
│ │ │ │ │ ├── gnu.pyo
│ │ │ │ │ ├── hpux.py
│ │ │ │ │ ├── hpux.pyc
│ │ │ │ │ ├── hpux.pyo
│ │ │ │ │ ├── ibm.py
│ │ │ │ │ ├── ibm.pyc
│ │ │ │ │ ├── ibm.pyo
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ ├── __init__.pyo
│ │ │ │ │ ├── intel.py
│ │ │ │ │ ├── intel.pyc
│ │ │ │ │ ├── intel.pyo
│ │ │ │ │ ├── lahey.py
│ │ │ │ │ ├── lahey.pyc
│ │ │ │ │ ├── lahey.pyo
│ │ │ │ │ ├── mips.py
│ │ │ │ │ ├── mips.pyc
│ │ │ │ │ ├── mips.pyo
│ │ │ │ │ ├── nag.py
│ │ │ │ │ ├── nag.pyc
│ │ │ │ │ ├── nag.pyo
│ │ │ │ │ ├── none.py
│ │ │ │ │ ├── none.pyc
│ │ │ │ │ ├── none.pyo
│ │ │ │ │ ├── pathf95.py
│ │ │ │ │ ├── pathf95.pyc
│ │ │ │ │ ├── pathf95.pyo
│ │ │ │ │ ├── pg.py
│ │ │ │ │ ├── pg.pyc
│ │ │ │ │ ├── pg.pyo
│ │ │ │ │ ├── sun.py
│ │ │ │ │ ├── sun.pyc
│ │ │ │ │ ├── sun.pyo
│ │ │ │ │ ├── vast.py
│ │ │ │ │ ├── vast.pyc
│ │ │ │ │ └── vast.pyo
│ │ │ │ ├── from_template.py
│ │ │ │ ├── from_template.pyc
│ │ │ │ ├── from_template.pyo
│ │ │ │ ├── info.py
│ │ │ │ ├── info.pyc
│ │ │ │ ├── info.pyo
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── __init__.pyo
│ │ │ │ ├── intelccompiler.py
│ │ │ │ ├── intelccompiler.pyc
│ │ │ │ ├── intelccompiler.pyo
│ │ │ │ ├── interactive.py
│ │ │ │ ├── interactive.pyc
│ │ │ │ ├── interactive.pyo
│ │ │ │ ├── lib2def.py
│ │ │ │ ├── lib2def.pyc
│ │ │ │ ├── lib2def.pyo
│ │ │ │ ├── line_endings.py
│ │ │ │ ├── line_endings.pyc
│ │ │ │ ├── line_endings.pyo
│ │ │ │ ├── log.py
│ │ │ │ ├── log.pyc
│ │ │ │ ├── log.pyo
│ │ │ │ ├── mingw
│ │ │ │ │ └── gfortran_vs2003_hack.c
│ │ │ │ ├── mingw32ccompiler.py
│ │ │ │ ├── mingw32ccompiler.pyc
│ │ │ │ ├── mingw32ccompiler.pyo
│ │ │ │ ├── misc_util.py
│ │ │ │ ├── misc_util.pyc
│ │ │ │ ├── misc_util.pyo
│ │ │ │ ├── npy_pkg_config.py
│ │ │ │ ├── npy_pkg_config.pyc
│ │ │ │ ├── npy_pkg_config.pyo
│ │ │ │ ├── numpy_distribution.py
│ │ │ │ ├── numpy_distribution.pyc
│ │ │ │ ├── numpy_distribution.pyo
│ │ │ │ ├── pathccompiler.py
│ │ │ │ ├── pathccompiler.pyc
│ │ │ │ ├── pathccompiler.pyo
│ │ │ │ ├── setup.py
│ │ │ │ ├── setup.pyc
│ │ │ │ ├── setup.pyo
│ │ │ │ ├── setupscons.py
│ │ │ │ ├── setupscons.pyc
│ │ │ │ ├── setupscons.pyo
│ │ │ │ ├── system_info.py
│ │ │ │ ├── system_info.pyc
│ │ │ │ ├── system_info.pyo
│ │ │ │ ├── tests
│ │ │ │ │ ├── f2py_ext
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ │ ├── __init__.pyo
│ │ │ │ │ │ ├── setup.py
│ │ │ │ │ │ ├── setup.pyc
│ │ │ │ │ │ ├── setup.pyo
│ │ │ │ │ │ ├── src
│ │ │ │ │ │ │ ├── fib1.f
│ │ │ │ │ │ │ └── fib2.pyf
│ │ │ │ │ │ └── tests
│ │ │ │ │ │ ├── test_fib2.py
│ │ │ │ │ │ ├── test_fib2.pyc
│ │ │ │ │ │ └── test_fib2.pyo
│ │ │ │ │ ├── f2py_f90_ext
│ │ │ │ │ │ ├── include
│ │ │ │ │ │ │ └── body.f90
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ │ ├── __init__.pyo
│ │ │ │ │ │ ├── setup.py
│ │ │ │ │ │ ├── setup.pyc
│ │ │ │ │ │ ├── setup.pyo
│ │ │ │ │ │ ├── src
│ │ │ │ │ │ │ └── foo_free.f90
│ │ │ │ │ │ └── tests
│ │ │ │ │ │ ├── test_foo.py
│ │ │ │ │ │ ├── test_foo.pyc
│ │ │ │ │ │ └── test_foo.pyo
│ │ │ │ │ ├── gen_ext
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ │ ├── __init__.pyo
│ │ │ │ │ │ ├── setup.py
│ │ │ │ │ │ ├── setup.pyc
│ │ │ │ │ │ ├── setup.pyo
│ │ │ │ │ │ └── tests
│ │ │ │ │ │ ├── test_fib3.py
│ │ │ │ │ │ ├── test_fib3.pyc
│ │ │ │ │ │ └── test_fib3.pyo
│ │ │ │ │ ├── pyrex_ext
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ │ ├── __init__.pyo
│ │ │ │ │ │ ├── primes.pyx
│ │ │ │ │ │ ├── setup.py
│ │ │ │ │ │ ├── setup.pyc
│ │ │ │ │ │ ├── setup.pyo
│ │ │ │ │ │ └── tests
│ │ │ │ │ │ ├── test_primes.py
│ │ │ │ │ │ ├── test_primes.pyc
│ │ │ │ │ │ └── test_primes.pyo
│ │ │ │ │ ├── setup.py
│ │ │ │ │ ├── setup.pyc
│ │ │ │ │ ├── setup.pyo
│ │ │ │ │ ├── swig_ext
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __init__.pyc
│ │ │ │ │ │ ├── __init__.pyo
│ │ │ │ │ │ ├── setup.py
│ │ │ │ │ │ ├── setup.pyc
│ │ │ │ │ │ ├── setup.pyo
│ │ │ │ │ │ ├── src
│ │ │ │ │ │ │ ├── example.c
│ │ │ │ │ │ │ ├── example.i
│ │ │ │ │ │ │ ├── zoo.cc
│ │ │ │ │ │ │ ├── zoo.h
│ │ │ │ │ │ │ └── zoo.i
│ │ │ │ │ │ └── tests
│ │ │ │ │ │ ├── test_example2.py
│ │ │ │ │ │ ├── test_example2.pyc
│ │ │ │ │ │ ├── test_example2.pyo
│ │ │ │ │ │ ├── test_example.py
│ │ │ │ │ │ ├── test_example.pyc
│ │ │ │ │ │ └── test_example.pyo
│ │ │ │ │ ├── test_fcompiler_gnu.py
│ │ │ │ │ ├── test_fcompiler_gnu.pyc
│ │ │ │ │ ├── test_fcompiler_gnu.pyo
│ │ │ │ │ ├── test_fcompiler_intel.py
│ │ │ │ │ ├── test_fcompiler_intel.pyc
│ │ │ │ │ ├── test_fcompiler_intel.pyo
│ │ │ │ │ ├── test_misc_util.py
│ │ │ │ │ ├── test_misc_util.pyc
│ │ │ │ │ ├── test_misc_util.pyo
│ │ │ │ │ ├── test_npy_pkg_config.py
│ │ │ │ │ ├── test_npy_pkg_config.pyc
│ │ │ │ │ └── test_npy_pkg_config.pyo
│ │ │ │ ├── unixccompiler.py
│ │ │ │ ├── unixccompiler.pyc
│ │ │ │ ├── unixccompiler.pyo
│ │ │ │ ├── __version__.py
│ │ │ │ ├── __version__.pyc
│ │ │ │ └── __version__.pyo
│ │ │ ├── doc
│ │ │ │ ├── basics.py
│ │ │ │ ├── basics.pyc
│ │ │ │ ├── basics.pyo
│ │ │ │ ├── broadcasting.py
│ │ │ │ ├── broadcasting.pyc
│ │ │ │ ├── broadcasting.pyo
│ │ │ │ ├── byteswapping.py
│ │ │ │ ├── byteswapping.pyc
│ │ │ │ ├── byteswapping.pyo
│ │ │ │ ├── constants.py
│ │ │ │ ├── constants.pyc
│ │ │ │ ├── constants.pyo
│ │ │ │ ├── creation.py
│ │ │ │ ├── creation.pyc
│ │ │ │ ├── creation.pyo
│ │ │ │ ├── glossary.py
│ │ │ │ ├── glossary.pyc
│ │ │ │ ├── glossary.pyo
│ │ │ │ ├── howtofind.py
│ │ │ │ ├── howtofind.pyc
│ │ │ │ ├── howtofind.pyo
│ │ │ │ ├── indexing.py
│ │ │ │ ├── indexing.pyc
│ │ │ │ ├── indexing.pyo
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── __init__.pyo
│ │ │ │ ├── internals.py
│ │ │ │ ├── internals.pyc
│ │ │ │ ├── internals.pyo
│ │ │ │ ├── io.py
│ │ │ │ ├── io.pyc
│ │ │ │ ├── io.pyo
│ │ │ │ ├── jargon.py
│ │ │ │ ├── jargon.pyc
│ │ │ │ ├── jargon.pyo
│ │ │ │ ├── methods_vs_functions.py
│ │ │ │ ├── methods_vs_functions.pyc
│ │ │ │ ├── methods_vs_functions.pyo
│ │ │ │ ├── misc.py
│ │ │ │ ├── misc.pyc
│ │ │ │ ├── misc.pyo
│ │ │ │ ├── performance.py
│ │ │ │ ├── performance.pyc
│ │ │ │ ├── performance.pyo
│ │ │ │ ├── structured_arrays.py
│ │ │ │ ├── structured_arrays.pyc
│ │ │ │ ├── structured_arrays.pyo
│ │ │ │ ├── subclassing.py
│ │ │ │ ├── subclassing.pyc
│ │ │ │ ├── subclassing.pyo
│ │ │ │ ├── ufuncs.py
│ │ │ │ ├── ufuncs.pyc
│ │ │ │ └── ufuncs.pyo
│ │ │ ├── dual.py
│ │ │ ├── dual.pyc
│ │ │ ├── dual.pyo
│ │ │ ├── f2py
│ │ │ │ ├── auxfuncs.py
│ │ │ │ ├── auxfuncs.pyc
│ │ │ │ ├── auxfuncs.pyo
│ │ │ │ ├── capi_maps.py
│ │ │ │ ├── capi_maps.pyc
│ │ │ │ ├── capi_maps.pyo
│ │ │ │ ├── cb_rules.py
│ │ │ │ ├── cb_rules.pyc
│ │ │ │ ├── cb_rules.pyo
│ │ │ │ ├── cfuncs.py
│ │ │ │ ├── cfuncs.pyc
│ │ │ │ ├── cfuncs.pyo
│ │ │ │ ├── common_rules.py
│ │ │ │ ├── common_rules.pyc
│ │ │ │ ├── common_rules.pyo
│ │ │ │ ├── crackfortran.py
│ │ │ │ ├── crackfortran.pyc
│ │ │ │ ├── crackfortran.pyo
│ │ │ │ ├── diagnose.py
│ │ │ │ ├── diagnose.pyc
│ │ │ │ ├── diagnose.pyo
│ │ │ │ ├── docs
│ │ │ │ │ ├── default.css
│ │ │ │ │ ├── docutils.conf
│ │ │ │ │ ├── FAQ.txt
│ │ │ │ │ ├── hello.f
│ │ │ │ │ ├── HISTORY.txt
│ │ │ │ │ ├── OLDNEWS.txt
│ │ │ │ │ ├── pyforttest.pyf
│ │ │ │ │ ├── pytest.py
│ │ │ │ │ ├── pytest.pyc
│ │ │ │ │ ├── pytest.pyo
│ │ │ │ │ ├── README.txt
│ │ │ │ │ ├── simple.f
│ │ │ │ │ ├── simple_session.dat
│ │ │ │ │ ├── TESTING.txt
│ │ │ │ │ ├── THANKS.txt
│ │ │ │ │ └── usersguide
│ │ │ │ │ ├── allocarr.f90
│ │ │ │ │ ├── allocarr_session.dat
│ │ │ │ │ ├── array.f
│ │ │ │ │ ├── array_session.dat
│ │ │ │ │ ├── calculate.f
│ │ │ │ │ ├── calculate_session.dat
│ │ │ │ │ ├── callback2.pyf
│ │ │ │ │ ├── callback.f
│ │ │ │ │ ├── callback_session.dat
│ │ │ │ │ ├── common.f
│ │ │ │ │ ├── common_session.dat
│ │ │ │ │ ├── compile_session.dat
│ │ │ │ │ ├── default.css
│ │ │ │ │ ├── docutils.conf
│ │ │ │ │ ├── extcallback.f
│ │ │ │ │ ├── extcallback_session.dat
│ │ │ │ │ ├── fib1.f
│ │ │ │ │ ├── fib1.pyf
│ │ │ │ │ ├── fib2.pyf
│ │ │ │ │ ├── fib3.f
│ │ │ │ │ ├── ftype.f
│ │ │ │ │ ├── ftype_session.dat
│ │ │ │ │ ├── index.txt
│ │ │ │ │ ├── moddata.f90
│ │ │ │ │ ├── moddata_session.dat
│ │ │ │ │ ├── run_main_session.dat
│ │ │ │ │ ├── scalar.f
│ │ │ │ │ ├── scalar_session.dat
│ │ │ │ │ ├── setup_example.py
│ │ │ │ │ ├── setup_example.pyc
│ │ │ │ │ ├── setup_example.pyo
│ │ │ │ │ ├── spam.pyf
│ │ │ │ │ ├── spam_session.dat
│ │ │ │ │ ├── string.f
│ │ │ │ │ ├── string_session.dat
│ │ │ │ │ ├── var.pyf
│ │ │ │ │ └── var_session.dat
│ │ │ │ ├── f2py.1
│ │ │ │ ├── f2py2e.py
│ │ │ │ ├── f2py2e.pyc
│ │ │ │ ├── f2py2e.pyo
│ │ │ │ ├── f2py_testing.py
│ │ │ │ ├── f2py_testing.pyc
│ │ │ │ ├── f2py_testing.pyo
│ │ │ │ ├── f90mod_rules.py
│ │ │ │ ├── f90mod_rules.pyc
│ │ │ │ ├── f90mod_rules.pyo
│ │ │ │ ├── func2subr.py
│ │ │ │ ├── func2subr.pyc
│ │ │ │ ├── func2subr.pyo
│ │ │ │ ├── info.py
│ │ │ │ ├── info.pyc
│ │ │ │ ├── info.pyo
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── __init__.pyo
│ │ │ │ ├── rules.py
│ │ │ │ ├── rules.pyc
│ │ │ │ ├── rules.pyo
│ │ │ │ ├── setup.py
│ │ │ │ ├── setup.pyc
│ │ │ │ ├── setup.pyo
│ │ │ │ ├── setupscons.py
│ │ │ │ ├── setupscons.pyc
│ │ │ │ ├── setupscons.pyo
│ │ │ │ ├── src
│ │ │ │ │ ├── fortranobject.c
│ │ │ │ │ └── fortranobject.h
│ │ │ │ ├── tests
│ │ │ │ │ ├── src
│ │ │ │ │ │ ├── array_from_pyobj
│ │ │ │ │ │ │ └── wrapmodule.c
│ │ │ │ │ │ ├── assumed_shape
│ │ │ │ │ │ │ ├── foo_free.f90
│ │ │ │ │ │ │ ├── foo_use.f90
│ │ │ │ │ │ │ └── precision.f90
│ │ │ │ │ │ ├── kind
│ │ │ │ │ │ │ └── foo.f90
│ │ │ │ │ │ ├── mixed
│ │ │ │ │ │ │ ├── foo.f
│ │ │ │ │ │ │ ├── foo_fixed.f90
│ │ │ │ │ │ │ └── foo_free.f90
│ │ │ │ │ │ └── size
│ │ │ │ │ │ └── foo.f90
│ │ │ │ │ ├── test_array_from_pyobj.py
│ │ │ │ │ ├── test_array_from_pyobj.pyc
│ │ │ │ │ ├── test_array_from_pyobj.pyo
│ │ │ │ │ ├── test_assumed_shape.py
│ │ │ │ │ ├── test_assumed_shape.pyc
│ │ │ │ │ ├── test_assumed_shape.pyo
│ │ │ │ │ ├── test_callback.py
│ │ │ │ │ ├── test_callback.pyc
│ │ │ │ │ ├── test_callback.pyo
│ │ │ │ │ ├── test_kind.py
│ │ │ │ │ ├── test_kind.pyc
│ │ │ │ │ ├── test_kind.pyo
│ │ │ │ │ ├── test_mixed.py
│ │ │ │ │ ├── test_mixed.pyc
│ │ │ │ │ ├── test_mixed.pyo
│ │ │ │ │ ├── test_return_character.py
│ │ │ │ │ ├── test_return_character.pyc
│ │ │ │ │ ├── test_return_character.pyo
│ │ │ │ │ ├── test_return_complex.py
│ │ │ │ │ ├── test_return_complex.pyc
│ │ │ │ │ ├── test_return_complex.pyo
│ │ │ │ │ ├── test_return_integer.py
│ │ │ │ │ ├── test_return_integer.pyc
│ │ │ │ │ ├── test_return_integer.pyo
│ │ │ │ │ ├── test_return_logical.py
│ │ │ │ │ ├── test_return_logical.pyc
│ │ │ │ │ ├── test_return_logical.pyo
│ │ │ │ │ ├── test_return_real.py
│ │ │ │ │ ├── test_return_real.pyc
│ │ │ │ │ ├── test_return_real.pyo
│ │ │ │ │ ├── test_size.py
│ │ │ │ │ ├── test_size.pyc
│ │ │ │ │ ├── test_size.pyo
│ │ │ │ │ ├── util.py
│ │ │ │ │ ├── util.pyc
│ │ │ │ │ └── util.pyo
│ │ │ │ ├── use_rules.py
│ │ │ │ ├── use_rules.pyc
│ │ │ │ ├── use_rules.pyo
│ │ │ │ ├── __version__.py
│ │ │ │ ├── __version__.pyc
│ │ │ │ └── __version__.pyo
│ │ │ ├── fft
│ │ │ │ ├── fftpack_lite.pyd
│ │ │ │ ├── fftpack.py
│ │ │ │ ├── fftpack.pyc
│ │ │ │ ├── fftpack.pyo
│ │ │ │ ├── helper.py
│ │ │ │ ├── helper.pyc
│ │ │ │ ├── helper.pyo
│ │ │ │ ├── info.py
│ │ │ │ ├── info.pyc
│ │ │ │ ├── info.pyo
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── __init__.pyo
│ │ │ │ ├── setup.py
│ │ │ │ ├── setup.pyc
│ │ │ │ ├── setup.pyo
│ │ │ │ ├── setupscons.py
│ │ │ │ ├── setupscons.pyc
│ │ │ │ ├── setupscons.pyo
│ │ │ │ └── tests
│ │ │ │ ├── test_fftpack.py
│ │ │ │ ├── test_fftpack.pyc
│ │ │ │ ├── test_fftpack.pyo
│ │ │ │ ├── test_helper.py
│ │ │ │ ├── test_helper.pyc
│ │ │ │ └── test_helper.pyo
│ │ │ ├── _import_tools.py
│ │ │ ├── _import_tools.pyc
│ │ │ ├── _import_tools.pyo
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ ├── __init__.pyo
│ │ │ ├── lib
│ │ │ │ ├── arraysetops.py
│ │ │ │ ├── arraysetops.pyc
│ │ │ │ ├── arraysetops.pyo
│ │ │ │ ├── arrayterator.py
│ │ │ │ ├── arrayterator.pyc
│ │ │ │ ├── arrayterator.pyo
│ │ │ │ ├── benchmarks
│ │ │ │ │ ├── benchmark.py
│ │ │ │ │ ├── benchmark.pyc
│ │ │ │ │ ├── benchmark.pyo
│ │ │ │ │ ├── casting.py
│ │ │ │ │ ├── casting.pyc
│ │ │ │ │ ├── casting.pyo
│ │ │ │ │ ├── creating.py
│ │ │ │ │ ├── creating.pyc
│ │ │ │ │ ├── creating.pyo
│ │ │ │ │ ├── simpleindex.py
│ │ │ │ │ ├── simpleindex.pyc
│ │ │ │ │ ├── simpleindex.pyo
│ │ │ │ │ ├── sorting.py
│ │ │ │ │ ├── sorting.pyc
│ │ │ │ │ └── sorting.pyo
│ │ │ │ ├── _compiled_base.pyd
│ │ │ │ ├── _datasource.py
│ │ │ │ ├── _datasource.pyc
│ │ │ │ ├── _datasource.pyo
│ │ │ │ ├── financial.py
│ │ │ │ ├── financial.pyc
│ │ │ │ ├── financial.pyo
│ │ │ │ ├── format.py
│ │ │ │ ├── format.pyc
│ │ │ │ ├── format.pyo
│ │ │ │ ├── function_base.py
│ │ │ │ ├── function_base.pyc
│ │ │ │ ├── function_base.pyo
│ │ │ │ ├── index_tricks.py
│ │ │ │ ├── index_tricks.pyc
│ │ │ │ ├── index_tricks.pyo
│ │ │ │ ├── info.py
│ │ │ │ ├── info.pyc
│ │ │ │ ├── info.pyo
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── __init__.pyo
│ │ │ │ ├── _iotools.py
│ │ │ │ ├── _iotools.pyc
│ │ │ │ ├── _iotools.pyo
│ │ │ │ ├── npyio.py
│ │ │ │ ├── npyio.pyc
│ │ │ │ ├── npyio.pyo
│ │ │ │ ├── polynomial.py
│ │ │ │ ├── polynomial.pyc
│ │ │ │ ├── polynomial.pyo
│ │ │ │ ├── recfunctions.py
│ │ │ │ ├── recfunctions.pyc
│ │ │ │ ├── recfunctions.pyo
│ │ │ │ ├── scimath.py
│ │ │ │ ├── scimath.pyc
│ │ │ │ ├── scimath.pyo
│ │ │ │ ├── setup.py
│ │ │ │ ├── setup.pyc
│ │ │ │ ├── setup.pyo
│ │ │ │ ├── setupscons.py
│ │ │ │ ├── setupscons.pyc
│ │ │ │ ├── setupscons.pyo
│ │ │ │ ├── shape_base.py
│ │ │ │ ├── shape_base.pyc
│ │ │ │ ├── shape_base.pyo
│ │ │ │ ├── stride_tricks.py
│ │ │ │ ├── stride_tricks.pyc
│ │ │ │ ├── stride_tricks.pyo
│ │ │ │ ├── tests
│ │ │ │ │ ├── test_arraysetops.py
│ │ │ │ │ ├── test_arraysetops.pyc
│ │ │ │ │ ├── test_arraysetops.pyo
│ │ │ │ │ ├── test_arrayterator.py
│ │ │ │ │ ├── test_arrayterator.pyc
│ │ │ │ │ ├── test_arrayterator.pyo
│ │ │ │ │ ├── test__datasource.py
│ │ │ │ │ ├── test__datasource.pyc
│ │ │ │ │ ├── test__datasource.pyo
│ │ │ │ │ ├── test_financial.py
│ │ │ │ │ ├── test_financial.pyc
│ │ │ │ │ ├── test_financial.pyo
│ │ │ │ │ ├── test_format.py
│ │ │ │ │ ├── test_format.pyc
│ │ │ │ │ ├── test_format.pyo
│ │ │ │ │ ├── test_function_base.py
│ │ │ │ │ ├── test_function_base.pyc
│ │ │ │ │ ├── test_function_base.pyo
│ │ │ │ │ ├── test_index_tricks.py
│ │ │ │ │ ├── test_index_tricks.pyc
│ │ │ │ │ ├── test_index_tricks.pyo
│ │ │ │ │ ├── test_io.py
│ │ │ │ │ ├── test_io.pyc
│ │ │ │ │ ├── test_io.pyo
│ │ │ │ │ ├── test__iotools.py
│ │ │ │ │ ├── test__iotools.pyc
│ │ │ │ │ ├── test__iotools.pyo
│ │ │ │ │ ├── test_polynomial.py
│ │ │ │ │ ├── test_polynomial.pyc
│ │ │ │ │ ├── test_polynomial.pyo
│ │ │ │ │ ├── test_recfunctions.py
│ │ │ │ │ ├── test_recfunctions.pyc
│ │ │ │ │ ├── test_recfunctions.pyo
│ │ │ │ │ ├── test_regression.py
│ │ │ │ │ ├── test_regression.pyc
│ │ │ │ │ ├── test_regression.pyo
│ │ │ │ │ ├── test_shape_base.py
│ │ │ │ │ ├── test_shape_base.pyc
│ │ │ │ │ ├── test_shape_base.pyo
│ │ │ │ │ ├── test_stride_tricks.py
│ │ │ │ │ ├── test_stride_tricks.pyc
│ │ │ │ │ ├── test_stride_tricks.pyo
│ │ │ │ │ ├── test_twodim_base.py
│ │ │ │ │ ├── test_twodim_base.pyc
│ │ │ │ │ ├── test_twodim_base.pyo
│ │ │ │ │ ├── test_type_check.py
│ │ │ │ │ ├── test_type_check.pyc
│ │ │ │ │ ├── test_type_check.pyo
│ │ │ │ │ ├── test_ufunclike.py
│ │ │ │ │ ├── test_ufunclike.pyc
│ │ │ │ │ ├── test_ufunclike.pyo
│ │ │ │ │ ├── test_utils.py
│ │ │ │ │ ├── test_utils.pyc
│ │ │ │ │ └── test_utils.pyo
│ │ │ │ ├── twodim_base.py
│ │ │ │ ├── twodim_base.pyc
│ │ │ │ ├── twodim_base.pyo
│ │ │ │ ├── type_check.py
│ │ │ │ ├── type_check.pyc
│ │ │ │ ├── type_check.pyo
│ │ │ │ ├── ufunclike.py
│ │ │ │ ├── ufunclike.pyc
│ │ │ │ ├── ufunclike.pyo
│ │ │ │ ├── user_array.py
│ │ │ │ ├── user_array.pyc
│ │ │ │ ├── user_array.pyo
│ │ │ │ ├── utils.py
│ │ │ │ ├── utils.pyc
│ │ │ │ └── utils.pyo
│ │ │ ├── linalg
│ │ │ │ ├── info.py
│ │ │ │ ├── info.pyc
│ │ │ │ ├── info.pyo
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── __init__.pyo
│ │ │ │ ├── lapack_lite.pyd
│ │ │ │ ├── linalg.py
│ │ │ │ ├── linalg.pyc
│ │ │ │ ├── linalg.pyo
│ │ │ │ ├── setup.py
│ │ │ │ ├── setup.pyc
│ │ │ │ ├── setup.pyo
│ │ │ │ ├── setupscons.py
│ │ │ │ ├── setupscons.pyc
│ │ │ │ ├── setupscons.pyo
│ │ │ │ └── tests
│ │ │ │ ├── test_build.py
│ │ │ │ ├── test_build.pyc
│ │ │ │ ├── test_build.pyo
│ │ │ │ ├── test_linalg.py
│ │ │ │ ├── test_linalg.pyc
│ │ │ │ ├── test_linalg.pyo
│ │ │ │ ├── test_regression.py
│ │ │ │ ├── test_regression.pyc
│ │ │ │ └── test_regression.pyo
│ │ │ ├── ma
│ │ │ │ ├── bench.py
│ │ │ │ ├── bench.pyc
│ │ │ │ ├── bench.pyo
│ │ │ │ ├── core.py
│ │ │ │ ├── core.pyc
│ │ │ │ ├── core.pyo
│ │ │ │ ├── extras.py
│ │ │ │ ├── extras.pyc
│ │ │ │ ├── extras.pyo
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── __init__.pyo
│ │ │ │ ├── mrecords.py
│ │ │ │ ├── mrecords.pyc
│ │ │ │ ├── mrecords.pyo
│ │ │ │ ├── setup.py
│ │ │ │ ├── setup.pyc
│ │ │ │ ├── setup.pyo
│ │ │ │ ├── setupscons.py
│ │ │ │ ├── setupscons.pyc
│ │ │ │ ├── setupscons.pyo
│ │ │ │ ├── tests
│ │ │ │ │ ├── test_core.py
│ │ │ │ │ ├── test_core.pyc
│ │ │ │ │ ├── test_core.pyo
│ │ │ │ │ ├── test_extras.py
│ │ │ │ │ ├── test_extras.pyc
│ │ │ │ │ ├── test_extras.pyo
│ │ │ │ │ ├── test_mrecords.py
│ │ │ │ │ ├── test_mrecords.pyc
│ │ │ │ │ ├── test_mrecords.pyo
│ │ │ │ │ ├── test_old_ma.py
│ │ │ │ │ ├── test_old_ma.pyc
│ │ │ │ │ ├── test_old_ma.pyo
│ │ │ │ │ ├── test_regression.py
│ │ │ │ │ ├── test_regression.pyc
│ │ │ │ │ ├── test_regression.pyo
│ │ │ │ │ ├── test_subclassing.py
│ │ │ │ │ ├── test_subclassing.pyc
│ │ │ │ │ └── test_subclassing.pyo
│ │ │ │ ├── testutils.py
│ │ │ │ ├── testutils.pyc
│ │ │ │ ├── testutils.pyo
│ │ │ │ ├── timer_comparison.py
│ │ │ │ ├── timer_comparison.pyc
│ │ │ │ ├── timer_comparison.pyo
│ │ │ │ ├── version.py
│ │ │ │ ├── version.pyc
│ │ │ │ └── version.pyo
│ │ │ ├── matlib.py
│ │ │ ├── matlib.pyc
│ │ │ ├── matlib.pyo
│ │ │ ├── matrixlib
│ │ │ │ ├── defmatrix.py
│ │ │ │ ├── defmatrix.pyc
│ │ │ │ ├── defmatrix.pyo
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── __init__.pyo
│ │ │ │ ├── setup.py
│ │ │ │ ├── setup.pyc
│ │ │ │ ├── setup.pyo
│ │ │ │ ├── setupscons.py
│ │ │ │ ├── setupscons.pyc
│ │ │ │ ├── setupscons.pyo
│ │ │ │ └── tests
│ │ │ │ ├── test_defmatrix.py
│ │ │ │ ├── test_defmatrix.pyc
│ │ │ │ ├── test_defmatrix.pyo
│ │ │ │ ├── test_multiarray.py
│ │ │ │ ├── test_multiarray.pyc
│ │ │ │ ├── test_multiarray.pyo
│ │ │ │ ├── test_numeric.py
│ │ │ │ ├── test_numeric.pyc
│ │ │ │ ├── test_numeric.pyo
│ │ │ │ ├── test_regression.py
│ │ │ │ ├── test_regression.pyc
│ │ │ │ └── test_regression.pyo
│ │ │ ├── numarray
│ │ │ │ ├── alter_code1.py
│ │ │ │ ├── alter_code1.pyc
│ │ │ │ ├── alter_code1.pyo
│ │ │ │ ├── alter_code2.py
│ │ │ │ ├── alter_code2.pyc
│ │ │ │ ├── alter_code2.pyo
│ │ │ │ ├── _capi.pyd
│ │ │ │ ├── compat.py
│ │ │ │ ├── compat.pyc
│ │ │ │ ├── compat.pyo
│ │ │ │ ├── convolve.py
│ │ │ │ ├── convolve.pyc
│ │ │ │ ├── convolve.pyo
│ │ │ │ ├── fft.py
│ │ │ │ ├── fft.pyc
│ │ │ │ ├── fft.pyo
│ │ │ │ ├── functions.py
│ │ │ │ ├── functions.pyc
│ │ │ │ ├── functions.pyo
│ │ │ │ ├── image.py
│ │ │ │ ├── image.pyc
│ │ │ │ ├── image.pyo
│ │ │ │ ├── include
│ │ │ │ │ └── numpy
│ │ │ │ │ ├── arraybase.h
│ │ │ │ │ ├── cfunc.h
│ │ │ │ │ ├── ieeespecial.h
│ │ │ │ │ ├── libnumarray.h
│ │ │ │ │ ├── numcomplex.h
│ │ │ │ │ └── nummacro.h
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── __init__.pyo
│ │ │ │ ├── linear_algebra.py
│ │ │ │ ├── linear_algebra.pyc
│ │ │ │ ├── linear_algebra.pyo
│ │ │ │ ├── ma.py
│ │ │ │ ├── ma.pyc
│ │ │ │ ├── ma.pyo
│ │ │ │ ├── matrix.py
│ │ │ │ ├── matrix.pyc
│ │ │ │ ├── matrix.pyo
│ │ │ │ ├── mlab.py
│ │ │ │ ├── mlab.pyc
│ │ │ │ ├── mlab.pyo
│ │ │ │ ├── nd_image.py
│ │ │ │ ├── nd_image.pyc
│ │ │ │ ├── nd_image.pyo
│ │ │ │ ├── numerictypes.py
│ │ │ │ ├── numerictypes.pyc
│ │ │ │ ├── numerictypes.pyo
│ │ │ │ ├── random_array.py
│ │ │ │ ├── random_array.pyc
│ │ │ │ ├── random_array.pyo
│ │ │ │ ├── session.py
│ │ │ │ ├── session.pyc
│ │ │ │ ├── session.pyo
│ │ │ │ ├── setup.py
│ │ │ │ ├── setup.pyc
│ │ │ │ ├── setup.pyo
│ │ │ │ ├── setupscons.py
│ │ │ │ ├── setupscons.pyc
│ │ │ │ ├── setupscons.pyo
│ │ │ │ ├── ufuncs.py
│ │ │ │ ├── ufuncs.pyc
│ │ │ │ ├── ufuncs.pyo
│ │ │ │ ├── util.py
│ │ │ │ ├── util.pyc
│ │ │ │ └── util.pyo
│ │ │ ├── oldnumeric
│ │ │ │ ├── alter_code1.py
│ │ │ │ ├── alter_code1.pyc
│ │ │ │ ├── alter_code1.pyo
│ │ │ │ ├── alter_code2.py
│ │ │ │ ├── alter_code2.pyc
│ │ │ │ ├── alter_code2.pyo
│ │ │ │ ├── arrayfns.py
│ │ │ │ ├── arrayfns.pyc
│ │ │ │ ├── arrayfns.pyo
│ │ │ │ ├── array_printer.py
│ │ │ │ ├── array_printer.pyc
│ │ │ │ ├── array_printer.pyo
│ │ │ │ ├── compat.py
│ │ │ │ ├── compat.pyc
│ │ │ │ ├── compat.pyo
│ │ │ │ ├── fft.py
│ │ │ │ ├── fft.pyc
│ │ │ │ ├── fft.pyo
│ │ │ │ ├── fix_default_axis.py
│ │ │ │ ├── fix_default_axis.pyc
│ │ │ │ ├── fix_default_axis.pyo
│ │ │ │ ├── functions.py
│ │ │ │ ├── functions.pyc
│ │ │ │ ├── functions.pyo
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── __init__.pyo
│ │ │ │ ├── linear_algebra.py
│ │ │ │ ├── linear_algebra.pyc
│ │ │ │ ├── linear_algebra.pyo
│ │ │ │ ├── ma.py
│ │ │ │ ├── ma.pyc
│ │ │ │ ├── ma.pyo
│ │ │ │ ├── matrix.py
│ │ │ │ ├── matrix.pyc
│ │ │ │ ├── matrix.pyo
│ │ │ │ ├── misc.py
│ │ │ │ ├── misc.pyc
│ │ │ │ ├── misc.pyo
│ │ │ │ ├── mlab.py
│ │ │ │ ├── mlab.pyc
│ │ │ │ ├── mlab.pyo
│ │ │ │ ├── precision.py
│ │ │ │ ├── precision.pyc
│ │ │ │ ├── precision.pyo
│ │ │ │ ├── random_array.py
│ │ │ │ ├── random_array.pyc
│ │ │ │ ├── random_array.pyo
│ │ │ │ ├── rng.py
│ │ │ │ ├── rng.pyc
│ │ │ │ ├── rng.pyo
│ │ │ │ ├── rng_stats.py
│ │ │ │ ├── rng_stats.pyc
│ │ │ │ ├── rng_stats.pyo
│ │ │ │ ├── setup.py
│ │ │ │ ├── setup.pyc
│ │ │ │ ├── setup.pyo
│ │ │ │ ├── setupscons.py
│ │ │ │ ├── setupscons.pyc
│ │ │ │ ├── setupscons.pyo
│ │ │ │ ├── tests
│ │ │ │ │ ├── test_oldnumeric.py
│ │ │ │ │ ├── test_oldnumeric.pyc
│ │ │ │ │ ├── test_oldnumeric.pyo
│ │ │ │ │ ├── test_regression.py
│ │ │ │ │ ├── test_regression.pyc
│ │ │ │ │ └── test_regression.pyo
│ │ │ │ ├── typeconv.py
│ │ │ │ ├── typeconv.pyc
│ │ │ │ ├── typeconv.pyo
│ │ │ │ ├── ufuncs.py
│ │ │ │ ├── ufuncs.pyc
│ │ │ │ ├── ufuncs.pyo
│ │ │ │ ├── user_array.py
│ │ │ │ ├── user_array.pyc
│ │ │ │ └── user_array.pyo
│ │ │ ├── polynomial
│ │ │ │ ├── chebyshev.py
│ │ │ │ ├── chebyshev.pyc
│ │ │ │ ├── chebyshev.pyo
│ │ │ │ ├── hermite_e.py
│ │ │ │ ├── hermite_e.pyc
│ │ │ │ ├── hermite_e.pyo
│ │ │ │ ├── hermite.py
│ │ │ │ ├── hermite.pyc
│ │ │ │ ├── hermite.pyo
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── __init__.pyo
│ │ │ │ ├── laguerre.py
│ │ │ │ ├── laguerre.pyc
│ │ │ │ ├── laguerre.pyo
│ │ │ │ ├── legendre.py
│ │ │ │ ├── legendre.pyc
│ │ │ │ ├── legendre.pyo
│ │ │ │ ├── polynomial.py
│ │ │ │ ├── polynomial.pyc
│ │ │ │ ├── polynomial.pyo
│ │ │ │ ├── polytemplate.py
│ │ │ │ ├── polytemplate.pyc
│ │ │ │ ├── polytemplate.pyo
│ │ │ │ ├── polyutils.py
│ │ │ │ ├── polyutils.pyc
│ │ │ │ ├── polyutils.pyo
│ │ │ │ ├── setup.py
│ │ │ │ ├── setup.pyc
│ │ │ │ ├── setup.pyo
│ │ │ │ └── tests
│ │ │ │ ├── test_chebyshev.py
│ │ │ │ ├── test_chebyshev.pyc
│ │ │ │ ├── test_chebyshev.pyo
│ │ │ │ ├── test_hermite_e.py
│ │ │ │ ├── test_hermite_e.pyc
│ │ │ │ ├── test_hermite_e.pyo
│ │ │ │ ├── test_hermite.py
│ │ │ │ ├── test_hermite.pyc
│ │ │ │ ├── test_hermite.pyo
│ │ │ │ ├── test_laguerre.py
│ │ │ │ ├── test_laguerre.pyc
│ │ │ │ ├── test_laguerre.pyo
│ │ │ │ ├── test_legendre.py
│ │ │ │ ├── test_legendre.pyc
│ │ │ │ ├── test_legendre.pyo
│ │ │ │ ├── test_polynomial.py
│ │ │ │ ├── test_polynomial.pyc
│ │ │ │ ├── test_polynomial.pyo
│ │ │ │ ├── test_polyutils.py
│ │ │ │ ├── test_polyutils.pyc
│ │ │ │ └── test_polyutils.pyo
│ │ │ ├── random
│ │ │ │ ├── info.py
│ │ │ │ ├── info.pyc
│ │ │ │ ├── info.pyo
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── __init__.pyo
│ │ │ │ ├── mtrand.pyd
│ │ │ │ ├── randomkit.h
│ │ │ │ ├── setup.py
│ │ │ │ ├── setup.pyc
│ │ │ │ ├── setup.pyo
│ │ │ │ ├── setupscons.py
│ │ │ │ ├── setupscons.pyc
│ │ │ │ ├── setupscons.pyo
│ │ │ │ └── tests
│ │ │ │ ├── test_random.py
│ │ │ │ ├── test_random.pyc
│ │ │ │ ├── test_random.pyo
│ │ │ │ ├── test_regression.py
│ │ │ │ ├── test_regression.pyc
│ │ │ │ └── test_regression.pyo
│ │ │ ├── setup.py
│ │ │ ├── setup.pyc
│ │ │ ├── setup.pyo
│ │ │ ├── setupscons.py
│ │ │ ├── setupscons.pyc
│ │ │ ├── setupscons.pyo
│ │ │ ├── testing
│ │ │ │ ├── decorators.py
│ │ │ │ ├── decorators.pyc
│ │ │ │ ├── decorators.pyo
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __init__.pyc
│ │ │ │ ├── __init__.pyo
│ │ │ │ ├── noseclasses.py
│ │ │ │ ├── noseclasses.pyc
│ │ │ │ ├── noseclasses.pyo
│ │ │ │ ├── nosetester.py
│ │ │ │ ├── nosetester.pyc
│ │ │ │ ├── nosetester.pyo
│ │ │ │ ├── nulltester.py
│ │ │ │ ├── nulltester.pyc
│ │ │ │ ├── nulltester.pyo
│ │ │ │ ├── numpytest.py
│ │ │ │ ├── numpytest.pyc
│ │ │ │ ├── numpytest.pyo
│ │ │ │ ├── print_coercion_tables.py
│ │ │ │ ├── print_coercion_tables.pyc
│ │ │ │ ├── print_coercion_tables.pyo
│ │ │ │ ├── setup.py
│ │ │ │ ├── setup.pyc
│ │ │ │ ├── setup.pyo
│ │ │ │ ├── setupscons.py
│ │ │ │ ├── setupscons.pyc
│ │ │ │ ├── setupscons.pyo
│ │ │ │ ├── tests
│ │ │ │ │ ├── test_decorators.py
│ │ │ │ │ ├── test_decorators.pyc
│ │ │ │ │ ├── test_decorators.pyo
│ │ │ │ │ ├── test_utils.py
│ │ │ │ │ ├── test_utils.pyc
│ │ │ │ │ └── test_utils.pyo
│ │ │ │ ├── utils.py
│ │ │ │ ├── utils.pyc
│ │ │ │ └── utils.pyo
│ │ │ ├── tests
│ │ │ │ ├── test_ctypeslib.py
│ │ │ │ ├── test_ctypeslib.pyc
│ │ │ │ ├── test_ctypeslib.pyo
│ │ │ │ ├── test_matlib.py
│ │ │ │ ├── test_matlib.pyc
│ │ │ │ └── test_matlib.pyo
│ │ │ ├── version.py
│ │ │ ├── version.pyc
│ │ │ └── version.pyo
│ │ ├── numpy-1.6.0b2-py2.6.egg-info
│ │ ├── pylab.py
│ │ ├── pylab.pyc
│ │ ├── pylab.pyo
│ │ ├── pyparsing-2.0.1-py2.6.egg-info
│ │ ├── pyparsing.py
│ │ ├── pyparsing.pyc
│ │ ├── python_dateutil-2.4.2-py2.6.egg
│ │ ├── README.txt
│ │ ├── setuptools-0.6c9-py2.6.egg
│ │ ├── setuptools.pth
│ │ ├── six-1.9.0-py2.6.egg-info
│ │ ├── six.py
│ │ └── six.pyc
│ ├── site.py
│ ├── site.pyc
│ ├── site.pyo
│ ├── smtpd.py
│ ├── smtplib.py
│ ├── sndhdr.py
│ ├── socket.py
│ ├── socket.pyc
│ ├── SocketServer.py
│ ├── SocketServer.pyc
│ ├── sqlite3
│ │ ├── dbapi2.py
│ │ ├── dump.py
│ │ ├── __init__.py
│ │ └── test
│ │ ├── dbapi.py
│ │ ├── dump.py
│ │ ├── factory.py
│ │ ├── hooks.py
│ │ ├── __init__.py
│ │ ├── py25tests.py
│ │ ├── regression.py
│ │ ├── transactions.py
│ │ ├── types.py
│ │ └── userfunctions.py
│ ├── sre_compile.py
│ ├── sre_compile.pyc
│ ├── sre_compile.pyo
│ ├── sre_constants.py
│ ├── sre_constants.pyc
│ ├── sre_constants.pyo
│ ├── sre_parse.py
│ ├── sre_parse.pyc
│ ├── sre_parse.pyo
│ ├── sre.py
│ ├── ssl.py
│ ├── ssl.pyc
│ ├── stat.py
│ ├── stat.pyc
│ ├── stat.pyo
│ ├── statvfs.py
│ ├── StringIO.py
│ ├── StringIO.pyc
│ ├── stringold.py
│ ├── stringprep.py
│ ├── string.py
│ ├── string.pyc
│ ├── _strptime.py
│ ├── struct.py
│ ├── struct.pyc
│ ├── subprocess.py
│ ├── subprocess.pyc
│ ├── sunaudio.py
│ ├── sunau.py
│ ├── symbol.py
│ ├── symtable.py
│ ├── tabnanny.py
│ ├── tabnanny.pyc
│ ├── tarfile.py
│ ├── tarfile.pyc
│ ├── telnetlib.py
│ ├── tempfile.py
│ ├── tempfile.pyc
│ ├── test
│ │ ├── 185test.db
│ │ ├── audiotest.au
│ │ ├── autotest.py
│ │ ├── badcert.pem
│ │ ├── bad_coding2.py
│ │ ├── bad_coding.py
│ │ ├── badkey.pem
│ │ ├── badsyntax_future3.py
│ │ ├── badsyntax_future4.py
│ │ ├── badsyntax_future5.py
│ │ ├── badsyntax_future6.py
│ │ ├── badsyntax_future7.py
│ │ ├── badsyntax_future8.py
│ │ ├── badsyntax_future9.py
│ │ ├── badsyntax_nocaret.py
│ │ ├── buffer_tests.py
│ │ ├── cfgparser.1
│ │ ├── check_soundcard.vbs
│ │ ├── cjkencodings_test.py
│ │ ├── cmath_testcases.txt
│ │ ├── crashers
│ │ │ ├── bogus_code_obj.py
│ │ │ ├── bogus_sre_bytecode.py
│ │ │ ├── borrowed_ref_1.py
│ │ │ ├── borrowed_ref_2.py
│ │ │ ├── gc_inspection.py
│ │ │ ├── infinite_loop_re.py
│ │ │ ├── iter.py
│ │ │ ├── loosing_mro_ref.py
│ │ │ ├── multithreaded_close.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
│ │ │ ├── copyabs.decTest
│ │ │ ├── copy.decTest
│ │ │ ├── copynegate.decTest
│ │ │ ├── copysign.decTest
│ │ │ ├── ddAbs.decTest
│ │ │ ├── ddAdd.decTest
│ │ │ ├── ddAnd.decTest
│ │ │ ├── ddBase.decTest
│ │ │ ├── ddCanonical.decTest
│ │ │ ├── ddClass.decTest
│ │ │ ├── ddCompare.decTest
│ │ │ ├── ddCompareSig.decTest
│ │ │ ├── ddCompareTotal.decTest
│ │ │ ├── ddCompareTotalMag.decTest
│ │ │ ├── ddCopyAbs.decTest
│ │ │ ├── ddCopy.decTest
│ │ │ ├── ddCopyNegate.decTest
│ │ │ ├── ddCopySign.decTest
│ │ │ ├── ddDivide.decTest
│ │ │ ├── ddDivideInt.decTest
│ │ │ ├── ddEncode.decTest
│ │ │ ├── ddFMA.decTest
│ │ │ ├── ddInvert.decTest
│ │ │ ├── ddLogB.decTest
│ │ │ ├── ddMax.decTest
│ │ │ ├── ddMaxMag.decTest
│ │ │ ├── ddMin.decTest
│ │ │ ├── ddMinMag.decTest
│ │ │ ├── ddMinus.decTest
│ │ │ ├── ddMultiply.decTest
│ │ │ ├── ddNextMinus.decTest
│ │ │ ├── ddNextPlus.decTest
│ │ │ ├── ddNextToward.decTest
│ │ │ ├── ddOr.decTest
│ │ │ ├── ddPlus.decTest
│ │ │ ├── ddQuantize.decTest
│ │ │ ├── ddReduce.decTest
│ │ │ ├── ddRemainder.decTest
│ │ │ ├── ddRemainderNear.decTest
│ │ │ ├── ddRotate.decTest
│ │ │ ├── ddSameQuantum.decTest
│ │ │ ├── ddScaleB.decTest
│ │ │ ├── ddShift.decTest
│ │ │ ├── ddSubtract.decTest
│ │ │ ├── ddToIntegral.decTest
│ │ │ ├── ddXor.decTest
│ │ │ ├── decDouble.decTest
│ │ │ ├── decQuad.decTest
│ │ │ ├── decSingle.decTest
│ │ │ ├── divide.decTest
│ │ │ ├── divideint.decTest
│ │ │ ├── dqAbs.decTest
│ │ │ ├── dqAdd.decTest
│ │ │ ├── dqAnd.decTest
│ │ │ ├── dqBase.decTest
│ │ │ ├── dqCanonical.decTest
│ │ │ ├── dqClass.decTest
│ │ │ ├── dqCompare.decTest
│ │ │ ├── dqCompareSig.decTest
│ │ │ ├── dqCompareTotal.decTest
│ │ │ ├── dqCompareTotalMag.decTest
│ │ │ ├── dqCopyAbs.decTest
│ │ │ ├── dqCopy.decTest
│ │ │ ├── dqCopyNegate.decTest
│ │ │ ├── dqCopySign.decTest
│ │ │ ├── dqDivide.decTest
│ │ │ ├── dqDivideInt.decTest
│ │ │ ├── dqEncode.decTest
│ │ │ ├── dqFMA.decTest
│ │ │ ├── dqInvert.decTest
│ │ │ ├── dqLogB.decTest
│ │ │ ├── dqMax.decTest
│ │ │ ├── dqMaxMag.decTest
│ │ │ ├── dqMin.decTest
│ │ │ ├── dqMinMag.decTest
│ │ │ ├── dqMinus.decTest
│ │ │ ├── dqMultiply.decTest
│ │ │ ├── dqNextMinus.decTest
│ │ │ ├── dqNextPlus.decTest
│ │ │ ├── dqNextToward.decTest
│ │ │ ├── dqOr.decTest
│ │ │ ├── dqPlus.decTest
│ │ │ ├── dqQuantize.decTest
│ │ │ ├── dqReduce.decTest
│ │ │ ├── dqRemainder.decTest
│ │ │ ├── dqRemainderNear.decTest
│ │ │ ├── dqRotate.decTest
│ │ │ ├── dqSameQuantum.decTest
│ │ │ ├── dqScaleB.decTest
│ │ │ ├── dqShift.decTest
│ │ │ ├── dqSubtract.decTest
│ │ │ ├── dqToIntegral.decTest
│ │ │ ├── dqXor.decTest
│ │ │ ├── dsBase.decTest
│ │ │ ├── dsEncode.decTest
│ │ │ ├── exp.decTest
│ │ │ ├── extra.decTest
│ │ │ ├── fma.decTest
│ │ │ ├── inexact.decTest
│ │ │ ├── invert.decTest
│ │ │ ├── ln.decTest
│ │ │ ├── log10.decTest
│ │ │ ├── logb.decTest
│ │ │ ├── max.decTest
│ │ │ ├── maxmag.decTest
│ │ │ ├── min.decTest
│ │ │ ├── minmag.decTest
│ │ │ ├── minus.decTest
│ │ │ ├── multiply.decTest
│ │ │ ├── nextminus.decTest
│ │ │ ├── nextplus.decTest
│ │ │ ├── nexttoward.decTest
│ │ │ ├── or.decTest
│ │ │ ├── plus.decTest
│ │ │ ├── power.decTest
│ │ │ ├── powersqrt.decTest
│ │ │ ├── quantize.decTest
│ │ │ ├── randomBound32.decTest
│ │ │ ├── randoms.decTest
│ │ │ ├── reduce.decTest
│ │ │ ├── remainder.decTest
│ │ │ ├── remainderNear.decTest
│ │ │ ├── rescale.decTest
│ │ │ ├── rotate.decTest
│ │ │ ├── rounding.decTest
│ │ │ ├── samequantum.decTest
│ │ │ ├── scaleb.decTest
│ │ │ ├── shift.decTest
│ │ │ ├── squareroot.decTest
│ │ │ ├── subtract.decTest
│ │ │ ├── testall.decTest
│ │ │ ├── tointegral.decTest
│ │ │ ├── tointegralx.decTest
│ │ │ └── xor.decTest
│ │ ├── doctest_aliases.py
│ │ ├── double_const.py
│ │ ├── empty.vbs
│ │ ├── exception_hierarchy.txt
│ │ ├── floating_points.txt
│ │ ├── fork_wait.py
│ │ ├── greyrgb.uue
│ │ ├── https_svn_python_org_root.pem
│ │ ├── ieee754.txt
│ │ ├── infinite_reload.py
│ │ ├── __init__.py
│ │ ├── inspect_fodder2.py
│ │ ├── inspect_fodder.py
│ │ ├── keycert.pem
│ │ ├── leakers
│ │ │ ├── __init__.py
│ │ │ ├── README.txt
│ │ │ ├── test_ctypes.py
│ │ │ ├── test_gestalt.py
│ │ │ └── test_selftype.py
│ │ ├── list_tests.py
│ │ ├── mapping_tests.py
│ │ ├── nullcert.pem
│ │ ├── outstanding_bugs.py
│ │ ├── pickletester.py
│ │ ├── profilee.py
│ │ ├── pyclbr_input.py
│ │ ├── pydocfodder.py
│ │ ├── pydoc_mod.py
│ │ ├── pystone.py
│ │ ├── randv2_32.pck
│ │ ├── randv2_64.pck
│ │ ├── randv3.pck
│ │ ├── readme.txt
│ │ ├── regex_tests.py
│ │ ├── regrtest.py
│ │ ├── relimport.py
│ │ ├── reperf.py
│ │ ├── re_tests.py
│ │ ├── sample_doctest.py
│ │ ├── seq_tests.py
│ │ ├── sgml_input.html
│ │ ├── sortperf.py
│ │ ├── ssl_cert.pem
│ │ ├── ssl_key.pem
│ │ ├── string_tests.py
│ │ ├── svn_python_org_https_cert.pem
│ │ ├── test_abc.py
│ │ ├── test_abstract_numbers.py
│ │ ├── test_aepack.py
│ │ ├── test___all__.py
│ │ ├── testall.py
│ │ ├── test_al.py
│ │ ├── test_anydbm.py
│ │ ├── test_applesingle.py
│ │ ├── test_array.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_bsddb185.py
│ │ ├── test_bsddb3.py
│ │ ├── test_bsddb.py
│ │ ├── test_buffer.py
│ │ ├── test_bufio.py
│ │ ├── test_builtin.py
│ │ ├── test_bytes.py
│ │ ├── test_bz2.py
│ │ ├── test_calendar.py
│ │ ├── test_call.py
│ │ ├── test_capi.py
│ │ ├── test_cd.py
│ │ ├── test_cfgparser.py
│ │ ├── test_cgi.py
│ │ ├── test_charmapcodec.py
│ │ ├── test_class.py
│ │ ├── test_cl.py
│ │ ├── test_cmath.py
│ │ ├── test_cmd_line.py
│ │ ├── test_cmd_line_script.py
│ │ ├── test_cmd.py
│ │ ├── test_codeccallbacks.py
│ │ ├── test_codecencodings_cn.py
│ │ ├── test_codecencodings_hk.py
│ │ ├── test_codecencodings_jp.py
│ │ ├── test_codecencodings_kr.py
│ │ ├── test_codecencodings_tw.py
│ │ ├── test_codecmaps_cn.py
│ │ ├── test_codecmaps_hk.py
│ │ ├── test_codecmaps_jp.py
│ │ ├── test_codecmaps_kr.py
│ │ ├── test_codecmaps_tw.py
│ │ ├── testcodec.py
│ │ ├── test_codecs.py
│ │ ├── test_codeop.py
│ │ ├── test_code.py
│ │ ├── test_coding.py
│ │ ├── test_coercion.py
│ │ ├── test_collections.py
│ │ ├── test_colorsys.py
│ │ ├── test_commands.py
│ │ ├── test_compare.py
│ │ ├── test_compile.py
│ │ ├── test_compiler.py
│ │ ├── test_complex_args.py
│ │ ├── test_complex.py
│ │ ├── test_contains.py
│ │ ├── test_contextlib.py
│ │ ├── test_cookielib.py
│ │ ├── test_cookie.py
│ │ ├── test_copy.py
│ │ ├── test_copy_reg.py
│ │ ├── test_cpickle.py
│ │ ├── test_cprofile.py
│ │ ├── test_crypt.py
│ │ ├── test_csv.py
│ │ ├── test_ctypes.py
│ │ ├── test_curses.py
│ │ ├── test_datetime.py
│ │ ├── test_dbm.py
│ │ ├── test_decimal.py
│ │ ├── test_decorators.py
│ │ ├── test_defaultdict.py
│ │ ├── test_deque.py
│ │ ├── test_descr.py
│ │ ├── test_descrtut.py
│ │ ├── test_dict.py
│ │ ├── test_difflib_expect.html
│ │ ├── test_difflib.py
│ │ ├── test_dircache.py
│ │ ├── test_dis.py
│ │ ├── test_distutils.py
│ │ ├── test_dl.py
│ │ ├── test_doctest2.py
│ │ ├── test_doctest2.txt
│ │ ├── test_doctest3.txt
│ │ ├── test_doctest4.txt
│ │ ├── test_doctest.py
│ │ ├── test_doctest.txt
│ │ ├── test_docxmlrpc.py
│ │ ├── test_dumbdbm.py
│ │ ├── test_dummy_threading.py
│ │ ├── test_dummy_thread.py
│ │ ├── test_email_codecs.py
│ │ ├── test_email.py
│ │ ├── test_email_renamed.py
│ │ ├── test_enumerate.py
│ │ ├── test_eof.py
│ │ ├── test_epoll.py
│ │ ├── test_errno.py
│ │ ├── test_exceptions.py
│ │ ├── test_exception_variations.py
│ │ ├── test_extcall.py
│ │ ├── test_fcntl.py
│ │ ├── test_filecmp.py
│ │ ├── test_fileinput.py
│ │ ├── test_fileio.py
│ │ ├── test_file.py
│ │ ├── test_float.py
│ │ ├── test_fnmatch.py
│ │ ├── test_fork1.py
│ │ ├── test_format.py
│ │ ├── test_fpformat.py
│ │ ├── test_fractions.py
│ │ ├── test_frozen.py
│ │ ├── test_ftplib.py
│ │ ├── test_funcattrs.py
│ │ ├── test_functools.py
│ │ ├── test_future1.py
│ │ ├── test_future2.py
│ │ ├── test_future3.py
│ │ ├── test_future4.py
│ │ ├── test_future_builtins.py
│ │ ├── test___future__.py
│ │ ├── test_future.py
│ │ ├── test_gc.py
│ │ ├── test_gdbm.py
│ │ ├── test_generators.py
│ │ ├── test_genericpath.py
│ │ ├── test_genexps.py
│ │ ├── test_getargs2.py
│ │ ├── test_getargs.py
│ │ ├── test_getopt.py
│ │ ├── test_gettext.py
│ │ ├── test_global.py
│ │ ├── test_glob.py
│ │ ├── test_gl.py
│ │ ├── test_grammar.py
│ │ ├── test_grp.py
│ │ ├── test_gzip.py
│ │ ├── test_hashlib.py
│ │ ├── test_hash.py
│ │ ├── test_heapq.py
│ │ ├── test_hmac.py
│ │ ├── test_hotshot.py
│ │ ├── test_htmllib.py
│ │ ├── test_htmlparser.py
│ │ ├── test_httplib.py
│ │ ├── test_httpservers.py
│ │ ├── test_imageop.py
│ │ ├── test_imaplib.py
│ │ ├── test_imgfile.py
│ │ ├── testimgr.uue
│ │ ├── testimg.uue
│ │ ├── test_importhooks.py
│ │ ├── test_import.py
│ │ ├── test_imp.py
│ │ ├── test_index.py
│ │ ├── test_inspect.py
│ │ ├── test_int_literal.py
│ │ ├── test_int.py
│ │ ├── test_ioctl.py
│ │ ├── test_io.py
│ │ ├── test_isinstance.py
│ │ ├── test_iterlen.py
│ │ ├── test_iter.py
│ │ ├── test_itertools.py
│ │ ├── test_json.py
│ │ ├── test_kqueue.py
│ │ ├── test_largefile.py
│ │ ├── test_lib2to3.py
│ │ ├── test_linuxaudiodev.py
│ │ ├── test_list.py
│ │ ├── test__locale.py
│ │ ├── test_locale.py
│ │ ├── test_logging.py
│ │ ├── test_longexp.py
│ │ ├── test_long_future.py
│ │ ├── test_long.py
│ │ ├── test_macos.py
│ │ ├── test_macostools.py
│ │ ├── test_macpath.py
│ │ ├── test_mailbox.py
│ │ ├── test_marshal.py
│ │ ├── test_math.py
│ │ ├── test_md5.py
│ │ ├── test_memoryio.py
│ │ ├── test_mhlib.py
│ │ ├── test_mimetools.py
│ │ ├── test_mimetypes.py
│ │ ├── test_MimeWriter.py
│ │ ├── test_minidom.py
│ │ ├── test_mmap.py
│ │ ├── test_modulefinder.py
│ │ ├── test_module.py
│ │ ├── test_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_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_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_pkgimport.py
│ │ ├── test_pkg.py
│ │ ├── test_pkgutil.py
│ │ ├── test_platform.py
│ │ ├── test_plistlib.py
│ │ ├── test_poll.py
│ │ ├── test_popen2.py
│ │ ├── test_popen.py
│ │ ├── test_poplib.py
│ │ ├── test_posixpath.py
│ │ ├── test_posix.py
│ │ ├── test_pow.py
│ │ ├── test_pprint.py
│ │ ├── test_print.py
│ │ ├── test_profilehooks.py
│ │ ├── test_profile.py
│ │ ├── test_property.py
│ │ ├── test_pstats.py
│ │ ├── test_pty.py
│ │ ├── test_pwd.py
│ │ ├── test_py3kwarn.py
│ │ ├── test_pyclbr.py
│ │ ├── test_pydoc.py
│ │ ├── test_pyexpat.py
│ │ ├── test_queue.py
│ │ ├── test_quopri.py
│ │ ├── test_random.py
│ │ ├── test_repr.py
│ │ ├── test_re.py
│ │ ├── test_resource.py
│ │ ├── test_rfc822.py
│ │ ├── testrgb.uue
│ │ ├── test_richcmp.py
│ │ ├── test_robotparser.py
│ │ ├── test_runpy.py
│ │ ├── test_sax.py
│ │ ├── test_scope.py
│ │ ├── test_scriptpackages.py
│ │ ├── test_select.py
│ │ ├── test_set.py
│ │ ├── test_sets.py
│ │ ├── test_sgmllib.py
│ │ ├── test_sha.py
│ │ ├── test_shelve.py
│ │ ├── test_shlex.py
│ │ ├── test_shutil.py
│ │ ├── test_signal.py
│ │ ├── test_SimpleHTTPServer.py
│ │ ├── test_site.py
│ │ ├── test_slice.py
│ │ ├── test_smtplib.py
│ │ ├── test_socket.py
│ │ ├── test_socketserver.py
│ │ ├── test_softspace.py
│ │ ├── test_sort.py
│ │ ├── test_sqlite.py
│ │ ├── test_ssl.py
│ │ ├── test_startfile.py
│ │ ├── test_strftime.py
│ │ ├── test_StringIO.py
│ │ ├── test_stringprep.py
│ │ ├── test_string.py
│ │ ├── test_strop.py
│ │ ├── test_strptime.py
│ │ ├── test_str.py
│ │ ├── test_structmembers.py
│ │ ├── test_struct.py
│ │ ├── test_structseq.py
│ │ ├── test_subprocess.py
│ │ ├── test_sunaudiodev.py
│ │ ├── test_sundry.py
│ │ ├── test_support.py
│ │ ├── test_symtable.py
│ │ ├── test_syntax.py
│ │ ├── test_sys.py
│ │ ├── test_tarfile.py
│ │ ├── testtar.tar
│ │ ├── test_tcl.py
│ │ ├── test_telnetlib.py
│ │ ├── test_tempfile.py
│ │ ├── test_textwrap.py
│ │ ├── test_threaded_import.py
│ │ ├── test_threadedtempfile.py
│ │ ├── test_threading_local.py
│ │ ├── test_threading.py
│ │ ├── test_thread.py
│ │ ├── test_threadsignals.py
│ │ ├── test_timeout.py
│ │ ├── test_time.py
│ │ ├── test_tokenize.py
│ │ ├── test_traceback.py
│ │ ├── test_trace.py
│ │ ├── test_transformer.py
│ │ ├── test_tuple.py
│ │ ├── test_typechecks.py
│ │ ├── test_types.py
│ │ ├── test_ucn.py
│ │ ├── test_unary.py
│ │ ├── test_undocumented_details.py
│ │ ├── test_unicodedata.py
│ │ ├── test_unicode_file.py
│ │ ├── test_unicode.py
│ │ ├── test_unittest.py
│ │ ├── test_univnewlines.py
│ │ ├── test_unpack.py
│ │ ├── test_urllib2_localnet.py
│ │ ├── test_urllib2net.py
│ │ ├── test_urllib2.py
│ │ ├── test_urllibnet.py
│ │ ├── test_urllib.py
│ │ ├── test_urlparse.py
│ │ ├── test_userdict.py
│ │ ├── test_userlist.py
│ │ ├── test_userstring.py
│ │ ├── test_uuid.py
│ │ ├── test_uu.py
│ │ ├── test_wait3.py
│ │ ├── test_wait4.py
│ │ ├── test_warnings.py
│ │ ├── test_wave.py
│ │ ├── test_weakref.py
│ │ ├── test_whichdb.py
│ │ ├── test_winreg.py
│ │ ├── test_winsound.py
│ │ ├── test_with.py
│ │ ├── test_wsgiref.py
│ │ ├── test_xdrlib.py
│ │ ├── test.xml
│ │ ├── test_xml_etree_c.py
│ │ ├── test_xml_etree.py
│ │ ├── test_xmllib.py
│ │ ├── test.xml.out
│ │ ├── test_xmlrpc.py
│ │ ├── test_xpickle.py
│ │ ├── test_xrange.py
│ │ ├── test_zipfile64.py
│ │ ├── test_zipfile.py
│ │ ├── test_zipimport.py
│ │ ├── test_zlib.py
│ │ ├── tf_inherit_check.py
│ │ ├── threaded_import_hangers.py
│ │ ├── time_hashlib.py
│ │ ├── tokenize_tests.txt
│ │ ├── warning_tests.py
│ │ ├── wrongcert.pem
│ │ └── xmltests.py
│ ├── textwrap.py
│ ├── textwrap.pyc
│ ├── this.py
│ ├── _threading_local.py
│ ├── threading.py
│ ├── threading.pyc
│ ├── timeit.py
│ ├── toaiff.py
│ ├── tokenize.py
│ ├── tokenize.pyc
│ ├── token.py
│ ├── token.pyc
│ ├── traceback.py
│ ├── traceback.pyc
│ ├── traceback.pyo
│ ├── trace.py
│ ├── tty.py
│ ├── types.py
│ ├── types.pyc
│ ├── types.pyo
│ ├── unittest.py
│ ├── unittest.pyc
│ ├── urllib2.py
│ ├── urllib2.pyc
│ ├── urllib.py
│ ├── urllib.pyc
│ ├── urlparse.py
│ ├── urlparse.pyc
│ ├── UserDict.py
│ ├── UserDict.pyc
│ ├── UserDict.pyo
│ ├── UserList.py
│ ├── user.py
│ ├── UserString.py
│ ├── uuid.py
│ ├── uu.py
│ ├── warnings.py
│ ├── warnings.pyc
│ ├── warnings.pyo
│ ├── wave.py
│ ├── weakref.py
│ ├── weakref.pyc
│ ├── webbrowser.py
│ ├── webbrowser.pyc
│ ├── whichdb.py
│ ├── wsgiref
│ │ ├── handlers.py
│ │ ├── headers.py
│ │ ├── __init__.py
│ │ ├── simple_server.py
│ │ ├── util.py
│ │ └── validate.py
│ ├── xdrlib.py
│ ├── xml
│ │ ├── dom
│ │ │ ├── domreg.py
│ │ │ ├── expatbuilder.py
│ │ │ ├── __init__.py
│ │ │ ├── minicompat.py
│ │ │ ├── minidom.py
│ │ │ ├── NodeFilter.py
│ │ │ ├── pulldom.py
│ │ │ └── xmlbuilder.py
│ │ ├── etree
│ │ │ ├── cElementTree.py
│ │ │ ├── ElementInclude.py
│ │ │ ├── ElementPath.py
│ │ │ ├── ElementTree.py
│ │ │ └── __init__.py
│ │ ├── __init__.py
│ │ ├── parsers
│ │ │ ├── expat.py
│ │ │ └── __init__.py
│ │ └── sax
│ │ ├── _exceptions.py
│ │ ├── expatreader.py
│ │ ├── handler.py
│ │ ├── __init__.py
│ │ ├── saxutils.py
│ │ └── xmlreader.py
│ ├── xmllib.py
│ ├── xmlrpclib.py
│ ├── zipfile.py
│ └── zipfile.pyc
├── libs
│ ├── _bsddb.lib
│ ├── bz2.lib
│ ├── _ctypes.lib
│ ├── _ctypes_test.lib
│ ├── _elementtree.lib
│ ├── _hashlib.lib
│ ├── libpython26.a
│ ├── _msi.lib
│ ├── _multiprocessing.lib
│ ├── pyexpat.lib
│ ├── python26.lib
│ ├── select.lib
│ ├── _socket.lib
│ ├── _sqlite3.lib
│ ├── _ssl.lib
│ ├── _testcapi.lib
│ ├── _tkinter.lib
│ ├── unicodedata.lib
│ └── winsound.lib
├── LICENSE.txt
├── matplotlib-wininst.log
├── Microsoft.VC90.CRT.manifest
├── msvcr90.dll
├── NEWS.txt
├── numpy-wininst.log
├── python26.dll
├── python.exe
├── pythonw.exe
├── README.txt
├── Removematplotlib.exe
├── Removenumpy.exe
├── Scripts
│ ├── easy_install-2.6.exe
│ ├── easy_install-2.6-script.py
│ ├── easy_install.exe
│ ├── easy_install-script.py
│ ├── f2py.py
│ ├── f2py.pyc
│ └── f2py.pyo
├── tcl
│ ├── dde1.3
│ │ ├── pkgIndex.tcl
│ │ └── tcldde13.dll
│ ├── reg1.2
│ │ ├── pkgIndex.tcl
│ │ └── tclreg12.dll
│ ├── tcl8
│ │ ├── 8.4
│ │ │ ├── http-2.7.tm
│ │ │ ├── platform
│ │ │ │ └── shell-1.1.3.tm
│ │ │ └── platform-1.0.3.tm
│ │ └── 8.5
│ │ ├── msgcat-1.4.2.tm
│ │ └── tcltest-2.3.0.tm
│ ├── tcl8.5
│ │ ├── auto.tcl
│ │ ├── clock.tcl
│ │ ├── encoding
│ │ │ ├── ascii.enc
│ │ │ ├── big5.enc
│ │ │ ├── cp1250.enc
│ │ │ ├── cp1251.enc
│ │ │ ├── cp1252.enc
│ │ │ ├── cp1253.enc
│ │ │ ├── cp1254.enc
│ │ │ ├── cp1255.enc
│ │ │ ├── cp1256.enc
│ │ │ ├── cp1257.enc
│ │ │ ├── cp1258.enc
│ │ │ ├── cp437.enc
│ │ │ ├── cp737.enc
│ │ │ ├── cp775.enc
│ │ │ ├── cp850.enc
│ │ │ ├── cp852.enc
│ │ │ ├── cp855.enc
│ │ │ ├── cp857.enc
│ │ │ ├── cp860.enc
│ │ │ ├── cp861.enc
│ │ │ ├── cp862.enc
│ │ │ ├── cp863.enc
│ │ │ ├── cp864.enc
│ │ │ ├── cp865.enc
│ │ │ ├── cp866.enc
│ │ │ ├── cp869.enc
│ │ │ ├── cp874.enc
│ │ │ ├── cp932.enc
│ │ │ ├── cp936.enc
│ │ │ ├── cp949.enc
│ │ │ ├── cp950.enc
│ │ │ ├── dingbats.enc
│ │ │ ├── ebcdic.enc
│ │ │ ├── euc-cn.enc
│ │ │ ├── euc-jp.enc
│ │ │ ├── euc-kr.enc
│ │ │ ├── gb12345.enc
│ │ │ ├── gb1988.enc
│ │ │ ├── gb2312.enc
│ │ │ ├── gb2312-raw.enc
│ │ │ ├── iso2022.enc
│ │ │ ├── iso2022-jp.enc
│ │ │ ├── iso2022-kr.enc
│ │ │ ├── iso8859-10.enc
│ │ │ ├── iso8859-13.enc
│ │ │ ├── iso8859-14.enc
│ │ │ ├── iso8859-15.enc
│ │ │ ├── iso8859-16.enc
│ │ │ ├── iso8859-1.enc
│ │ │ ├── iso8859-2.enc
│ │ │ ├── iso8859-3.enc
│ │ │ ├── iso8859-4.enc
│ │ │ ├── iso8859-5.enc
│ │ │ ├── iso8859-6.enc
│ │ │ ├── iso8859-7.enc
│ │ │ ├── iso8859-8.enc
│ │ │ ├── iso8859-9.enc
│ │ │ ├── jis0201.enc
│ │ │ ├── jis0208.enc
│ │ │ ├── jis0212.enc
│ │ │ ├── koi8-r.enc
│ │ │ ├── koi8-u.enc
│ │ │ ├── ksc5601.enc
│ │ │ ├── macCentEuro.enc
│ │ │ ├── macCroatian.enc
│ │ │ ├── macCyrillic.enc
│ │ │ ├── macDingbats.enc
│ │ │ ├── macGreek.enc
│ │ │ ├── macIceland.enc
│ │ │ ├── macJapan.enc
│ │ │ ├── macRoman.enc
│ │ │ ├── macRomania.enc
│ │ │ ├── macThai.enc
│ │ │ ├── macTurkish.enc
│ │ │ ├── macUkraine.enc
│ │ │ ├── shiftjis.enc
│ │ │ ├── symbol.enc
│ │ │ └── tis-620.enc
│ │ ├── history.tcl
│ │ ├── http1.0
│ │ │ ├── http.tcl
│ │ │ └── pkgIndex.tcl
│ │ ├── init.tcl
│ │ ├── msgs
│ │ │ ├── af.msg
│ │ │ ├── af_za.msg
│ │ │ ├── ar_in.msg
│ │ │ ├── ar_jo.msg
│ │ │ ├── ar_lb.msg
│ │ │ ├── ar.msg
│ │ │ ├── ar_sy.msg
│ │ │ ├── be.msg
│ │ │ ├── bg.msg
│ │ │ ├── bn_in.msg
│ │ │ ├── bn.msg
│ │ │ ├── ca.msg
│ │ │ ├── cs.msg
│ │ │ ├── da.msg
│ │ │ ├── de_at.msg
│ │ │ ├── de_be.msg
│ │ │ ├── de.msg
│ │ │ ├── el.msg
│ │ │ ├── en_au.msg
│ │ │ ├── en_be.msg
│ │ │ ├── en_bw.msg
│ │ │ ├── en_ca.msg
│ │ │ ├── en_gb.msg
│ │ │ ├── en_hk.msg
│ │ │ ├── en_ie.msg
│ │ │ ├── en_in.msg
│ │ │ ├── en_nz.msg
│ │ │ ├── en_ph.msg
│ │ │ ├── en_sg.msg
│ │ │ ├── en_za.msg
│ │ │ ├── en_zw.msg
│ │ │ ├── eo.msg
│ │ │ ├── es_ar.msg
│ │ │ ├── es_bo.msg
│ │ │ ├── es_cl.msg
│ │ │ ├── es_co.msg
│ │ │ ├── es_cr.msg
│ │ │ ├── es_do.msg
│ │ │ ├── es_ec.msg
│ │ │ ├── es_gt.msg
│ │ │ ├── es_hn.msg
│ │ │ ├── es.msg
│ │ │ ├── es_mx.msg
│ │ │ ├── es_ni.msg
│ │ │ ├── es_pa.msg
│ │ │ ├── es_pe.msg
│ │ │ ├── es_pr.msg
│ │ │ ├── es_py.msg
│ │ │ ├── es_sv.msg
│ │ │ ├── es_uy.msg
│ │ │ ├── es_ve.msg
│ │ │ ├── et.msg
│ │ │ ├── eu_es.msg
│ │ │ ├── eu.msg
│ │ │ ├── fa_in.msg
│ │ │ ├── fa_ir.msg
│ │ │ ├── fa.msg
│ │ │ ├── fi.msg
│ │ │ ├── fo_fo.msg
│ │ │ ├── fo.msg
│ │ │ ├── fr_be.msg
│ │ │ ├── fr_ca.msg
│ │ │ ├── fr_ch.msg
│ │ │ ├── fr.msg
│ │ │ ├── ga_ie.msg
│ │ │ ├── ga.msg
│ │ │ ├── gl_es.msg
│ │ │ ├── gl.msg
│ │ │ ├── gv_gb.msg
│ │ │ ├── gv.msg
│ │ │ ├── he.msg
│ │ │ ├── hi_in.msg
│ │ │ ├── hi.msg
│ │ │ ├── hr.msg
│ │ │ ├── hu.msg
│ │ │ ├── id_id.msg
│ │ │ ├── id.msg
│ │ │ ├── is.msg
│ │ │ ├── it_ch.msg
│ │ │ ├── it.msg
│ │ │ ├── ja.msg
│ │ │ ├── kl_gl.msg
│ │ │ ├── kl.msg
│ │ │ ├── kok_in.msg
│ │ │ ├── kok.msg
│ │ │ ├── ko_kr.msg
│ │ │ ├── ko.msg
│ │ │ ├── kw_gb.msg
│ │ │ ├── kw.msg
│ │ │ ├── lt.msg
│ │ │ ├── lv.msg
│ │ │ ├── mk.msg
│ │ │ ├── mr_in.msg
│ │ │ ├── mr.msg
│ │ │ ├── ms.msg
│ │ │ ├── ms_my.msg
│ │ │ ├── mt.msg
│ │ │ ├── nb.msg
│ │ │ ├── nl_be.msg
│ │ │ ├── nl.msg
│ │ │ ├── nn.msg
│ │ │ ├── pl.msg
│ │ │ ├── pt_br.msg
│ │ │ ├── pt.msg
│ │ │ ├── ro.msg
│ │ │ ├── ru.msg
│ │ │ ├── ru_ua.msg
│ │ │ ├── sh.msg
│ │ │ ├── sk.msg
│ │ │ ├── sl.msg
│ │ │ ├── sq.msg
│ │ │ ├── sr.msg
│ │ │ ├── sv.msg
│ │ │ ├── sw.msg
│ │ │ ├── ta_in.msg
│ │ │ ├── ta.msg
│ │ │ ├── te_in.msg
│ │ │ ├── te.msg
│ │ │ ├── th.msg
│ │ │ ├── tr.msg
│ │ │ ├── uk.msg
│ │ │ ├── vi.msg
│ │ │ ├── zh_cn.msg
│ │ │ ├── zh_hk.msg
│ │ │ ├── zh.msg
│ │ │ ├── zh_sg.msg
│ │ │ └── zh_tw.msg
│ │ ├── opt0.4
│ │ │ ├── optparse.tcl
│ │ │ └── pkgIndex.tcl
│ │ ├── package.tcl
│ │ ├── parray.tcl
│ │ ├── safe.tcl
│ │ ├── tclIndex
│ │ ├── tm.tcl
│ │ ├── tzdata
│ │ │ ├── Africa
│ │ │ │ ├── Abidjan
│ │ │ │ ├── Accra
│ │ │ │ ├── Addis_Ababa
│ │ │ │ ├── Algiers
│ │ │ │ ├── Asmara
│ │ │ │ ├── Asmera
│ │ │ │ ├── Bamako
│ │ │ │ ├── Bangui
│ │ │ │ ├── Banjul
│ │ │ │ ├── Bissau
│ │ │ │ ├── Blantyre
│ │ │ │ ├── Brazzaville
│ │ │ │ ├── Bujumbura
│ │ │ │ ├── Cairo
│ │ │ │ ├── Casablanca
│ │ │ │ ├── Ceuta
│ │ │ │ ├── Conakry
│ │ │ │ ├── Dakar
│ │ │ │ ├── Dar_es_Salaam
│ │ │ │ ├── Djibouti
│ │ │ │ ├── Douala
│ │ │ │ ├── El_Aaiun
│ │ │ │ ├── Freetown
│ │ │ │ ├── Gaborone
│ │ │ │ ├── Harare
│ │ │ │ ├── Johannesburg
│ │ │ │ ├── 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
│ │ │ │ │ ├── San_Juan
│ │ │ │ │ ├── San_Luis
│ │ │ │ │ ├── Tucuman
│ │ │ │ │ └── Ushuaia
│ │ │ │ ├── Aruba
│ │ │ │ ├── Asuncion
│ │ │ │ ├── Atikokan
│ │ │ │ ├── Atka
│ │ │ │ ├── Bahia
│ │ │ │ ├── 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
│ │ │ │ ├── Cuiaba
│ │ │ │ ├── Curacao
│ │ │ │ ├── Danmarkshavn
│ │ │ │ ├── Dawson
│ │ │ │ ├── Dawson_Creek
│ │ │ │ ├── Denver
│ │ │ │ ├── Detroit
│ │ │ │ ├── Dominica
│ │ │ │ ├── Edmonton
│ │ │ │ ├── Eirunepe
│ │ │ │ ├── El_Salvador
│ │ │ │ ├── Ensenada
│ │ │ │ ├── Fortaleza
│ │ │ │ ├── Fort_Wayne
│ │ │ │ ├── Glace_Bay
│ │ │ │ ├── Godthab
│ │ │ │ ├── Goose_Bay
│ │ │ │ ├── Grand_Turk
│ │ │ │ ├── Grenada
│ │ │ │ ├── Guadeloupe
│ │ │ │ ├── Guatemala
│ │ │ │ ├── Guayaquil
│ │ │ │ ├── Guyana
│ │ │ │ ├── Halifax
│ │ │ │ ├── Havana
│ │ │ │ ├── Hermosillo
│ │ │ │ ├── Indiana
│ │ │ │ │ ├── Indianapolis
│ │ │ │ │ ├── Knox
│ │ │ │ │ ├── Marengo
│ │ │ │ │ ├── Petersburg
│ │ │ │ │ ├── Tell_City
│ │ │ │ │ ├── Vevay
│ │ │ │ │ ├── Vincennes
│ │ │ │ │ └── Winamac
│ │ │ │ ├── Indianapolis
│ │ │ │ ├── Inuvik
│ │ │ │ ├── Iqaluit
│ │ │ │ ├── Jamaica
│ │ │ │ ├── Jujuy
│ │ │ │ ├── Juneau
│ │ │ │ ├── Kentucky
│ │ │ │ │ ├── Louisville
│ │ │ │ │ └── Monticello
│ │ │ │ ├── Knox_IN
│ │ │ │ ├── La_Paz
│ │ │ │ ├── Lima
│ │ │ │ ├── Los_Angeles
│ │ │ │ ├── Louisville
│ │ │ │ ├── Maceio
│ │ │ │ ├── Managua
│ │ │ │ ├── Manaus
│ │ │ │ ├── Marigot
│ │ │ │ ├── Martinique
│ │ │ │ ├── Mazatlan
│ │ │ │ ├── Mendoza
│ │ │ │ ├── Menominee
│ │ │ │ ├── Merida
│ │ │ │ ├── Mexico_City
│ │ │ │ ├── Miquelon
│ │ │ │ ├── Moncton
│ │ │ │ ├── Monterrey
│ │ │ │ ├── Montevideo
│ │ │ │ ├── Montreal
│ │ │ │ ├── Montserrat
│ │ │ │ ├── Nassau
│ │ │ │ ├── New_York
│ │ │ │ ├── Nipigon
│ │ │ │ ├── Nome
│ │ │ │ ├── Noronha
│ │ │ │ ├── North_Dakota
│ │ │ │ │ ├── Center
│ │ │ │ │ └── New_Salem
│ │ │ │ ├── Panama
│ │ │ │ ├── Pangnirtung
│ │ │ │ ├── Paramaribo
│ │ │ │ ├── Phoenix
│ │ │ │ ├── Port-au-Prince
│ │ │ │ ├── Porto_Acre
│ │ │ │ ├── Port_of_Spain
│ │ │ │ ├── Porto_Velho
│ │ │ │ ├── Puerto_Rico
│ │ │ │ ├── Rainy_River
│ │ │ │ ├── Rankin_Inlet
│ │ │ │ ├── Recife
│ │ │ │ ├── Regina
│ │ │ │ ├── Resolute
│ │ │ │ ├── Rio_Branco
│ │ │ │ ├── Rosario
│ │ │ │ ├── Santiago
│ │ │ │ ├── Santo_Domingo
│ │ │ │ ├── Sao_Paulo
│ │ │ │ ├── Scoresbysund
│ │ │ │ ├── Shiprock
│ │ │ │ ├── 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
│ │ │ │ ├── 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
│ │ │ │ ├── Ho_Chi_Minh
│ │ │ │ ├── Hong_Kong
│ │ │ │ ├── Hovd
│ │ │ │ ├── Irkutsk
│ │ │ │ ├── Istanbul
│ │ │ │ ├── Jakarta
│ │ │ │ ├── Jayapura
│ │ │ │ ├── Jerusalem
│ │ │ │ ├── Kabul
│ │ │ │ ├── Kamchatka
│ │ │ │ ├── Karachi
│ │ │ │ ├── Kashgar
│ │ │ │ ├── Katmandu
│ │ │ │ ├── Kolkata
│ │ │ │ ├── Krasnoyarsk
│ │ │ │ ├── Kuala_Lumpur
│ │ │ │ ├── Kuching
│ │ │ │ ├── Kuwait
│ │ │ │ ├── Macao
│ │ │ │ ├── Macau
│ │ │ │ ├── Magadan
│ │ │ │ ├── Makassar
│ │ │ │ ├── Manila
│ │ │ │ ├── Muscat
│ │ │ │ ├── Nicosia
│ │ │ │ ├── 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
│ │ │ │ ├── Vientiane
│ │ │ │ ├── Vladivostok
│ │ │ │ ├── Yakutsk
│ │ │ │ ├── Yekaterinburg
│ │ │ │ └── Yerevan
│ │ │ ├── Atlantic
│ │ │ │ ├── Azores
│ │ │ │ ├── Bermuda
│ │ │ │ ├── Canary
│ │ │ │ ├── Cape_Verde
│ │ │ │ ├── Faeroe
│ │ │ │ ├── Faroe
│ │ │ │ ├── Jan_Mayen
│ │ │ │ ├── Madeira
│ │ │ │ ├── Reykjavik
│ │ │ │ ├── South_Georgia
│ │ │ │ ├── Stanley
│ │ │ │ └── St_Helena
│ │ │ ├── Australia
│ │ │ │ ├── ACT
│ │ │ │ ├── Adelaide
│ │ │ │ ├── Brisbane
│ │ │ │ ├── Broken_Hill
│ │ │ │ ├── Canberra
│ │ │ │ ├── Currie
│ │ │ │ ├── Darwin
│ │ │ │ ├── Eucla
│ │ │ │ ├── Hobart
│ │ │ │ ├── LHI
│ │ │ │ ├── Lindeman
│ │ │ │ ├── Lord_Howe
│ │ │ │ ├── Melbourne
│ │ │ │ ├── North
│ │ │ │ ├── NSW
│ │ │ │ ├── Perth
│ │ │ │ ├── Queensland
│ │ │ │ ├── South
│ │ │ │ ├── Sydney
│ │ │ │ ├── Tasmania
│ │ │ │ ├── Victoria
│ │ │ │ ├── West
│ │ │ │ └── Yancowinna
│ │ │ ├── Brazil
│ │ │ │ ├── Acre
│ │ │ │ ├── DeNoronha
│ │ │ │ ├── East
│ │ │ │ └── West
│ │ │ ├── Canada
│ │ │ │ ├── Atlantic
│ │ │ │ ├── Central
│ │ │ │ ├── Eastern
│ │ │ │ ├── East-Saskatchewan
│ │ │ │ ├── Mountain
│ │ │ │ ├── Newfoundland
│ │ │ │ ├── Pacific
│ │ │ │ ├── Saskatchewan
│ │ │ │ └── Yukon
│ │ │ ├── CET
│ │ │ ├── Chile
│ │ │ │ ├── Continental
│ │ │ │ └── EasterIsland
│ │ │ ├── CST6CDT
│ │ │ ├── Cuba
│ │ │ ├── EET
│ │ │ ├── Egypt
│ │ │ ├── Eire
│ │ │ ├── EST
│ │ │ ├── EST5EDT
│ │ │ ├── Etc
│ │ │ │ ├── GMT
│ │ │ │ ├── GMT 0
│ │ │ │ ├── GMT-0
│ │ │ │ ├── GMT0
│ │ │ │ ├── GMT 1
│ │ │ │ ├── GMT-1
│ │ │ │ ├── GMT 10
│ │ │ │ ├── GMT-10
│ │ │ │ ├── GMT 11
│ │ │ │ ├── GMT-11
│ │ │ │ ├── GMT 12
│ │ │ │ ├── GMT-12
│ │ │ │ ├── GMT-13
│ │ │ │ ├── GMT-14
│ │ │ │ ├── GMT 2
│ │ │ │ ├── GMT-2
│ │ │ │ ├── GMT 3
│ │ │ │ ├── GMT-3
│ │ │ │ ├── GMT 4
│ │ │ │ ├── GMT-4
│ │ │ │ ├── GMT 5
│ │ │ │ ├── GMT-5
│ │ │ │ ├── GMT 6
│ │ │ │ ├── GMT-6
│ │ │ │ ├── GMT 7
│ │ │ │ ├── GMT-7
│ │ │ │ ├── GMT 8
│ │ │ │ ├── GMT-8
│ │ │ │ ├── GMT 9
│ │ │ │ ├── GMT-9
│ │ │ │ ├── Greenwich
│ │ │ │ ├── UCT
│ │ │ │ ├── Universal
│ │ │ │ ├── UTC
│ │ │ │ └── Zulu
│ │ │ ├── Europe
│ │ │ │ ├── Amsterdam
│ │ │ │ ├── Andorra
│ │ │ │ ├── Athens
│ │ │ │ ├── Belfast
│ │ │ │ ├── Belgrade
│ │ │ │ ├── Berlin
│ │ │ │ ├── Bratislava
│ │ │ │ ├── Brussels
│ │ │ │ ├── Bucharest
│ │ │ │ ├── Budapest
│ │ │ │ ├── Chisinau
│ │ │ │ ├── Copenhagen
│ │ │ │ ├── Dublin
│ │ │ │ ├── Gibraltar
│ │ │ │ ├── Guernsey
│ │ │ │ ├── Helsinki
│ │ │ │ ├── Isle_of_Man
│ │ │ │ ├── Istanbul
│ │ │ │ ├── Jersey
│ │ │ │ ├── Kaliningrad
│ │ │ │ ├── Kiev
│ │ │ │ ├── Lisbon
│ │ │ │ ├── Ljubljana
│ │ │ │ ├── London
│ │ │ │ ├── Luxembourg
│ │ │ │ ├── Madrid
│ │ │ │ ├── Malta
│ │ │ │ ├── Mariehamn
│ │ │ │ ├── Minsk
│ │ │ │ ├── Monaco
│ │ │ │ ├── Moscow
│ │ │ │ ├── Nicosia
│ │ │ │ ├── Oslo
│ │ │ │ ├── Paris
│ │ │ │ ├── Podgorica
│ │ │ │ ├── Prague
│ │ │ │ ├── Riga
│ │ │ │ ├── Rome
│ │ │ │ ├── Samara
│ │ │ │ ├── San_Marino
│ │ │ │ ├── Sarajevo
│ │ │ │ ├── Simferopol
│ │ │ │ ├── Skopje
│ │ │ │ ├── Sofia
│ │ │ │ ├── Stockholm
│ │ │ │ ├── Tallinn
│ │ │ │ ├── Tirane
│ │ │ │ ├── Tiraspol
│ │ │ │ ├── Uzhgorod
│ │ │ │ ├── Vaduz
│ │ │ │ ├── Vatican
│ │ │ │ ├── Vienna
│ │ │ │ ├── Vilnius
│ │ │ │ ├── Volgograd
│ │ │ │ ├── Warsaw
│ │ │ │ ├── Zagreb
│ │ │ │ ├── Zaporozhye
│ │ │ │ └── Zurich
│ │ │ ├── GB
│ │ │ ├── GB-Eire
│ │ │ ├── GMT
│ │ │ ├── GMT 0
│ │ │ ├── GMT-0
│ │ │ ├── GMT0
│ │ │ ├── Greenwich
│ │ │ ├── Hongkong
│ │ │ ├── HST
│ │ │ ├── Iceland
│ │ │ ├── Indian
│ │ │ │ ├── Antananarivo
│ │ │ │ ├── Chagos
│ │ │ │ ├── Christmas
│ │ │ │ ├── Cocos
│ │ │ │ ├── Comoro
│ │ │ │ ├── Kerguelen
│ │ │ │ ├── Mahe
│ │ │ │ ├── Maldives
│ │ │ │ ├── Mauritius
│ │ │ │ ├── Mayotte
│ │ │ │ └── Reunion
│ │ │ ├── Iran
│ │ │ ├── Israel
│ │ │ ├── Jamaica
│ │ │ ├── Japan
│ │ │ ├── Kwajalein
│ │ │ ├── Libya
│ │ │ ├── MET
│ │ │ ├── Mexico
│ │ │ │ ├── BajaNorte
│ │ │ │ ├── BajaSur
│ │ │ │ └── General
│ │ │ ├── MST
│ │ │ ├── MST7MDT
│ │ │ ├── Navajo
│ │ │ ├── NZ
│ │ │ ├── NZ-CHAT
│ │ │ ├── Pacific
│ │ │ │ ├── Apia
│ │ │ │ ├── Auckland
│ │ │ │ ├── Chatham
│ │ │ │ ├── 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
│ │ │ │ ├── Ponape
│ │ │ │ ├── Port_Moresby
│ │ │ │ ├── Rarotonga
│ │ │ │ ├── Saipan
│ │ │ │ ├── Samoa
│ │ │ │ ├── Tahiti
│ │ │ │ ├── Tarawa
│ │ │ │ ├── Tongatapu
│ │ │ │ ├── Truk
│ │ │ │ ├── Wake
│ │ │ │ ├── Wallis
│ │ │ │ └── Yap
│ │ │ ├── Poland
│ │ │ ├── Portugal
│ │ │ ├── PRC
│ │ │ ├── PST8PDT
│ │ │ ├── ROC
│ │ │ ├── ROK
│ │ │ ├── Singapore
│ │ │ ├── SystemV
│ │ │ │ ├── AST4
│ │ │ │ ├── AST4ADT
│ │ │ │ ├── CST6
│ │ │ │ ├── CST6CDT
│ │ │ │ ├── EST5
│ │ │ │ ├── EST5EDT
│ │ │ │ ├── HST10
│ │ │ │ ├── MST7
│ │ │ │ ├── MST7MDT
│ │ │ │ ├── PST8
│ │ │ │ ├── PST8PDT
│ │ │ │ ├── YST9
│ │ │ │ └── YST9YDT
│ │ │ ├── Turkey
│ │ │ ├── UCT
│ │ │ ├── Universal
│ │ │ ├── US
│ │ │ │ ├── Alaska
│ │ │ │ ├── Aleutian
│ │ │ │ ├── Arizona
│ │ │ │ ├── Central
│ │ │ │ ├── Eastern
│ │ │ │ ├── East-Indiana
│ │ │ │ ├── Hawaii
│ │ │ │ ├── Indiana-Starke
│ │ │ │ ├── Michigan
│ │ │ │ ├── Mountain
│ │ │ │ ├── Pacific
│ │ │ │ ├── Pacific-New
│ │ │ │ └── Samoa
│ │ │ ├── UTC
│ │ │ ├── WET
│ │ │ ├── W-SU
│ │ │ └── Zulu
│ │ └── word.tcl
│ ├── tcl85.lib
│ ├── tclConfig.sh
│ ├── tclstub85.lib
│ ├── tix8.4.3
│ │ ├── Balloon.tcl
│ │ ├── bitmaps
│ │ │ ├── act_fold.gif
│ │ │ ├── act_fold.xbm
│ │ │ ├── act_fold.xpm
│ │ │ ├── balarrow.xbm
│ │ │ ├── cbxarrow.xbm
│ │ │ ├── ck_def.xbm
│ │ │ ├── ck_off.xbm
│ │ │ ├── ck_on.xbm
│ │ │ ├── cross.xbm
│ │ │ ├── decr.xbm
│ │ │ ├── drop.xbm
│ │ │ ├── file.gif
│ │ │ ├── file.xbm
│ │ │ ├── file.xpm
│ │ │ ├── folder.gif
│ │ │ ├── folder.xbm
│ │ │ ├── folder.xpm
│ │ │ ├── harddisk.xbm
│ │ │ ├── hourglas.mask
│ │ │ ├── hourglas.xbm
│ │ │ ├── incr.xbm
│ │ │ ├── info.gif
│ │ │ ├── info.xpm
│ │ │ ├── maximize.xbm
│ │ │ ├── minimize.xbm
│ │ │ ├── minusarm.gif
│ │ │ ├── minusarm.xbm
│ │ │ ├── minusarm.xpm
│ │ │ ├── minus.gif
│ │ │ ├── minus.xbm
│ │ │ ├── minus.xpm
│ │ │ ├── mktransgif.tcl
│ │ │ ├── network.xbm
│ │ │ ├── no_entry.gif
│ │ │ ├── no_entry.xpm
│ │ │ ├── openfile.xbm
│ │ │ ├── openfold.gif
│ │ │ ├── openfold.xbm
│ │ │ ├── openfold.xpm
│ │ │ ├── plusarm.gif
│ │ │ ├── plusarm.xbm
│ │ │ ├── plusarm.xpm
│ │ │ ├── plus.gif
│ │ │ ├── plus.xbm
│ │ │ ├── plus.xpm
│ │ │ ├── resize1.xbm
│ │ │ ├── resize2.xbm
│ │ │ ├── restore.xbm
│ │ │ ├── srcfile.gif
│ │ │ ├── srcfile.xbm
│ │ │ ├── srcfile.xpm
│ │ │ ├── system.xbm
│ │ │ ├── textfile.gif
│ │ │ ├── textfile.xbm
│ │ │ ├── textfile.xpm
│ │ │ ├── tick.xbm
│ │ │ ├── warning.gif
│ │ │ └── warning.xpm
│ │ ├── BtnBox.tcl
│ │ ├── ChkList.tcl
│ │ ├── CObjView.tcl
│ │ ├── ComboBox.tcl
│ │ ├── Compat.tcl
│ │ ├── Console.tcl
│ │ ├── Control.tcl
│ │ ├── DefSchm.tcl
│ │ ├── demos
│ │ │ ├── bitmaps
│ │ │ │ ├── about.xpm
│ │ │ │ ├── bold.xbm
│ │ │ │ ├── capital.xbm
│ │ │ │ ├── centerj.xbm
│ │ │ │ ├── code.xpm
│ │ │ │ ├── combobox.xbm
│ │ │ │ ├── combobox.xpm
│ │ │ │ ├── drivea.xbm
│ │ │ │ ├── drivea.xpm
│ │ │ │ ├── exit.xpm
│ │ │ │ ├── filebox.xbm
│ │ │ │ ├── filebox.xpm
│ │ │ │ ├── harddisk.xbm
│ │ │ │ ├── harddisk.xpm
│ │ │ │ ├── italic.xbm
│ │ │ │ ├── justify.xbm
│ │ │ │ ├── leftj.xbm
│ │ │ │ ├── network.xbm
│ │ │ │ ├── network.xpm
│ │ │ │ ├── netw.xbm
│ │ │ │ ├── netw.xpm
│ │ │ │ ├── optmenu.xpm
│ │ │ │ ├── rightj.xbm
│ │ │ │ ├── select.xpm
│ │ │ │ ├── tix.gif
│ │ │ │ └── underlin.xbm
│ │ │ ├── MkChoose.tcl
│ │ │ ├── MkDirLis.tcl
│ │ │ ├── MkSample.tcl
│ │ │ ├── MkScroll.tcl
│ │ │ ├── samples
│ │ │ │ ├── AllSampl.tcl
│ │ │ │ ├── ArrowBtn.tcl
│ │ │ │ ├── Balloon.tcl
│ │ │ │ ├── BtnBox.tcl
│ │ │ │ ├── ChkList.tcl
│ │ │ │ ├── CmpImg1.tcl
│ │ │ │ ├── CmpImg2.tcl
│ │ │ │ ├── CmpImg3.tcl
│ │ │ │ ├── CmpImg4.tcl
│ │ │ │ ├── CmpImg.tcl
│ │ │ │ ├── CObjView.tcl
│ │ │ │ ├── ComboBox.tcl
│ │ │ │ ├── Control.tcl
│ │ │ │ ├── DirDlg.tcl
│ │ │ │ ├── DirList.tcl
│ │ │ │ ├── DirTree.tcl
│ │ │ │ ├── DragDrop.tcl
│ │ │ │ ├── DynTree.tcl
│ │ │ │ ├── EditGrid.tcl
│ │ │ │ ├── EFileDlg.tcl
│ │ │ │ ├── FileDlg.tcl
│ │ │ │ ├── FileEnt.tcl
│ │ │ │ ├── HList1.tcl
│ │ │ │ ├── LabEntry.tcl
│ │ │ │ ├── LabFrame.tcl
│ │ │ │ ├── ListNBK.tcl
│ │ │ │ ├── Meter.tcl
│ │ │ │ ├── NoteBook.tcl
│ │ │ │ ├── OptMenu.tcl
│ │ │ │ ├── PanedWin.tcl
│ │ │ │ ├── PopMenu.tcl
│ │ │ │ ├── Sample.tcl
│ │ │ │ ├── Select.tcl
│ │ │ │ ├── SGrid0.tcl
│ │ │ │ ├── SGrid1.tcl
│ │ │ │ ├── SHList2.tcl
│ │ │ │ ├── SHList.tcl
│ │ │ │ ├── SListBox.tcl
│ │ │ │ ├── StdBBox.tcl
│ │ │ │ ├── SText.tcl
│ │ │ │ ├── STList1.tcl
│ │ │ │ ├── STList2.tcl
│ │ │ │ ├── STList3.tcl
│ │ │ │ ├── SWindow.tcl
│ │ │ │ ├── Tree.tcl
│ │ │ │ ├── Xpm1.tcl
│ │ │ │ └── Xpm.tcl
│ │ │ ├── tclIndex
│ │ │ ├── tixwidgets.tcl
│ │ │ └── widget
│ │ ├── DialogS.tcl
│ │ ├── DirBox.tcl
│ │ ├── DirDlg.tcl
│ │ ├── DirList.tcl
│ │ ├── DirTree.tcl
│ │ ├── DragDrop.tcl
│ │ ├── DtlList.tcl
│ │ ├── EFileBox.tcl
│ │ ├── EFileDlg.tcl
│ │ ├── Event.tcl
│ │ ├── FileBox.tcl
│ │ ├── FileCbx.tcl
│ │ ├── FileDlg.tcl
│ │ ├── FileEnt.tcl
│ │ ├── FloatEnt.tcl
│ │ ├── fs.tcl
│ │ ├── Grid.tcl
│ │ ├── HListDD.tcl
│ │ ├── HList.tcl
│ │ ├── IconView.tcl
│ │ ├── Init.tcl
│ │ ├── LabEntry.tcl
│ │ ├── LabFrame.tcl
│ │ ├── LabWidg.tcl
│ │ ├── ListNBk.tcl
│ │ ├── Makefile
│ │ ├── Meter.tcl
│ │ ├── MultView.tcl
│ │ ├── NoteBook.tcl
│ │ ├── OldUtil.tcl
│ │ ├── OptMenu.tcl
│ │ ├── PanedWin.tcl
│ │ ├── pkgIndex.tcl
│ │ ├── PopMenu.tcl
│ │ ├── pref
│ │ │ ├── 10Point.fs
│ │ │ ├── 10Point.fsc
│ │ │ ├── 12Point.fs
│ │ │ ├── 12Point.fsc
│ │ │ ├── 14Point.fs
│ │ │ ├── 14Point.fsc
│ │ │ ├── Bisque.cs
│ │ │ ├── Bisque.csc
│ │ │ ├── Blue.cs
│ │ │ ├── Blue.csc
│ │ │ ├── Gray.cs
│ │ │ ├── Gray.csc
│ │ │ ├── Makefile
│ │ │ ├── Old12Pt.fs
│ │ │ ├── Old14Pt.fs
│ │ │ ├── pkgIndex.tcl
│ │ │ ├── SGIGray.cs
│ │ │ ├── SGIGray.csc
│ │ │ ├── TixGray.cs
│ │ │ ├── TixGray.csc
│ │ │ ├── tixmkpref
│ │ │ ├── TK.cs
│ │ │ ├── TK.csc
│ │ │ ├── TK.fs
│ │ │ ├── TK.fsc
│ │ │ ├── TkWin.cs
│ │ │ ├── TkWin.csc
│ │ │ ├── TkWin.fs
│ │ │ ├── TkWin.fsc
│ │ │ ├── WmDefault.cs
│ │ │ ├── WmDefault.csc
│ │ │ ├── WmDefault.fs
│ │ │ ├── WmDefault.fsc
│ │ │ ├── WmDefault.py
│ │ │ ├── WmDefault.tcl
│ │ │ └── WmDefault.txt
│ │ ├── Primitiv.tcl
│ │ ├── ResizeH.tcl
│ │ ├── Select.tcl
│ │ ├── SGrid.tcl
│ │ ├── Shell.tcl
│ │ ├── SHList.tcl
│ │ ├── SimpDlg.tcl
│ │ ├── SListBox.tcl
│ │ ├── StackWin.tcl
│ │ ├── StatBar.tcl
│ │ ├── StdBBox.tcl
│ │ ├── StdShell.tcl
│ │ ├── SText.tcl
│ │ ├── STList.tcl
│ │ ├── SWidget.tcl
│ │ ├── SWindow.tcl
│ │ ├── tix84.dll
│ │ ├── tix84.lib
│ │ ├── Tix.tcl
│ │ ├── TList.tcl
│ │ ├── Tree.tcl
│ │ ├── Utils.tcl
│ │ ├── Variable.tcl
│ │ ├── VResize.tcl
│ │ ├── VStack.tcl
│ │ ├── VTree.tcl
│ │ └── WInfo.tcl
│ ├── tk8.5
│ │ ├── bgerror.tcl
│ │ ├── button.tcl
│ │ ├── choosedir.tcl
│ │ ├── clrpick.tcl
│ │ ├── comdlg.tcl
│ │ ├── console.tcl
│ │ ├── demos
│ │ │ ├── anilabel.tcl
│ │ │ ├── aniwave.tcl
│ │ │ ├── arrow.tcl
│ │ │ ├── bind.tcl
│ │ │ ├── bitmap.tcl
│ │ │ ├── browse
│ │ │ ├── button.tcl
│ │ │ ├── check.tcl
│ │ │ ├── clrpick.tcl
│ │ │ ├── colors.tcl
│ │ │ ├── combo.tcl
│ │ │ ├── cscroll.tcl
│ │ │ ├── ctext.tcl
│ │ │ ├── dialog1.tcl
│ │ │ ├── dialog2.tcl
│ │ │ ├── en.msg
│ │ │ ├── entry1.tcl
│ │ │ ├── entry2.tcl
│ │ │ ├── entry3.tcl
│ │ │ ├── filebox.tcl
│ │ │ ├── floor.tcl
│ │ │ ├── form.tcl
│ │ │ ├── goldberg.tcl
│ │ │ ├── hello
│ │ │ ├── hscale.tcl
│ │ │ ├── icon.tcl
│ │ │ ├── image1.tcl
│ │ │ ├── image2.tcl
│ │ │ ├── images
│ │ │ │ ├── earth.gif
│ │ │ │ ├── earthris.gif
│ │ │ │ ├── face.xbm
│ │ │ │ ├── flagdown.xbm
│ │ │ │ ├── flagup.xbm
│ │ │ │ ├── gray25.xbm
│ │ │ │ ├── letters.xbm
│ │ │ │ ├── noletter.xbm
│ │ │ │ ├── pattern.xbm
│ │ │ │ ├── tcllogo.gif
│ │ │ │ └── teapot.ppm
│ │ │ ├── items.tcl
│ │ │ ├── ixset
│ │ │ ├── knightstour.tcl
│ │ │ ├── labelframe.tcl
│ │ │ ├── label.tcl
│ │ │ ├── license.terms
│ │ │ ├── mclist.tcl
│ │ │ ├── menubu.tcl
│ │ │ ├── menu.tcl
│ │ │ ├── msgbox.tcl
│ │ │ ├── nl.msg
│ │ │ ├── paned1.tcl
│ │ │ ├── paned2.tcl
│ │ │ ├── pendulum.tcl
│ │ │ ├── plot.tcl
│ │ │ ├── puzzle.tcl
│ │ │ ├── radio.tcl
│ │ │ ├── README
│ │ │ ├── rmt
│ │ │ ├── rolodex
│ │ │ ├── ruler.tcl
│ │ │ ├── sayings.tcl
│ │ │ ├── search.tcl
│ │ │ ├── spin.tcl
│ │ │ ├── square
│ │ │ ├── states.tcl
│ │ │ ├── style.tcl
│ │ │ ├── tclIndex
│ │ │ ├── tcolor
│ │ │ ├── textpeer.tcl
│ │ │ ├── text.tcl
│ │ │ ├── timer
│ │ │ ├── toolbar.tcl
│ │ │ ├── tree.tcl
│ │ │ ├── ttkbut.tcl
│ │ │ ├── ttkmenu.tcl
│ │ │ ├── ttknote.tcl
│ │ │ ├── ttkpane.tcl
│ │ │ ├── ttkprogress.tcl
│ │ │ ├── twind.tcl
│ │ │ ├── unicodeout.tcl
│ │ │ ├── vscale.tcl
│ │ │ └── widget
│ │ ├── dialog.tcl
│ │ ├── entry.tcl
│ │ ├── focus.tcl
│ │ ├── images
│ │ │ ├── logo100.gif
│ │ │ ├── logo64.gif
│ │ │ ├── logo.eps
│ │ │ ├── logoLarge.gif
│ │ │ ├── logoMed.gif
│ │ │ ├── pwrdLogo100.gif
│ │ │ ├── pwrdLogo150.gif
│ │ │ ├── pwrdLogo175.gif
│ │ │ ├── pwrdLogo200.gif
│ │ │ ├── pwrdLogo75.gif
│ │ │ ├── pwrdLogo.eps
│ │ │ ├── README
│ │ │ └── tai-ku.gif
│ │ ├── license.terms
│ │ ├── listbox.tcl
│ │ ├── menu.tcl
│ │ ├── mkpsenc.tcl
│ │ ├── msgbox.tcl
│ │ ├── msgs
│ │ │ ├── cs.msg
│ │ │ ├── da.msg
│ │ │ ├── de.msg
│ │ │ ├── el.msg
│ │ │ ├── en_gb.msg
│ │ │ ├── en.msg
│ │ │ ├── eo.msg
│ │ │ ├── es.msg
│ │ │ ├── fr.msg
│ │ │ ├── hu.msg
│ │ │ ├── it.msg
│ │ │ ├── nl.msg
│ │ │ ├── pl.msg
│ │ │ ├── pt.msg
│ │ │ ├── ru.msg
│ │ │ └── sv.msg
│ │ ├── obsolete.tcl
│ │ ├── optMenu.tcl
│ │ ├── palette.tcl
│ │ ├── panedwindow.tcl
│ │ ├── pkgIndex.tcl
│ │ ├── safetk.tcl
│ │ ├── scale.tcl
│ │ ├── scrlbar.tcl
│ │ ├── spinbox.tcl
│ │ ├── tclIndex
│ │ ├── tearoff.tcl
│ │ ├── text.tcl
│ │ ├── tkfbox.tcl
│ │ ├── tk.tcl
│ │ ├── ttk
│ │ │ ├── altTheme.tcl
│ │ │ ├── aquaTheme.tcl
│ │ │ ├── button.tcl
│ │ │ ├── clamTheme.tcl
│ │ │ ├── classicTheme.tcl
│ │ │ ├── combobox.tcl
│ │ │ ├── cursors.tcl
│ │ │ ├── defaults.tcl
│ │ │ ├── entry.tcl
│ │ │ ├── fonts.tcl
│ │ │ ├── menubutton.tcl
│ │ │ ├── notebook.tcl
│ │ │ ├── panedwindow.tcl
│ │ │ ├── progress.tcl
│ │ │ ├── scale.tcl
│ │ │ ├── scrollbar.tcl
│ │ │ ├── sizegrip.tcl
│ │ │ ├── treeview.tcl
│ │ │ ├── ttk.tcl
│ │ │ ├── utils.tcl
│ │ │ ├── winTheme.tcl
│ │ │ └── xpTheme.tcl
│ │ ├── unsupported.tcl
│ │ └── xmfbox.tcl
│ ├── tk85.lib
│ └── tkstub85.lib
├── Tools
│ ├── i18n
│ │ ├── makelocalealias.py
│ │ ├── msgfmt.py
│ │ └── pygettext.py
│ ├── pynche
│ │ ├── ChipViewer.py
│ │ ├── ColorDB.py
│ │ ├── DetailsViewer.py
│ │ ├── html40colors.txt
│ │ ├── __init__.py
│ │ ├── ListViewer.py
│ │ ├── Main.py
│ │ ├── namedcolors.txt
│ │ ├── pyColorChooser.py
│ │ ├── pynche.pyw
│ │ ├── PyncheWidget.py
│ │ ├── README.txt
│ │ ├── StripViewer.py
│ │ ├── Switchboard.py
│ │ ├── TextViewer.py
│ │ ├── TypeinViewer.py
│ │ ├── webcolors.txt
│ │ ├── websafe.txt
│ │ └── X
│ │ ├── rgb.txt
│ │ └── xlicense.txt
│ ├── Scripts
│ │ ├── 2to3.py
│ │ ├── byext.py
│ │ ├── byteyears.py
│ │ ├── checkappend.py
│ │ ├── checkpyc.py
│ │ ├── classfix.py
│ │ ├── cleanfuture.py
│ │ ├── combinerefs.py
│ │ ├── copytime.py
│ │ ├── crlf.py
│ │ ├── cvsfiles.py
│ │ ├── db2pickle.py
│ │ ├── diff.py
│ │ ├── dutree.py
│ │ ├── eptags.py
│ │ ├── finddiv.py
│ │ ├── findlinksto.py
│ │ ├── findnocoding.py
│ │ ├── 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
│ │ ├── README.txt
│ │ ├── redemo.py
│ │ ├── reindent.py
│ │ ├── rgrep.py
│ │ ├── setup.py
│ │ ├── suff.py
│ │ ├── svneol.py
│ │ ├── texcheck.py
│ │ ├── texi2html.py
│ │ ├── treesync.py
│ │ ├── untabify.py
│ │ ├── which.py
│ │ ├── win_add2path.py
│ │ └── xxci.py
│ ├── versioncheck
│ │ ├── _checkversion.py
│ │ ├── checkversions.py
│ │ ├── pyversioncheck.py
│ │ └── README.txt
│ └── webchecker
│ ├── README.txt
│ ├── tktools.py
│ ├── wcgui.py
│ ├── wcmac.py
│ ├── webchecker.py
│ ├── websucker.py
│ └── wsgui.py
└── w9xpopen.exe
202 directories, 5083 files
标签: matplotlib python numpy Setup tools
python2.6(32位免安装版)+numpy+setuptools+matplotlib+six+dateutil+pyparsing
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论