com.googler.python 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +7 -0
- package/python3 +6 -0
- package/python3.4.2/bin/2to3 +5 -0
- package/python3.4.2/bin/2to3-3.4 +5 -0
- package/python3.4.2/bin/android-debian-builder +10 -0
- package/python3.4.2/bin/easy_install-3.4 +11 -0
- package/python3.4.2/bin/idle3 +5 -0
- package/python3.4.2/bin/idle3.4 +5 -0
- package/python3.4.2/bin/pip3 +11 -0
- package/python3.4.2/bin/pip3.4 +11 -0
- package/python3.4.2/bin/pydoc3 +5 -0
- package/python3.4.2/bin/pydoc3.4 +5 -0
- package/python3.4.2/bin/python3-config +111 -0
- package/python3.4.2/bin/python3.4 +0 -0
- package/python3.4.2/bin/python3.4-config +111 -0
- package/python3.4.2/bin/python3.4m-config +111 -0
- package/python3.4.2/bin/pyvenv +11 -0
- package/python3.4.2/bin/pyvenv-3.4 +11 -0
- package/python3.4.2/include/python3.4m/Python-ast.h +569 -0
- package/python3.4.2/include/python3.4m/Python.h +133 -0
- package/python3.4.2/include/python3.4m/abstract.h +1267 -0
- package/python3.4.2/include/python3.4m/accu.h +37 -0
- package/python3.4.2/include/python3.4m/asdl.h +45 -0
- package/python3.4.2/include/python3.4m/ast.h +22 -0
- package/python3.4.2/include/python3.4m/bitset.h +32 -0
- package/python3.4.2/include/python3.4m/bltinmodule.h +14 -0
- package/python3.4.2/include/python3.4m/boolobject.h +34 -0
- package/python3.4.2/include/python3.4m/bytearrayobject.h +62 -0
- package/python3.4.2/include/python3.4m/bytes_methods.h +46 -0
- package/python3.4.2/include/python3.4m/bytesobject.h +128 -0
- package/python3.4.2/include/python3.4m/cellobject.h +29 -0
- package/python3.4.2/include/python3.4m/ceval.h +205 -0
- package/python3.4.2/include/python3.4m/classobject.h +58 -0
- package/python3.4.2/include/python3.4m/code.h +115 -0
- package/python3.4.2/include/python3.4m/codecs.h +233 -0
- package/python3.4.2/include/python3.4m/compile.h +72 -0
- package/python3.4.2/include/python3.4m/complexobject.h +77 -0
- package/python3.4.2/include/python3.4m/datetime.h +243 -0
- package/python3.4.2/include/python3.4m/descrobject.h +105 -0
- package/python3.4.2/include/python3.4m/dictobject.h +126 -0
- package/python3.4.2/include/python3.4m/dtoa.h +19 -0
- package/python3.4.2/include/python3.4m/dynamic_annotations.h +499 -0
- package/python3.4.2/include/python3.4m/enumobject.h +17 -0
- package/python3.4.2/include/python3.4m/errcode.h +38 -0
- package/python3.4.2/include/python3.4m/eval.h +27 -0
- package/python3.4.2/include/python3.4m/fileobject.h +58 -0
- package/python3.4.2/include/python3.4m/fileutils.h +79 -0
- package/python3.4.2/include/python3.4m/floatobject.h +128 -0
- package/python3.4.2/include/python3.4m/frameobject.h +95 -0
- package/python3.4.2/include/python3.4m/funcobject.h +89 -0
- package/python3.4.2/include/python3.4m/genobject.h +46 -0
- package/python3.4.2/include/python3.4m/graminit.h +84 -0
- package/python3.4.2/include/python3.4m/grammar.h +93 -0
- package/python3.4.2/include/python3.4m/import.h +130 -0
- package/python3.4.2/include/python3.4m/intrcheck.h +21 -0
- package/python3.4.2/include/python3.4m/iterobject.h +25 -0
- package/python3.4.2/include/python3.4m/listobject.h +80 -0
- package/python3.4.2/include/python3.4m/longintrepr.h +103 -0
- package/python3.4.2/include/python3.4m/longobject.h +204 -0
- package/python3.4.2/include/python3.4m/marshal.h +28 -0
- package/python3.4.2/include/python3.4m/memoryobject.h +74 -0
- package/python3.4.2/include/python3.4m/metagrammar.h +18 -0
- package/python3.4.2/include/python3.4m/methodobject.h +93 -0
- package/python3.4.2/include/python3.4m/modsupport.h +132 -0
- package/python3.4.2/include/python3.4m/moduleobject.h +63 -0
- package/python3.4.2/include/python3.4m/namespaceobject.h +17 -0
- package/python3.4.2/include/python3.4m/node.h +44 -0
- package/python3.4.2/include/python3.4m/object.h +1015 -0
- package/python3.4.2/include/python3.4m/objimpl.h +361 -0
- package/python3.4.2/include/python3.4m/opcode.h +159 -0
- package/python3.4.2/include/python3.4m/osdefs.h +50 -0
- package/python3.4.2/include/python3.4m/parsetok.h +108 -0
- package/python3.4.2/include/python3.4m/patchlevel.h +35 -0
- package/python3.4.2/include/python3.4m/pgen.h +18 -0
- package/python3.4.2/include/python3.4m/pgenheaders.h +42 -0
- package/python3.4.2/include/python3.4m/py_curses.h +177 -0
- package/python3.4.2/include/python3.4m/pyarena.h +64 -0
- package/python3.4.2/include/python3.4m/pyatomic.h +184 -0
- package/python3.4.2/include/python3.4m/pycapsule.h +59 -0
- package/python3.4.2/include/python3.4m/pyconfig.h +1503 -0
- package/python3.4.2/include/python3.4m/pyctype.h +33 -0
- package/python3.4.2/include/python3.4m/pydebug.h +34 -0
- package/python3.4.2/include/python3.4m/pyerrors.h +464 -0
- package/python3.4.2/include/python3.4m/pyexpat.h +53 -0
- package/python3.4.2/include/python3.4m/pyfpe.h +176 -0
- package/python3.4.2/include/python3.4m/pygetopt.h +21 -0
- package/python3.4.2/include/python3.4m/pyhash.h +149 -0
- package/python3.4.2/include/python3.4m/pymacconfig.h +102 -0
- package/python3.4.2/include/python3.4m/pymacro.h +78 -0
- package/python3.4.2/include/python3.4m/pymath.h +190 -0
- package/python3.4.2/include/python3.4m/pymem.h +183 -0
- package/python3.4.2/include/python3.4m/pyport.h +883 -0
- package/python3.4.2/include/python3.4m/pystate.h +271 -0
- package/python3.4.2/include/python3.4m/pystrcmp.h +23 -0
- package/python3.4.2/include/python3.4m/pystrtod.h +41 -0
- package/python3.4.2/include/python3.4m/pythonrun.h +304 -0
- package/python3.4.2/include/python3.4m/pythread.h +93 -0
- package/python3.4.2/include/python3.4m/pytime.h +105 -0
- package/python3.4.2/include/python3.4m/rangeobject.h +27 -0
- package/python3.4.2/include/python3.4m/setobject.h +113 -0
- package/python3.4.2/include/python3.4m/sliceobject.h +50 -0
- package/python3.4.2/include/python3.4m/structmember.h +76 -0
- package/python3.4.2/include/python3.4m/structseq.h +49 -0
- package/python3.4.2/include/python3.4m/symtable.h +122 -0
- package/python3.4.2/include/python3.4m/sysmodule.h +43 -0
- package/python3.4.2/include/python3.4m/token.h +87 -0
- package/python3.4.2/include/python3.4m/traceback.h +72 -0
- package/python3.4.2/include/python3.4m/tupleobject.h +73 -0
- package/python3.4.2/include/python3.4m/typeslots.h +76 -0
- package/python3.4.2/include/python3.4m/ucnhash.h +36 -0
- package/python3.4.2/include/python3.4m/unicodeobject.h +2271 -0
- package/python3.4.2/include/python3.4m/warnings.h +54 -0
- package/python3.4.2/include/python3.4m/weakrefobject.h +86 -0
- package/python3.4.2/lib/pkgconfig/python-3.4.pc +13 -0
- package/python3.4.2/lib/pkgconfig/python-3.4m.pc +13 -0
- package/python3.4.2/lib/pkgconfig/python3.pc +13 -0
- package/python3.4.2/lib/python3.4/LICENSE.txt +254 -0
- package/python3.4.2/lib/python3.4/__future__.py +134 -0
- package/python3.4.2/lib/python3.4/__phello__.foo.py +1 -0
- package/python3.4.2/lib/python3.4/__pycache__/_bootlocale.cpython-34.pyc +0 -0
- package/python3.4.2/lib/python3.4/__pycache__/_collections_abc.cpython-34.pyc +0 -0
- package/python3.4.2/lib/python3.4/__pycache__/_sitebuiltins.cpython-34.pyc +0 -0
- package/python3.4.2/lib/python3.4/__pycache__/_sysconfigdata.cpython-34.pyc +0 -0
- package/python3.4.2/lib/python3.4/__pycache__/_weakrefset.cpython-34.pyc +0 -0
- package/python3.4.2/lib/python3.4/__pycache__/abc.cpython-34.pyc +0 -0
- package/python3.4.2/lib/python3.4/__pycache__/codecs.cpython-34.pyc +0 -0
- package/python3.4.2/lib/python3.4/__pycache__/genericpath.cpython-34.pyc +0 -0
- package/python3.4.2/lib/python3.4/__pycache__/io.cpython-34.pyc +0 -0
- package/python3.4.2/lib/python3.4/__pycache__/os.cpython-34.pyc +0 -0
- package/python3.4.2/lib/python3.4/__pycache__/posixpath.cpython-34.pyc +0 -0
- package/python3.4.2/lib/python3.4/__pycache__/rlcompleter.cpython-34.pyc +0 -0
- package/python3.4.2/lib/python3.4/__pycache__/site.cpython-34.pyc +0 -0
- package/python3.4.2/lib/python3.4/__pycache__/stat.cpython-34.pyc +0 -0
- package/python3.4.2/lib/python3.4/__pycache__/sysconfig.cpython-34.pyc +0 -0
- package/python3.4.2/lib/python3.4/_bootlocale.py +34 -0
- package/python3.4.2/lib/python3.4/_collections_abc.py +753 -0
- package/python3.4.2/lib/python3.4/_compat_pickle.py +137 -0
- package/python3.4.2/lib/python3.4/_dummy_thread.py +155 -0
- package/python3.4.2/lib/python3.4/_markupbase.py +395 -0
- package/python3.4.2/lib/python3.4/_osx_support.py +502 -0
- package/python3.4.2/lib/python3.4/_pyio.py +2105 -0
- package/python3.4.2/lib/python3.4/_sitebuiltins.py +103 -0
- package/python3.4.2/lib/python3.4/_strptime.py +511 -0
- package/python3.4.2/lib/python3.4/_sysconfigdata.py +710 -0
- package/python3.4.2/lib/python3.4/_threading_local.py +246 -0
- package/python3.4.2/lib/python3.4/_weakrefset.py +196 -0
- package/python3.4.2/lib/python3.4/abc.py +248 -0
- package/python3.4.2/lib/python3.4/aifc.py +918 -0
- package/python3.4.2/lib/python3.4/antigravity.py +17 -0
- package/python3.4.2/lib/python3.4/argparse.py +2379 -0
- package/python3.4.2/lib/python3.4/ast.py +315 -0
- package/python3.4.2/lib/python3.4/asynchat.py +333 -0
- package/python3.4.2/lib/python3.4/asyncio/__init__.py +48 -0
- package/python3.4.2/lib/python3.4/asyncio/base_events.py +1055 -0
- package/python3.4.2/lib/python3.4/asyncio/base_subprocess.py +197 -0
- package/python3.4.2/lib/python3.4/asyncio/constants.py +7 -0
- package/python3.4.2/lib/python3.4/asyncio/coroutines.py +195 -0
- package/python3.4.2/lib/python3.4/asyncio/events.py +586 -0
- package/python3.4.2/lib/python3.4/asyncio/futures.py +411 -0
- package/python3.4.2/lib/python3.4/asyncio/locks.py +469 -0
- package/python3.4.2/lib/python3.4/asyncio/log.py +7 -0
- package/python3.4.2/lib/python3.4/asyncio/proactor_events.py +499 -0
- package/python3.4.2/lib/python3.4/asyncio/protocols.py +129 -0
- package/python3.4.2/lib/python3.4/asyncio/queues.py +288 -0
- package/python3.4.2/lib/python3.4/asyncio/selector_events.py +996 -0
- package/python3.4.2/lib/python3.4/asyncio/streams.py +485 -0
- package/python3.4.2/lib/python3.4/asyncio/subprocess.py +228 -0
- package/python3.4.2/lib/python3.4/asyncio/tasks.py +658 -0
- package/python3.4.2/lib/python3.4/asyncio/test_utils.py +425 -0
- package/python3.4.2/lib/python3.4/asyncio/transports.py +298 -0
- package/python3.4.2/lib/python3.4/asyncio/unix_events.py +922 -0
- package/python3.4.2/lib/python3.4/asyncio/windows_events.py +634 -0
- package/python3.4.2/lib/python3.4/asyncio/windows_utils.py +207 -0
- package/python3.4.2/lib/python3.4/asyncore.py +666 -0
- package/python3.4.2/lib/python3.4/base64.py +602 -0
- package/python3.4.2/lib/python3.4/bdb.py +673 -0
- package/python3.4.2/lib/python3.4/binhex.py +471 -0
- package/python3.4.2/lib/python3.4/bisect.py +92 -0
- package/python3.4.2/lib/python3.4/bz2.py +521 -0
- package/python3.4.2/lib/python3.4/cProfile.py +160 -0
- package/python3.4.2/lib/python3.4/calendar.py +703 -0
- package/python3.4.2/lib/python3.4/cgi.py +1061 -0
- package/python3.4.2/lib/python3.4/cgitb.py +320 -0
- package/python3.4.2/lib/python3.4/chunk.py +167 -0
- package/python3.4.2/lib/python3.4/cmd.py +401 -0
- package/python3.4.2/lib/python3.4/code.py +302 -0
- package/python3.4.2/lib/python3.4/codecs.py +1110 -0
- package/python3.4.2/lib/python3.4/codeop.py +168 -0
- package/python3.4.2/lib/python3.4/collections/__init__.py +1132 -0
- package/python3.4.2/lib/python3.4/collections/__main__.py +38 -0
- package/python3.4.2/lib/python3.4/collections/abc.py +2 -0
- package/python3.4.2/lib/python3.4/colorsys.py +164 -0
- package/python3.4.2/lib/python3.4/compileall.py +241 -0
- package/python3.4.2/lib/python3.4/concurrent/__init__.py +1 -0
- package/python3.4.2/lib/python3.4/concurrent/futures/__init__.py +18 -0
- package/python3.4.2/lib/python3.4/concurrent/futures/_base.py +575 -0
- package/python3.4.2/lib/python3.4/concurrent/futures/process.py +427 -0
- package/python3.4.2/lib/python3.4/concurrent/futures/thread.py +132 -0
- package/python3.4.2/lib/python3.4/config-3.4m/Makefile +1835 -0
- package/python3.4.2/lib/python3.4/config-3.4m/Setup +466 -0
- package/python3.4.2/lib/python3.4/config-3.4m/Setup.config +13 -0
- package/python3.4.2/lib/python3.4/config-3.4m/Setup.local +1 -0
- package/python3.4.2/lib/python3.4/config-3.4m/config.c +234 -0
- package/python3.4.2/lib/python3.4/config-3.4m/config.c.in +67 -0
- package/python3.4.2/lib/python3.4/config-3.4m/install-sh +294 -0
- package/python3.4.2/lib/python3.4/config-3.4m/makesetup +293 -0
- package/python3.4.2/lib/python3.4/config-3.4m/python-config.py +68 -0
- package/python3.4.2/lib/python3.4/configparser.py +1254 -0
- package/python3.4.2/lib/python3.4/contextlib.py +340 -0
- package/python3.4.2/lib/python3.4/copy.py +333 -0
- package/python3.4.2/lib/python3.4/copyreg.py +202 -0
- package/python3.4.2/lib/python3.4/crypt.py +62 -0
- package/python3.4.2/lib/python3.4/csv.py +449 -0
- package/python3.4.2/lib/python3.4/ctypes/__init__.py +541 -0
- package/python3.4.2/lib/python3.4/ctypes/_endian.py +59 -0
- package/python3.4.2/lib/python3.4/ctypes/macholib/README.ctypes +7 -0
- package/python3.4.2/lib/python3.4/ctypes/macholib/__init__.py +9 -0
- package/python3.4.2/lib/python3.4/ctypes/macholib/dyld.py +158 -0
- package/python3.4.2/lib/python3.4/ctypes/macholib/dylib.py +63 -0
- package/python3.4.2/lib/python3.4/ctypes/macholib/fetch_macholib +2 -0
- package/python3.4.2/lib/python3.4/ctypes/macholib/fetch_macholib.bat +1 -0
- package/python3.4.2/lib/python3.4/ctypes/macholib/framework.py +65 -0
- package/python3.4.2/lib/python3.4/ctypes/test/__init__.py +14 -0
- package/python3.4.2/lib/python3.4/ctypes/test/__main__.py +4 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_anon.py +60 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_array_in_pointer.py +64 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_arrays.py +181 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_as_parameter.py +226 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_bitfields.py +263 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_buffers.py +64 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_bytes.py +65 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_byteswap.py +295 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_callbacks.py +247 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_cast.py +86 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_cfuncs.py +212 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_checkretval.py +36 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_delattr.py +21 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_errno.py +79 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_find.py +81 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_frombuffer.py +81 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_funcptr.py +127 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_functions.py +402 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_incomplete.py +42 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_init.py +40 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_internals.py +100 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_keeprefs.py +153 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_libc.py +33 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_loading.py +119 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_macholib.py +63 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_memfunctions.py +79 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_numbers.py +290 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_objects.py +67 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_parameters.py +176 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_pep3118.py +206 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_pickling.py +83 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_pointers.py +192 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_prototypes.py +219 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_python_api.py +89 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_random_things.py +74 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_refcounts.py +101 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_repr.py +29 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_returnfuncptrs.py +67 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_simplesubclasses.py +55 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_sizes.py +34 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_slicing.py +167 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_stringptr.py +77 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_strings.py +225 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_struct_fields.py +50 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_structures.py +468 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_unaligned_structures.py +45 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_unicode.py +56 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_values.py +95 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_varsize_struct.py +50 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_win32.py +119 -0
- package/python3.4.2/lib/python3.4/ctypes/test/test_wintypes.py +41 -0
- package/python3.4.2/lib/python3.4/ctypes/util.py +267 -0
- package/python3.4.2/lib/python3.4/ctypes/wintypes.py +202 -0
- package/python3.4.2/lib/python3.4/curses/__init__.py +101 -0
- package/python3.4.2/lib/python3.4/curses/ascii.py +99 -0
- package/python3.4.2/lib/python3.4/curses/has_key.py +192 -0
- package/python3.4.2/lib/python3.4/curses/panel.py +6 -0
- package/python3.4.2/lib/python3.4/curses/textpad.py +188 -0
- package/python3.4.2/lib/python3.4/datetime.py +2136 -0
- package/python3.4.2/lib/python3.4/dbm/__init__.py +188 -0
- package/python3.4.2/lib/python3.4/dbm/dumb.py +291 -0
- package/python3.4.2/lib/python3.4/dbm/gnu.py +3 -0
- package/python3.4.2/lib/python3.4/dbm/ndbm.py +3 -0
- package/python3.4.2/lib/python3.4/decimal.py +6414 -0
- package/python3.4.2/lib/python3.4/difflib.py +2039 -0
- package/python3.4.2/lib/python3.4/dis.py +475 -0
- package/python3.4.2/lib/python3.4/distutils/README +13 -0
- package/python3.4.2/lib/python3.4/distutils/__init__.py +17 -0
- package/python3.4.2/lib/python3.4/distutils/archive_util.py +245 -0
- package/python3.4.2/lib/python3.4/distutils/bcppcompiler.py +393 -0
- package/python3.4.2/lib/python3.4/distutils/ccompiler.py +1115 -0
- package/python3.4.2/lib/python3.4/distutils/cmd.py +435 -0
- package/python3.4.2/lib/python3.4/distutils/command/__init__.py +31 -0
- package/python3.4.2/lib/python3.4/distutils/command/bdist.py +142 -0
- package/python3.4.2/lib/python3.4/distutils/command/bdist_dumb.py +122 -0
- package/python3.4.2/lib/python3.4/distutils/command/bdist_msi.py +741 -0
- package/python3.4.2/lib/python3.4/distutils/command/bdist_rpm.py +582 -0
- package/python3.4.2/lib/python3.4/distutils/command/bdist_wininst.py +349 -0
- package/python3.4.2/lib/python3.4/distutils/command/build.py +148 -0
- package/python3.4.2/lib/python3.4/distutils/command/build_clib.py +209 -0
- package/python3.4.2/lib/python3.4/distutils/command/build_ext.py +735 -0
- package/python3.4.2/lib/python3.4/distutils/command/build_py.py +416 -0
- package/python3.4.2/lib/python3.4/distutils/command/build_scripts.py +160 -0
- package/python3.4.2/lib/python3.4/distutils/command/check.py +145 -0
- package/python3.4.2/lib/python3.4/distutils/command/clean.py +76 -0
- package/python3.4.2/lib/python3.4/distutils/command/command_template +33 -0
- package/python3.4.2/lib/python3.4/distutils/command/config.py +347 -0
- package/python3.4.2/lib/python3.4/distutils/command/install.py +650 -0
- package/python3.4.2/lib/python3.4/distutils/command/install_data.py +79 -0
- package/python3.4.2/lib/python3.4/distutils/command/install_egg_info.py +77 -0
- package/python3.4.2/lib/python3.4/distutils/command/install_headers.py +47 -0
- package/python3.4.2/lib/python3.4/distutils/command/install_lib.py +217 -0
- package/python3.4.2/lib/python3.4/distutils/command/install_scripts.py +60 -0
- package/python3.4.2/lib/python3.4/distutils/command/register.py +304 -0
- package/python3.4.2/lib/python3.4/distutils/command/sdist.py +467 -0
- package/python3.4.2/lib/python3.4/distutils/command/upload.py +202 -0
- package/python3.4.2/lib/python3.4/distutils/command/wininst-10.0-amd64.exe +0 -0
- package/python3.4.2/lib/python3.4/distutils/command/wininst-10.0.exe +0 -0
- package/python3.4.2/lib/python3.4/distutils/command/wininst-6.0.exe +0 -0
- package/python3.4.2/lib/python3.4/distutils/command/wininst-7.1.exe +0 -0
- package/python3.4.2/lib/python3.4/distutils/command/wininst-8.0.exe +0 -0
- package/python3.4.2/lib/python3.4/distutils/command/wininst-9.0-amd64.exe +0 -0
- package/python3.4.2/lib/python3.4/distutils/command/wininst-9.0.exe +0 -0
- package/python3.4.2/lib/python3.4/distutils/config.py +131 -0
- package/python3.4.2/lib/python3.4/distutils/core.py +237 -0
- package/python3.4.2/lib/python3.4/distutils/cygwinccompiler.py +405 -0
- package/python3.4.2/lib/python3.4/distutils/debug.py +5 -0
- package/python3.4.2/lib/python3.4/distutils/dep_util.py +92 -0
- package/python3.4.2/lib/python3.4/distutils/dir_util.py +210 -0
- package/python3.4.2/lib/python3.4/distutils/dist.py +1238 -0
- package/python3.4.2/lib/python3.4/distutils/errors.py +97 -0
- package/python3.4.2/lib/python3.4/distutils/extension.py +233 -0
- package/python3.4.2/lib/python3.4/distutils/fancy_getopt.py +457 -0
- package/python3.4.2/lib/python3.4/distutils/file_util.py +230 -0
- package/python3.4.2/lib/python3.4/distutils/filelist.py +328 -0
- package/python3.4.2/lib/python3.4/distutils/log.py +75 -0
- package/python3.4.2/lib/python3.4/distutils/msvc9compiler.py +788 -0
- package/python3.4.2/lib/python3.4/distutils/msvccompiler.py +640 -0
- package/python3.4.2/lib/python3.4/distutils/spawn.py +195 -0
- package/python3.4.2/lib/python3.4/distutils/sysconfig.py +562 -0
- package/python3.4.2/lib/python3.4/distutils/tests/Setup.sample +67 -0
- package/python3.4.2/lib/python3.4/distutils/tests/__init__.py +36 -0
- package/python3.4.2/lib/python3.4/distutils/tests/support.py +210 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_archive_util.py +341 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_bdist.py +50 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_bdist_dumb.py +97 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_bdist_msi.py +25 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_bdist_rpm.py +134 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_bdist_wininst.py +31 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_build.py +55 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_build_clib.py +143 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_build_ext.py +488 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_build_py.py +178 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_build_scripts.py +112 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_check.py +106 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_clean.py +51 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_cmd.py +126 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_config.py +120 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_config_cmd.py +89 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_core.py +108 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_cygwinccompiler.py +155 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_dep_util.py +81 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_dir_util.py +139 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_dist.py +454 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_extension.py +69 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_file_util.py +85 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_filelist.py +299 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_install.py +246 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_install_data.py +77 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_install_headers.py +41 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_install_lib.py +115 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_install_scripts.py +82 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_log.py +37 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_msvc9compiler.py +184 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_register.py +309 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_sdist.py +484 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_spawn.py +58 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_sysconfig.py +207 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_text_file.py +107 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_unixccompiler.py +150 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_upload.py +151 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_util.py +300 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_version.py +71 -0
- package/python3.4.2/lib/python3.4/distutils/tests/test_versionpredicate.py +13 -0
- package/python3.4.2/lib/python3.4/distutils/tests/xxmodule.c +396 -0
- package/python3.4.2/lib/python3.4/distutils/text_file.py +285 -0
- package/python3.4.2/lib/python3.4/distutils/unixccompiler.py +298 -0
- package/python3.4.2/lib/python3.4/distutils/util.py +553 -0
- package/python3.4.2/lib/python3.4/distutils/version.py +349 -0
- package/python3.4.2/lib/python3.4/distutils/versionpredicate.py +166 -0
- package/python3.4.2/lib/python3.4/doctest.py +2793 -0
- package/python3.4.2/lib/python3.4/dummy_threading.py +78 -0
- package/python3.4.2/lib/python3.4/email/__init__.py +64 -0
- package/python3.4.2/lib/python3.4/email/_encoded_words.py +221 -0
- package/python3.4.2/lib/python3.4/email/_header_value_parser.py +2947 -0
- package/python3.4.2/lib/python3.4/email/_parseaddr.py +540 -0
- package/python3.4.2/lib/python3.4/email/_policybase.py +358 -0
- package/python3.4.2/lib/python3.4/email/architecture.rst +216 -0
- package/python3.4.2/lib/python3.4/email/base64mime.py +119 -0
- package/python3.4.2/lib/python3.4/email/charset.py +409 -0
- package/python3.4.2/lib/python3.4/email/contentmanager.py +249 -0
- package/python3.4.2/lib/python3.4/email/encoders.py +69 -0
- package/python3.4.2/lib/python3.4/email/errors.py +107 -0
- package/python3.4.2/lib/python3.4/email/feedparser.py +526 -0
- package/python3.4.2/lib/python3.4/email/generator.py +507 -0
- package/python3.4.2/lib/python3.4/email/header.py +581 -0
- package/python3.4.2/lib/python3.4/email/headerregistry.py +583 -0
- package/python3.4.2/lib/python3.4/email/iterators.py +71 -0
- package/python3.4.2/lib/python3.4/email/message.py +1147 -0
- package/python3.4.2/lib/python3.4/email/mime/__init__.py +0 -0
- package/python3.4.2/lib/python3.4/email/mime/application.py +36 -0
- package/python3.4.2/lib/python3.4/email/mime/audio.py +73 -0
- package/python3.4.2/lib/python3.4/email/mime/base.py +26 -0
- package/python3.4.2/lib/python3.4/email/mime/image.py +46 -0
- package/python3.4.2/lib/python3.4/email/mime/message.py +34 -0
- package/python3.4.2/lib/python3.4/email/mime/multipart.py +47 -0
- package/python3.4.2/lib/python3.4/email/mime/nonmultipart.py +22 -0
- package/python3.4.2/lib/python3.4/email/mime/text.py +41 -0
- package/python3.4.2/lib/python3.4/email/parser.py +132 -0
- package/python3.4.2/lib/python3.4/email/policy.py +201 -0
- package/python3.4.2/lib/python3.4/email/quoprimime.py +299 -0
- package/python3.4.2/lib/python3.4/email/utils.py +399 -0
- package/python3.4.2/lib/python3.4/encodings/__init__.py +152 -0
- package/python3.4.2/lib/python3.4/encodings/__pycache__/__init__.cpython-34.pyc +0 -0
- package/python3.4.2/lib/python3.4/encodings/__pycache__/aliases.cpython-34.pyc +0 -0
- package/python3.4.2/lib/python3.4/encodings/__pycache__/ascii.cpython-34.pyc +0 -0
- package/python3.4.2/lib/python3.4/encodings/__pycache__/latin_1.cpython-34.pyc +0 -0
- package/python3.4.2/lib/python3.4/encodings/__pycache__/utf_8.cpython-34.pyc +0 -0
- package/python3.4.2/lib/python3.4/encodings/aliases.py +544 -0
- package/python3.4.2/lib/python3.4/encodings/ascii.py +50 -0
- package/python3.4.2/lib/python3.4/encodings/base64_codec.py +55 -0
- package/python3.4.2/lib/python3.4/encodings/big5.py +39 -0
- package/python3.4.2/lib/python3.4/encodings/big5hkscs.py +39 -0
- package/python3.4.2/lib/python3.4/encodings/bz2_codec.py +78 -0
- package/python3.4.2/lib/python3.4/encodings/charmap.py +69 -0
- package/python3.4.2/lib/python3.4/encodings/cp037.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/cp1006.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/cp1026.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/cp1125.py +698 -0
- package/python3.4.2/lib/python3.4/encodings/cp1140.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/cp1250.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/cp1251.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/cp1252.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/cp1253.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/cp1254.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/cp1255.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/cp1256.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/cp1257.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/cp1258.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/cp273.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/cp424.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/cp437.py +698 -0
- package/python3.4.2/lib/python3.4/encodings/cp500.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/cp65001.py +40 -0
- package/python3.4.2/lib/python3.4/encodings/cp720.py +309 -0
- package/python3.4.2/lib/python3.4/encodings/cp737.py +698 -0
- package/python3.4.2/lib/python3.4/encodings/cp775.py +697 -0
- package/python3.4.2/lib/python3.4/encodings/cp850.py +698 -0
- package/python3.4.2/lib/python3.4/encodings/cp852.py +698 -0
- package/python3.4.2/lib/python3.4/encodings/cp855.py +698 -0
- package/python3.4.2/lib/python3.4/encodings/cp856.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/cp857.py +694 -0
- package/python3.4.2/lib/python3.4/encodings/cp858.py +698 -0
- package/python3.4.2/lib/python3.4/encodings/cp860.py +698 -0
- package/python3.4.2/lib/python3.4/encodings/cp861.py +698 -0
- package/python3.4.2/lib/python3.4/encodings/cp862.py +698 -0
- package/python3.4.2/lib/python3.4/encodings/cp863.py +698 -0
- package/python3.4.2/lib/python3.4/encodings/cp864.py +690 -0
- package/python3.4.2/lib/python3.4/encodings/cp865.py +698 -0
- package/python3.4.2/lib/python3.4/encodings/cp866.py +698 -0
- package/python3.4.2/lib/python3.4/encodings/cp869.py +689 -0
- package/python3.4.2/lib/python3.4/encodings/cp874.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/cp875.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/cp932.py +39 -0
- package/python3.4.2/lib/python3.4/encodings/cp949.py +39 -0
- package/python3.4.2/lib/python3.4/encodings/cp950.py +39 -0
- package/python3.4.2/lib/python3.4/encodings/euc_jis_2004.py +39 -0
- package/python3.4.2/lib/python3.4/encodings/euc_jisx0213.py +39 -0
- package/python3.4.2/lib/python3.4/encodings/euc_jp.py +39 -0
- package/python3.4.2/lib/python3.4/encodings/euc_kr.py +39 -0
- package/python3.4.2/lib/python3.4/encodings/gb18030.py +39 -0
- package/python3.4.2/lib/python3.4/encodings/gb2312.py +39 -0
- package/python3.4.2/lib/python3.4/encodings/gbk.py +39 -0
- package/python3.4.2/lib/python3.4/encodings/hex_codec.py +55 -0
- package/python3.4.2/lib/python3.4/encodings/hp_roman8.py +312 -0
- package/python3.4.2/lib/python3.4/encodings/hz.py +39 -0
- package/python3.4.2/lib/python3.4/encodings/idna.py +309 -0
- package/python3.4.2/lib/python3.4/encodings/iso2022_jp.py +39 -0
- package/python3.4.2/lib/python3.4/encodings/iso2022_jp_1.py +39 -0
- package/python3.4.2/lib/python3.4/encodings/iso2022_jp_2.py +39 -0
- package/python3.4.2/lib/python3.4/encodings/iso2022_jp_2004.py +39 -0
- package/python3.4.2/lib/python3.4/encodings/iso2022_jp_3.py +39 -0
- package/python3.4.2/lib/python3.4/encodings/iso2022_jp_ext.py +39 -0
- package/python3.4.2/lib/python3.4/encodings/iso2022_kr.py +39 -0
- package/python3.4.2/lib/python3.4/encodings/iso8859_1.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/iso8859_10.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/iso8859_11.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/iso8859_13.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/iso8859_14.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/iso8859_15.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/iso8859_16.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/iso8859_2.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/iso8859_3.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/iso8859_4.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/iso8859_5.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/iso8859_6.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/iso8859_7.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/iso8859_8.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/iso8859_9.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/johab.py +39 -0
- package/python3.4.2/lib/python3.4/encodings/koi8_r.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/koi8_u.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/latin_1.py +50 -0
- package/python3.4.2/lib/python3.4/encodings/mac_arabic.py +698 -0
- package/python3.4.2/lib/python3.4/encodings/mac_centeuro.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/mac_croatian.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/mac_cyrillic.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/mac_farsi.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/mac_greek.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/mac_iceland.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/mac_latin2.py +312 -0
- package/python3.4.2/lib/python3.4/encodings/mac_roman.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/mac_romanian.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/mac_turkish.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/mbcs.py +47 -0
- package/python3.4.2/lib/python3.4/encodings/palmos.py +308 -0
- package/python3.4.2/lib/python3.4/encodings/ptcp154.py +312 -0
- package/python3.4.2/lib/python3.4/encodings/punycode.py +237 -0
- package/python3.4.2/lib/python3.4/encodings/quopri_codec.py +56 -0
- package/python3.4.2/lib/python3.4/encodings/raw_unicode_escape.py +45 -0
- package/python3.4.2/lib/python3.4/encodings/rot_13.py +113 -0
- package/python3.4.2/lib/python3.4/encodings/shift_jis.py +39 -0
- package/python3.4.2/lib/python3.4/encodings/shift_jis_2004.py +39 -0
- package/python3.4.2/lib/python3.4/encodings/shift_jisx0213.py +39 -0
- package/python3.4.2/lib/python3.4/encodings/tis_620.py +307 -0
- package/python3.4.2/lib/python3.4/encodings/undefined.py +49 -0
- package/python3.4.2/lib/python3.4/encodings/unicode_escape.py +45 -0
- package/python3.4.2/lib/python3.4/encodings/unicode_internal.py +45 -0
- package/python3.4.2/lib/python3.4/encodings/utf_16.py +155 -0
- package/python3.4.2/lib/python3.4/encodings/utf_16_be.py +42 -0
- package/python3.4.2/lib/python3.4/encodings/utf_16_le.py +42 -0
- package/python3.4.2/lib/python3.4/encodings/utf_32.py +150 -0
- package/python3.4.2/lib/python3.4/encodings/utf_32_be.py +37 -0
- package/python3.4.2/lib/python3.4/encodings/utf_32_le.py +37 -0
- package/python3.4.2/lib/python3.4/encodings/utf_7.py +38 -0
- package/python3.4.2/lib/python3.4/encodings/utf_8.py +42 -0
- package/python3.4.2/lib/python3.4/encodings/utf_8_sig.py +130 -0
- package/python3.4.2/lib/python3.4/encodings/uu_codec.py +99 -0
- package/python3.4.2/lib/python3.4/encodings/zlib_codec.py +77 -0
- package/python3.4.2/lib/python3.4/ensurepip/__init__.py +210 -0
- package/python3.4.2/lib/python3.4/ensurepip/__main__.py +4 -0
- package/python3.4.2/lib/python3.4/ensurepip/_bundled/pip-1.5.6-py2.py3-none-any.whl +0 -0
- package/python3.4.2/lib/python3.4/ensurepip/_bundled/setuptools-2.1-py2.py3-none-any.whl +0 -0
- package/python3.4.2/lib/python3.4/ensurepip/_uninstall.py +30 -0
- package/python3.4.2/lib/python3.4/enum.py +525 -0
- package/python3.4.2/lib/python3.4/filecmp.py +305 -0
- package/python3.4.2/lib/python3.4/fileinput.py +429 -0
- package/python3.4.2/lib/python3.4/fnmatch.py +109 -0
- package/python3.4.2/lib/python3.4/formatter.py +448 -0
- package/python3.4.2/lib/python3.4/fractions.py +630 -0
- package/python3.4.2/lib/python3.4/ftplib.py +1088 -0
- package/python3.4.2/lib/python3.4/functools.py +721 -0
- package/python3.4.2/lib/python3.4/genericpath.py +132 -0
- package/python3.4.2/lib/python3.4/getopt.py +215 -0
- package/python3.4.2/lib/python3.4/getpass.py +186 -0
- package/python3.4.2/lib/python3.4/gettext.py +523 -0
- package/python3.4.2/lib/python3.4/glob.py +110 -0
- package/python3.4.2/lib/python3.4/gzip.py +674 -0
- package/python3.4.2/lib/python3.4/hashlib.py +217 -0
- package/python3.4.2/lib/python3.4/heapq.py +476 -0
- package/python3.4.2/lib/python3.4/hmac.py +144 -0
- package/python3.4.2/lib/python3.4/html/__init__.py +132 -0
- package/python3.4.2/lib/python3.4/html/entities.py +2506 -0
- package/python3.4.2/lib/python3.4/html/parser.py +550 -0
- package/python3.4.2/lib/python3.4/http/__init__.py +1 -0
- package/python3.4.2/lib/python3.4/http/client.py +1302 -0
- package/python3.4.2/lib/python3.4/http/cookiejar.py +2080 -0
- package/python3.4.2/lib/python3.4/http/cookies.py +578 -0
- package/python3.4.2/lib/python3.4/http/server.py +1241 -0
- package/python3.4.2/lib/python3.4/idlelib/AutoComplete.py +233 -0
- package/python3.4.2/lib/python3.4/idlelib/AutoCompleteWindow.py +415 -0
- package/python3.4.2/lib/python3.4/idlelib/AutoExpand.py +104 -0
- package/python3.4.2/lib/python3.4/idlelib/Bindings.py +94 -0
- package/python3.4.2/lib/python3.4/idlelib/CREDITS.txt +37 -0
- package/python3.4.2/lib/python3.4/idlelib/CallTipWindow.py +170 -0
- package/python3.4.2/lib/python3.4/idlelib/CallTips.py +175 -0
- package/python3.4.2/lib/python3.4/idlelib/ChangeLog +1591 -0
- package/python3.4.2/lib/python3.4/idlelib/ClassBrowser.py +229 -0
- package/python3.4.2/lib/python3.4/idlelib/CodeContext.py +176 -0
- package/python3.4.2/lib/python3.4/idlelib/ColorDelegator.py +254 -0
- package/python3.4.2/lib/python3.4/idlelib/Debugger.py +490 -0
- package/python3.4.2/lib/python3.4/idlelib/Delegator.py +25 -0
- package/python3.4.2/lib/python3.4/idlelib/EditorWindow.py +1729 -0
- package/python3.4.2/lib/python3.4/idlelib/FileList.py +129 -0
- package/python3.4.2/lib/python3.4/idlelib/FormatParagraph.py +193 -0
- package/python3.4.2/lib/python3.4/idlelib/GrepDialog.py +159 -0
- package/python3.4.2/lib/python3.4/idlelib/HISTORY.txt +296 -0
- package/python3.4.2/lib/python3.4/idlelib/HyperParser.py +313 -0
- package/python3.4.2/lib/python3.4/idlelib/IOBinding.py +555 -0
- package/python3.4.2/lib/python3.4/idlelib/Icons/folder.gif +0 -0
- package/python3.4.2/lib/python3.4/idlelib/Icons/idle.icns +0 -0
- package/python3.4.2/lib/python3.4/idlelib/Icons/idle.ico +0 -0
- package/python3.4.2/lib/python3.4/idlelib/Icons/idle_16.gif +0 -0
- package/python3.4.2/lib/python3.4/idlelib/Icons/idle_16.png +0 -0
- package/python3.4.2/lib/python3.4/idlelib/Icons/idle_32.gif +0 -0
- package/python3.4.2/lib/python3.4/idlelib/Icons/idle_32.png +0 -0
- package/python3.4.2/lib/python3.4/idlelib/Icons/idle_48.gif +0 -0
- package/python3.4.2/lib/python3.4/idlelib/Icons/idle_48.png +0 -0
- package/python3.4.2/lib/python3.4/idlelib/Icons/minusnode.gif +0 -0
- package/python3.4.2/lib/python3.4/idlelib/Icons/openfolder.gif +0 -0
- package/python3.4.2/lib/python3.4/idlelib/Icons/plusnode.gif +0 -0
- package/python3.4.2/lib/python3.4/idlelib/Icons/python.gif +0 -0
- package/python3.4.2/lib/python3.4/idlelib/Icons/tk.gif +0 -0
- package/python3.4.2/lib/python3.4/idlelib/IdleHistory.py +104 -0
- package/python3.4.2/lib/python3.4/idlelib/MultiCall.py +453 -0
- package/python3.4.2/lib/python3.4/idlelib/MultiStatusBar.py +45 -0
- package/python3.4.2/lib/python3.4/idlelib/NEWS.txt +877 -0
- package/python3.4.2/lib/python3.4/idlelib/ObjectBrowser.py +143 -0
- package/python3.4.2/lib/python3.4/idlelib/OutputWindow.py +144 -0
- package/python3.4.2/lib/python3.4/idlelib/ParenMatch.py +178 -0
- package/python3.4.2/lib/python3.4/idlelib/PathBrowser.py +106 -0
- package/python3.4.2/lib/python3.4/idlelib/Percolator.py +104 -0
- package/python3.4.2/lib/python3.4/idlelib/PyParse.py +618 -0
- package/python3.4.2/lib/python3.4/idlelib/PyShell.py +1619 -0
- package/python3.4.2/lib/python3.4/idlelib/README.txt +60 -0
- package/python3.4.2/lib/python3.4/idlelib/RemoteDebugger.py +389 -0
- package/python3.4.2/lib/python3.4/idlelib/RemoteObjectBrowser.py +36 -0
- package/python3.4.2/lib/python3.4/idlelib/ReplaceDialog.py +221 -0
- package/python3.4.2/lib/python3.4/idlelib/RstripExtension.py +33 -0
- package/python3.4.2/lib/python3.4/idlelib/ScriptBinding.py +207 -0
- package/python3.4.2/lib/python3.4/idlelib/ScrolledList.py +140 -0
- package/python3.4.2/lib/python3.4/idlelib/SearchDialog.py +89 -0
- package/python3.4.2/lib/python3.4/idlelib/SearchDialogBase.py +184 -0
- package/python3.4.2/lib/python3.4/idlelib/SearchEngine.py +233 -0
- package/python3.4.2/lib/python3.4/idlelib/StackViewer.py +152 -0
- package/python3.4.2/lib/python3.4/idlelib/TODO.txt +210 -0
- package/python3.4.2/lib/python3.4/idlelib/ToolTip.py +97 -0
- package/python3.4.2/lib/python3.4/idlelib/TreeWidget.py +465 -0
- package/python3.4.2/lib/python3.4/idlelib/UndoDelegator.py +365 -0
- package/python3.4.2/lib/python3.4/idlelib/WidgetRedirector.py +174 -0
- package/python3.4.2/lib/python3.4/idlelib/WindowList.py +90 -0
- package/python3.4.2/lib/python3.4/idlelib/ZoomHeight.py +51 -0
- package/python3.4.2/lib/python3.4/idlelib/__init__.py +1 -0
- package/python3.4.2/lib/python3.4/idlelib/__main__.py +9 -0
- package/python3.4.2/lib/python3.4/idlelib/aboutDialog.py +145 -0
- package/python3.4.2/lib/python3.4/idlelib/config-extensions.def +96 -0
- package/python3.4.2/lib/python3.4/idlelib/config-highlight.def +64 -0
- package/python3.4.2/lib/python3.4/idlelib/config-keys.def +214 -0
- package/python3.4.2/lib/python3.4/idlelib/config-main.def +79 -0
- package/python3.4.2/lib/python3.4/idlelib/configDialog.py +1195 -0
- package/python3.4.2/lib/python3.4/idlelib/configHandler.py +722 -0
- package/python3.4.2/lib/python3.4/idlelib/configHelpSourceEdit.py +166 -0
- package/python3.4.2/lib/python3.4/idlelib/configSectionNameDialog.py +98 -0
- package/python3.4.2/lib/python3.4/idlelib/dynOptionMenuWidget.py +57 -0
- package/python3.4.2/lib/python3.4/idlelib/extend.txt +83 -0
- package/python3.4.2/lib/python3.4/idlelib/help.txt +368 -0
- package/python3.4.2/lib/python3.4/idlelib/idle.bat +4 -0
- package/python3.4.2/lib/python3.4/idlelib/idle.py +11 -0
- package/python3.4.2/lib/python3.4/idlelib/idle.pyw +21 -0
- package/python3.4.2/lib/python3.4/idlelib/idle_test/README.txt +115 -0
- package/python3.4.2/lib/python3.4/idlelib/idle_test/__init__.py +9 -0
- package/python3.4.2/lib/python3.4/idlelib/idle_test/htest.py +369 -0
- package/python3.4.2/lib/python3.4/idlelib/idle_test/mock_idle.py +55 -0
- package/python3.4.2/lib/python3.4/idlelib/idle_test/mock_tk.py +298 -0
- package/python3.4.2/lib/python3.4/idlelib/idle_test/test_autocomplete.py +143 -0
- package/python3.4.2/lib/python3.4/idlelib/idle_test/test_autoexpand.py +141 -0
- package/python3.4.2/lib/python3.4/idlelib/idle_test/test_calltips.py +172 -0
- package/python3.4.2/lib/python3.4/idlelib/idle_test/test_config_name.py +75 -0
- package/python3.4.2/lib/python3.4/idlelib/idle_test/test_configdialog.py +32 -0
- package/python3.4.2/lib/python3.4/idlelib/idle_test/test_delegator.py +37 -0
- package/python3.4.2/lib/python3.4/idlelib/idle_test/test_formatparagraph.py +377 -0
- package/python3.4.2/lib/python3.4/idlelib/idle_test/test_grep.py +80 -0
- package/python3.4.2/lib/python3.4/idlelib/idle_test/test_hyperparser.py +273 -0
- package/python3.4.2/lib/python3.4/idlelib/idle_test/test_idlehistory.py +167 -0
- package/python3.4.2/lib/python3.4/idlelib/idle_test/test_parenmatch.py +109 -0
- package/python3.4.2/lib/python3.4/idlelib/idle_test/test_pathbrowser.py +12 -0
- package/python3.4.2/lib/python3.4/idlelib/idle_test/test_rstrip.py +49 -0
- package/python3.4.2/lib/python3.4/idlelib/idle_test/test_searchdialogbase.py +165 -0
- package/python3.4.2/lib/python3.4/idlelib/idle_test/test_searchengine.py +329 -0
- package/python3.4.2/lib/python3.4/idlelib/idle_test/test_text.py +228 -0
- package/python3.4.2/lib/python3.4/idlelib/idle_test/test_textview.py +97 -0
- package/python3.4.2/lib/python3.4/idlelib/idle_test/test_warning.py +73 -0
- package/python3.4.2/lib/python3.4/idlelib/idle_test/test_widgetredir.py +122 -0
- package/python3.4.2/lib/python3.4/idlelib/idlever.py +1 -0
- package/python3.4.2/lib/python3.4/idlelib/keybindingDialog.py +266 -0
- package/python3.4.2/lib/python3.4/idlelib/macosxSupport.py +239 -0
- package/python3.4.2/lib/python3.4/idlelib/rpc.py +624 -0
- package/python3.4.2/lib/python3.4/idlelib/run.py +404 -0
- package/python3.4.2/lib/python3.4/idlelib/tabbedpages.py +498 -0
- package/python3.4.2/lib/python3.4/idlelib/testcode.py +31 -0
- package/python3.4.2/lib/python3.4/idlelib/textView.py +86 -0
- package/python3.4.2/lib/python3.4/imaplib.py +1549 -0
- package/python3.4.2/lib/python3.4/imghdr.py +154 -0
- package/python3.4.2/lib/python3.4/imp.py +315 -0
- package/python3.4.2/lib/python3.4/importlib/__init__.py +156 -0
- package/python3.4.2/lib/python3.4/importlib/_bootstrap.py +2461 -0
- package/python3.4.2/lib/python3.4/importlib/abc.py +323 -0
- package/python3.4.2/lib/python3.4/importlib/machinery.py +21 -0
- package/python3.4.2/lib/python3.4/importlib/util.py +202 -0
- package/python3.4.2/lib/python3.4/inspect.py +2759 -0
- package/python3.4.2/lib/python3.4/io.py +92 -0
- package/python3.4.2/lib/python3.4/ipaddress.py +2183 -0
- package/python3.4.2/lib/python3.4/json/__init__.py +331 -0
- package/python3.4.2/lib/python3.4/json/decoder.py +362 -0
- package/python3.4.2/lib/python3.4/json/encoder.py +433 -0
- package/python3.4.2/lib/python3.4/json/scanner.py +73 -0
- package/python3.4.2/lib/python3.4/json/tool.py +39 -0
- package/python3.4.2/lib/python3.4/keyword.py +94 -0
- package/python3.4.2/lib/python3.4/lib2to3/Grammar.txt +159 -0
- package/python3.4.2/lib/python3.4/lib2to3/Grammar3.4.2.final.0.pickle +0 -0
- package/python3.4.2/lib/python3.4/lib2to3/PatternGrammar.txt +28 -0
- package/python3.4.2/lib/python3.4/lib2to3/PatternGrammar3.4.2.final.0.pickle +0 -0
- package/python3.4.2/lib/python3.4/lib2to3/__init__.py +1 -0
- package/python3.4.2/lib/python3.4/lib2to3/__main__.py +4 -0
- package/python3.4.2/lib/python3.4/lib2to3/btm_matcher.py +168 -0
- package/python3.4.2/lib/python3.4/lib2to3/btm_utils.py +281 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixer_base.py +187 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixer_util.py +455 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/__init__.py +1 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_apply.py +59 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_asserts.py +34 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_basestring.py +14 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_buffer.py +22 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_callable.py +37 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_dict.py +107 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_except.py +93 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_exec.py +40 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_execfile.py +52 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_exitfunc.py +72 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_filter.py +76 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_funcattrs.py +21 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_future.py +22 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_getcwdu.py +19 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_has_key.py +110 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_idioms.py +152 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_import.py +99 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_imports.py +145 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_imports2.py +16 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_input.py +26 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_intern.py +31 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_isinstance.py +52 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_itertools.py +43 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_itertools_imports.py +57 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_long.py +19 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_map.py +91 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_metaclass.py +228 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_methodattrs.py +24 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_ne.py +23 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_next.py +103 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_nonzero.py +21 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_numliterals.py +28 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_operator.py +98 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_paren.py +44 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_print.py +87 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_raise.py +90 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_raw_input.py +17 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_reduce.py +35 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_reload.py +28 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_renames.py +70 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_repr.py +23 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_set_literal.py +53 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_standarderror.py +18 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_sys_exc.py +30 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_throw.py +56 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_tuple_params.py +175 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_types.py +62 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_unicode.py +42 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_urllib.py +197 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_ws_comma.py +39 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_xrange.py +73 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_xreadlines.py +25 -0
- package/python3.4.2/lib/python3.4/lib2to3/fixes/fix_zip.py +35 -0
- package/python3.4.2/lib/python3.4/lib2to3/main.py +268 -0
- package/python3.4.2/lib/python3.4/lib2to3/patcomp.py +205 -0
- package/python3.4.2/lib/python3.4/lib2to3/pgen2/__init__.py +4 -0
- package/python3.4.2/lib/python3.4/lib2to3/pgen2/conv.py +257 -0
- package/python3.4.2/lib/python3.4/lib2to3/pgen2/driver.py +157 -0
- package/python3.4.2/lib/python3.4/lib2to3/pgen2/grammar.py +183 -0
- package/python3.4.2/lib/python3.4/lib2to3/pgen2/literals.py +60 -0
- package/python3.4.2/lib/python3.4/lib2to3/pgen2/parse.py +201 -0
- package/python3.4.2/lib/python3.4/lib2to3/pgen2/pgen.py +386 -0
- package/python3.4.2/lib/python3.4/lib2to3/pgen2/token.py +83 -0
- package/python3.4.2/lib/python3.4/lib2to3/pgen2/tokenize.py +502 -0
- package/python3.4.2/lib/python3.4/lib2to3/pygram.py +40 -0
- package/python3.4.2/lib/python3.4/lib2to3/pytree.py +864 -0
- package/python3.4.2/lib/python3.4/lib2to3/refactor.py +747 -0
- package/python3.4.2/lib/python3.4/lib2to3/tests/__init__.py +24 -0
- package/python3.4.2/lib/python3.4/lib2to3/tests/data/README +6 -0
- package/python3.4.2/lib/python3.4/lib2to3/tests/data/bom.py +2 -0
- package/python3.4.2/lib/python3.4/lib2to3/tests/data/crlf.py +3 -0
- package/python3.4.2/lib/python3.4/lib2to3/tests/data/different_encoding.py +6 -0
- package/python3.4.2/lib/python3.4/lib2to3/tests/data/false_encoding.py +2 -0
- package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/bad_order.py +5 -0
- package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/myfixes/__init__.py +0 -0
- package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/myfixes/fix_explicit.py +6 -0
- package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/myfixes/fix_first.py +6 -0
- package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/myfixes/fix_last.py +7 -0
- package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/myfixes/fix_parrot.py +13 -0
- package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/myfixes/fix_preorder.py +6 -0
- package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/no_fixer_cls.py +1 -0
- package/python3.4.2/lib/python3.4/lib2to3/tests/data/fixers/parrot_example.py +2 -0
- package/python3.4.2/lib/python3.4/lib2to3/tests/data/infinite_recursion.py +2669 -0
- package/python3.4.2/lib/python3.4/lib2to3/tests/data/py2_test_grammar.py +974 -0
- package/python3.4.2/lib/python3.4/lib2to3/tests/data/py3_test_grammar.py +923 -0
- package/python3.4.2/lib/python3.4/lib2to3/tests/pytree_idempotency.py +92 -0
- package/python3.4.2/lib/python3.4/lib2to3/tests/support.py +54 -0
- package/python3.4.2/lib/python3.4/lib2to3/tests/test_all_fixers.py +23 -0
- package/python3.4.2/lib/python3.4/lib2to3/tests/test_fixers.py +4687 -0
- package/python3.4.2/lib/python3.4/lib2to3/tests/test_main.py +139 -0
- package/python3.4.2/lib/python3.4/lib2to3/tests/test_parser.py +249 -0
- package/python3.4.2/lib/python3.4/lib2to3/tests/test_pytree.py +477 -0
- package/python3.4.2/lib/python3.4/lib2to3/tests/test_refactor.py +321 -0
- package/python3.4.2/lib/python3.4/lib2to3/tests/test_util.py +594 -0
- package/python3.4.2/lib/python3.4/linecache.py +134 -0
- package/python3.4.2/lib/python3.4/locale.py +1559 -0
- package/python3.4.2/lib/python3.4/logging/__init__.py +1950 -0
- package/python3.4.2/lib/python3.4/logging/config.py +927 -0
- package/python3.4.2/lib/python3.4/logging/handlers.py +1452 -0
- package/python3.4.2/lib/python3.4/lzma.py +511 -0
- package/python3.4.2/lib/python3.4/macpath.py +205 -0
- package/python3.4.2/lib/python3.4/macurl2path.py +77 -0
- package/python3.4.2/lib/python3.4/mailbox.py +2136 -0
- package/python3.4.2/lib/python3.4/mailcap.py +253 -0
- package/python3.4.2/lib/python3.4/mimetypes.py +592 -0
- package/python3.4.2/lib/python3.4/modulefinder.py +642 -0
- package/python3.4.2/lib/python3.4/multiprocessing/__init__.py +38 -0
- package/python3.4.2/lib/python3.4/multiprocessing/connection.py +954 -0
- package/python3.4.2/lib/python3.4/multiprocessing/context.py +348 -0
- package/python3.4.2/lib/python3.4/multiprocessing/dummy/__init__.py +119 -0
- package/python3.4.2/lib/python3.4/multiprocessing/dummy/connection.py +74 -0
- package/python3.4.2/lib/python3.4/multiprocessing/forkserver.py +267 -0
- package/python3.4.2/lib/python3.4/multiprocessing/heap.py +249 -0
- package/python3.4.2/lib/python3.4/multiprocessing/managers.py +1131 -0
- package/python3.4.2/lib/python3.4/multiprocessing/pool.py +769 -0
- package/python3.4.2/lib/python3.4/multiprocessing/popen_fork.py +83 -0
- package/python3.4.2/lib/python3.4/multiprocessing/popen_forkserver.py +69 -0
- package/python3.4.2/lib/python3.4/multiprocessing/popen_spawn_posix.py +69 -0
- package/python3.4.2/lib/python3.4/multiprocessing/popen_spawn_win32.py +99 -0
- package/python3.4.2/lib/python3.4/multiprocessing/process.py +332 -0
- package/python3.4.2/lib/python3.4/multiprocessing/queues.py +367 -0
- package/python3.4.2/lib/python3.4/multiprocessing/reduction.py +240 -0
- package/python3.4.2/lib/python3.4/multiprocessing/resource_sharer.py +158 -0
- package/python3.4.2/lib/python3.4/multiprocessing/semaphore_tracker.py +143 -0
- package/python3.4.2/lib/python3.4/multiprocessing/sharedctypes.py +245 -0
- package/python3.4.2/lib/python3.4/multiprocessing/spawn.py +287 -0
- package/python3.4.2/lib/python3.4/multiprocessing/synchronize.py +418 -0
- package/python3.4.2/lib/python3.4/multiprocessing/util.py +367 -0
- package/python3.4.2/lib/python3.4/netrc.py +142 -0
- package/python3.4.2/lib/python3.4/nntplib.py +1134 -0
- package/python3.4.2/lib/python3.4/ntpath.py +625 -0
- package/python3.4.2/lib/python3.4/nturl2path.py +66 -0
- package/python3.4.2/lib/python3.4/numbers.py +394 -0
- package/python3.4.2/lib/python3.4/opcode.py +200 -0
- package/python3.4.2/lib/python3.4/operator.py +411 -0
- package/python3.4.2/lib/python3.4/optparse.py +1680 -0
- package/python3.4.2/lib/python3.4/os.py +980 -0
- package/python3.4.2/lib/python3.4/pathlib.py +1291 -0
- package/python3.4.2/lib/python3.4/pdb.py +1685 -0
- package/python3.4.2/lib/python3.4/pickle.py +1599 -0
- package/python3.4.2/lib/python3.4/pickletools.py +2818 -0
- package/python3.4.2/lib/python3.4/pipes.py +247 -0
- package/python3.4.2/lib/python3.4/pkgutil.py +629 -0
- package/python3.4.2/lib/python3.4/plat-linux/CDROM.py +207 -0
- package/python3.4.2/lib/python3.4/plat-linux/DLFCN.py +83 -0
- package/python3.4.2/lib/python3.4/plat-linux/IN.py +615 -0
- package/python3.4.2/lib/python3.4/plat-linux/TYPES.py +170 -0
- package/python3.4.2/lib/python3.4/plat-linux/regen +8 -0
- package/python3.4.2/lib/python3.4/platform.py +1476 -0
- package/python3.4.2/lib/python3.4/plistlib.py +1025 -0
- package/python3.4.2/lib/python3.4/poplib.py +461 -0
- package/python3.4.2/lib/python3.4/posixpath.py +457 -0
- package/python3.4.2/lib/python3.4/pprint.py +416 -0
- package/python3.4.2/lib/python3.4/profile.py +589 -0
- package/python3.4.2/lib/python3.4/pstats.py +691 -0
- package/python3.4.2/lib/python3.4/pty.py +170 -0
- package/python3.4.2/lib/python3.4/py_compile.py +185 -0
- package/python3.4.2/lib/python3.4/pyclbr.py +351 -0
- package/python3.4.2/lib/python3.4/pydoc.py +2622 -0
- package/python3.4.2/lib/python3.4/pydoc_data/__init__.py +0 -0
- package/python3.4.2/lib/python3.4/pydoc_data/_pydoc.css +6 -0
- package/python3.4.2/lib/python3.4/pydoc_data/topics.py +79 -0
- package/python3.4.2/lib/python3.4/queue.py +249 -0
- package/python3.4.2/lib/python3.4/quopri.py +242 -0
- package/python3.4.2/lib/python3.4/random.py +742 -0
- package/python3.4.2/lib/python3.4/re.py +368 -0
- package/python3.4.2/lib/python3.4/reprlib.py +157 -0
- package/python3.4.2/lib/python3.4/rlcompleter.py +165 -0
- package/python3.4.2/lib/python3.4/runpy.py +271 -0
- package/python3.4.2/lib/python3.4/sched.py +167 -0
- package/python3.4.2/lib/python3.4/selectors.py +525 -0
- package/python3.4.2/lib/python3.4/shelve.py +239 -0
- package/python3.4.2/lib/python3.4/shlex.py +304 -0
- package/python3.4.2/lib/python3.4/shutil.py +1127 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/EGG-INFO/PKG-INFO +55 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/EGG-INFO/SOURCES.txt +126 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/EGG-INFO/dependency_links.txt +1 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/EGG-INFO/entry_points.txt +4 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/EGG-INFO/not-zip-safe +1 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/EGG-INFO/requires.txt +4 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/EGG-INFO/top_level.txt +1 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/__init__.py +69 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/_compat.py +150 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/_stringdefs.py +132 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/bccache.py +344 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/compiler.py +1640 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/constants.py +32 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/debug.py +337 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/defaults.py +43 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/environment.py +1191 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/exceptions.py +146 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/ext.py +636 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/filters.py +987 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/lexer.py +733 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/loaders.py +471 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/meta.py +103 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/nodes.py +914 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/optimizer.py +68 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/parser.py +895 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/runtime.py +581 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/sandbox.py +368 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/tests.py +149 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/__init__.py +156 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/api.py +261 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/bytecode_cache.py +37 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/core_tags.py +305 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/debug.py +58 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/doctests.py +29 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/ext.py +459 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/filters.py +515 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/imports.py +141 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/inheritance.py +250 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/lexnparse.py +593 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/loader.py +226 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/regression.py +279 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/res/__init__.py +0 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/res/templates/broken.html +3 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/res/templates/foo/test.html +1 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/res/templates/syntaxerror.html +4 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/res/templates/test.html +1 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/security.py +166 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/tests.py +93 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/testsuite/utils.py +82 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/utils.py +520 -0
- package/python3.4.2/lib/python3.4/site-packages/Jinja2-2.7.3-py3.4.egg/jinja2/visitor.py +87 -0
- package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/EGG-INFO/PKG-INFO +119 -0
- package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/EGG-INFO/SOURCES.txt +17 -0
- package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/EGG-INFO/dependency_links.txt +1 -0
- package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/EGG-INFO/not-zip-safe +1 -0
- package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/EGG-INFO/top_level.txt +1 -0
- package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/markupsafe/__init__.py +298 -0
- package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/markupsafe/_compat.py +26 -0
- package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/markupsafe/_constants.py +267 -0
- package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/markupsafe/_native.py +46 -0
- package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/markupsafe/_speedups.c +239 -0
- package/python3.4.2/lib/python3.4/site-packages/MarkupSafe-0.23-py3.4.egg/markupsafe/tests.py +179 -0
- package/python3.4.2/lib/python3.4/site-packages/README +2 -0
- package/python3.4.2/lib/python3.4/site-packages/_markerlib/__init__.py +16 -0
- package/python3.4.2/lib/python3.4/site-packages/_markerlib/markers.py +119 -0
- package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/PKG-INFO +68 -0
- package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/SOURCES.txt +23 -0
- package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/dependency_links.txt +1 -0
- package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/entry_points.txt +3 -0
- package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/not-zip-safe +1 -0
- package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/requires.txt +1 -0
- package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/scripts/android-debian-builder +6 -0
- package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/EGG-INFO/top_level.txt +1 -0
- package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/__init__.py +0 -0
- package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/__main__.py +26 -0
- package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/build.py +63 -0
- package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/config.py +82 -0
- package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/data/deb.sh +106 -0
- package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/data/default-config +42 -0
- package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/data/first-time-setup.sh +94 -0
- package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/data/init.sh +27 -0
- package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/examples/jessie-armhf.cfg +26 -0
- package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/run_tests.py +38 -0
- package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/script.py +110 -0
- package/python3.4.2/lib/python3.4/site-packages/android_debian_builder-1.0-py3.4.egg/android_debian_builder/util.py +177 -0
- package/python3.4.2/lib/python3.4/site-packages/easy-install.pth +4 -0
- package/python3.4.2/lib/python3.4/site-packages/easy_install.py +5 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/__init__.py +277 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/__main__.py +7 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/__init__.py +8 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/_markerlib/__init__.py +16 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/_markerlib/markers.py +119 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/colorama/__init__.py +7 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/colorama/ansi.py +50 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/colorama/ansitowin32.py +190 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/colorama/initialise.py +56 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/colorama/win32.py +137 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/colorama/winterm.py +120 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/__init__.py +23 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/_backport/__init__.py +6 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/_backport/misc.py +41 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/_backport/shutil.py +761 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg +84 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/_backport/sysconfig.py +788 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/_backport/tarfile.py +2607 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/compat.py +1064 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/database.py +1301 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/index.py +488 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/locators.py +1194 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/manifest.py +364 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/markers.py +190 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/metadata.py +1026 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/resources.py +317 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/scripts.py +323 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/t32.exe +0 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/t64.exe +0 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/util.py +1575 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/version.py +721 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/w32.exe +0 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/w64.exe +0 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/distlib/wheel.py +958 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/__init__.py +23 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/constants.py +3104 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/__init__.py +0 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/_base.py +12 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py +20 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py +65 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/lint.py +93 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/optionaltags.py +205 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/sanitizer.py +12 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/filters/whitespace.py +38 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/html5parser.py +2713 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/ihatexml.py +285 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/inputstream.py +881 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/sanitizer.py +271 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/serializer/__init__.py +16 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/serializer/htmlserializer.py +320 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/tokenizer.py +1731 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py +0 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treeadapters/sax.py +44 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treebuilders/__init__.py +76 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treebuilders/_base.py +377 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treebuilders/dom.py +227 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treebuilders/etree.py +337 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treebuilders/etree_lxml.py +369 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treewalkers/__init__.py +57 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treewalkers/_base.py +200 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treewalkers/dom.py +46 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treewalkers/etree.py +138 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treewalkers/genshistream.py +69 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treewalkers/lxmletree.py +208 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/treewalkers/pulldom.py +63 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/trie/__init__.py +12 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/trie/_base.py +37 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/trie/datrie.py +44 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/trie/py.py +67 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/html5lib/utils.py +82 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/pkg_resources.py +2762 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/re-vendor.py +34 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/__init__.py +77 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/adapters.py +388 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/api.py +120 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/auth.py +193 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/cacert.pem +5026 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/certs.py +24 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/compat.py +115 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/cookies.py +454 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/exceptions.py +75 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/hooks.py +45 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/models.py +803 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/__init__.py +3 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/__init__.py +32 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/big5freq.py +925 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/big5prober.py +42 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/chardetect.py +46 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/chardistribution.py +231 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/charsetgroupprober.py +106 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/charsetprober.py +62 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/codingstatemachine.py +61 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/compat.py +34 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/constants.py +39 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/cp949prober.py +44 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/escprober.py +86 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/escsm.py +242 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/eucjpprober.py +90 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/euckrfreq.py +596 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/euckrprober.py +42 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/euctwfreq.py +428 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/euctwprober.py +41 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/gb2312freq.py +472 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/gb2312prober.py +41 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/hebrewprober.py +283 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/jisfreq.py +569 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/jpcntx.py +219 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/langbulgarianmodel.py +229 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/langcyrillicmodel.py +329 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/langgreekmodel.py +225 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/langhebrewmodel.py +201 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/langhungarianmodel.py +225 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/langthaimodel.py +200 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/latin1prober.py +139 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/mbcharsetprober.py +86 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/mbcsgroupprober.py +54 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/mbcssm.py +575 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/sbcharsetprober.py +120 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/sbcsgroupprober.py +69 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/sjisprober.py +91 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/universaldetector.py +170 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/chardet/utf8prober.py +76 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/__init__.py +58 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/_collections.py +205 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/connection.py +204 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/connectionpool.py +710 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/contrib/__init__.py +0 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py +120 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py +422 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/exceptions.py +126 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/fields.py +177 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/filepost.py +100 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/packages/__init__.py +4 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py +260 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/packages/six.py +385 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py +13 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py +105 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/poolmanager.py +258 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/request.py +141 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/response.py +308 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/util/__init__.py +27 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/util/connection.py +45 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/util/request.py +68 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/util/response.py +13 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py +133 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/util/timeout.py +234 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/packages/urllib3/util/url.py +162 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/sessions.py +637 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/status_codes.py +88 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/structures.py +127 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/requests/utils.py +673 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/_vendor/six.py +646 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/backwardcompat/__init__.py +138 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/basecommand.py +201 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/baseparser.py +224 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/cmdoptions.py +371 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/commands/__init__.py +88 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/commands/bundle.py +42 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/commands/completion.py +59 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/commands/freeze.py +114 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/commands/help.py +33 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/commands/install.py +314 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/commands/list.py +162 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/commands/search.py +132 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/commands/show.py +80 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/commands/uninstall.py +59 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/commands/unzip.py +7 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/commands/wheel.py +195 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/commands/zip.py +351 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/download.py +644 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/exceptions.py +46 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/index.py +990 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/locations.py +172 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/log.py +276 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/pep425tags.py +102 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/req.py +1931 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/runner.py +18 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/status_codes.py +6 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/util.py +720 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/vcs/__init__.py +251 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/vcs/bazaar.py +131 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/vcs/git.py +194 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/vcs/mercurial.py +151 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/vcs/subversion.py +273 -0
- package/python3.4.2/lib/python3.4/site-packages/pip/wheel.py +560 -0
- package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/DESCRIPTION.rst +71 -0
- package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/METADATA +98 -0
- package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/RECORD +373 -0
- package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/WHEEL +6 -0
- package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/entry_points.txt +5 -0
- package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/metadata.json +1 -0
- package/python3.4.2/lib/python3.4/site-packages/pip-1.5.6.dist-info/top_level.txt +1 -0
- package/python3.4.2/lib/python3.4/site-packages/pkg_resources.py +2719 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/__init__.py +98 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/archive_util.py +210 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/cli-32.exe +0 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/cli-64.exe +0 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/cli-arm-32.exe +0 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/cli.exe +0 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/command/__init__.py +17 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/command/alias.py +82 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/command/bdist_egg.py +553 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/command/bdist_rpm.py +82 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/command/bdist_wininst.py +82 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/command/build_ext.py +298 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/command/build_py.py +221 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/command/develop.py +167 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/command/easy_install.py +1915 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/command/egg_info.py +392 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/command/install.py +103 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/command/install_egg_info.py +125 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/command/install_lib.py +82 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/command/install_scripts.py +54 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/command/launcher manifest.xml +15 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/command/register.py +10 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/command/rotate.py +83 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/command/saveopts.py +24 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/command/sdist.py +238 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/command/setopt.py +164 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/command/test.py +198 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/command/upload_docs.py +193 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/compat.py +83 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/depends.py +246 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/dist.py +796 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/extension.py +46 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/gui-32.exe +0 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/gui-64.exe +0 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/gui-arm-32.exe +0 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/gui.exe +0 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/lib2to3_ex.py +58 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/package_index.py +1057 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/py26compat.py +19 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/py27compat.py +15 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/py31compat.py +11 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/sandbox.py +322 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/script template (dev).py +11 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/script template.py +4 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/site-patch.py +83 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/ssl_support.py +234 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/svn_utils.py +564 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/__init__.py +352 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/doctest.py +2683 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/environment.py +165 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/py26compat.py +14 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/script-with-bom.py +3 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/server.py +82 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_bdist_egg.py +69 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_build_ext.py +20 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_develop.py +122 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_dist_info.py +83 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_easy_install.py +394 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_egg_info.py +173 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_markerlib.py +68 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_packageindex.py +203 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_resources.py +620 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_sandbox.py +79 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_sdist.py +535 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_svn.py +246 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_test.py +124 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/tests/test_upload_docs.py +72 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools/version.py +1 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/DESCRIPTION.rst +1742 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/METADATA +1772 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/RECORD +149 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/WHEEL +6 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/dependency_links.txt +2 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/entry_points.txt +62 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/entry_points.txt.orig +62 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/pydist.json +1 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/requires.txt.orig +7 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/top_level.txt +4 -0
- package/python3.4.2/lib/python3.4/site-packages/setuptools-2.1.dist-info/zip-safe +1 -0
- package/python3.4.2/lib/python3.4/site.py +616 -0
- package/python3.4.2/lib/python3.4/smtpd.py +861 -0
- package/python3.4.2/lib/python3.4/smtplib.py +999 -0
- package/python3.4.2/lib/python3.4/sndhdr.py +240 -0
- package/python3.4.2/lib/python3.4/socket.py +535 -0
- package/python3.4.2/lib/python3.4/socketserver.py +748 -0
- package/python3.4.2/lib/python3.4/sqlite3/__init__.py +23 -0
- package/python3.4.2/lib/python3.4/sqlite3/dbapi2.py +89 -0
- package/python3.4.2/lib/python3.4/sqlite3/dump.py +70 -0
- package/python3.4.2/lib/python3.4/sqlite3/test/__init__.py +0 -0
- package/python3.4.2/lib/python3.4/sqlite3/test/dbapi.py +911 -0
- package/python3.4.2/lib/python3.4/sqlite3/test/dump.py +81 -0
- package/python3.4.2/lib/python3.4/sqlite3/test/factory.py +253 -0
- package/python3.4.2/lib/python3.4/sqlite3/test/hooks.py +258 -0
- package/python3.4.2/lib/python3.4/sqlite3/test/regression.py +358 -0
- package/python3.4.2/lib/python3.4/sqlite3/test/transactions.py +204 -0
- package/python3.4.2/lib/python3.4/sqlite3/test/types.py +403 -0
- package/python3.4.2/lib/python3.4/sqlite3/test/userfunctions.py +468 -0
- package/python3.4.2/lib/python3.4/sre_compile.py +489 -0
- package/python3.4.2/lib/python3.4/sre_constants.py +261 -0
- package/python3.4.2/lib/python3.4/sre_parse.py +859 -0
- package/python3.4.2/lib/python3.4/ssl.py +945 -0
- package/python3.4.2/lib/python3.4/stat.py +155 -0
- package/python3.4.2/lib/python3.4/statistics.py +595 -0
- package/python3.4.2/lib/python3.4/string.py +282 -0
- package/python3.4.2/lib/python3.4/stringprep.py +272 -0
- package/python3.4.2/lib/python3.4/struct.py +15 -0
- package/python3.4.2/lib/python3.4/subprocess.py +1690 -0
- package/python3.4.2/lib/python3.4/sunau.py +525 -0
- package/python3.4.2/lib/python3.4/symbol.py +111 -0
- package/python3.4.2/lib/python3.4/symtable.py +240 -0
- package/python3.4.2/lib/python3.4/sysconfig.py +709 -0
- package/python3.4.2/lib/python3.4/tabnanny.py +332 -0
- package/python3.4.2/lib/python3.4/tarfile.py +2519 -0
- package/python3.4.2/lib/python3.4/telnetlib.py +672 -0
- package/python3.4.2/lib/python3.4/tempfile.py +698 -0
- package/python3.4.2/lib/python3.4/test/185test.db +0 -0
- package/python3.4.2/lib/python3.4/test/Sine-1000Hz-300ms.aif +0 -0
- package/python3.4.2/lib/python3.4/test/__init__.py +1 -0
- package/python3.4.2/lib/python3.4/test/__main__.py +3 -0
- package/python3.4.2/lib/python3.4/test/_test_multiprocessing.py +3841 -0
- package/python3.4.2/lib/python3.4/test/audiodata/pluck-alaw.aifc +0 -0
- package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm16.aiff +0 -0
- package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm16.au +0 -0
- package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm16.wav +0 -0
- package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm24.aiff +0 -0
- package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm24.au +0 -0
- package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm24.wav +0 -0
- package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm32.aiff +0 -0
- package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm32.au +0 -0
- package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm32.wav +0 -0
- package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm8.aiff +0 -0
- package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm8.au +0 -0
- package/python3.4.2/lib/python3.4/test/audiodata/pluck-pcm8.wav +0 -0
- package/python3.4.2/lib/python3.4/test/audiodata/pluck-ulaw.aifc +0 -0
- package/python3.4.2/lib/python3.4/test/audiodata/pluck-ulaw.au +0 -0
- package/python3.4.2/lib/python3.4/test/audiotest.au +0 -0
- package/python3.4.2/lib/python3.4/test/audiotests.py +329 -0
- package/python3.4.2/lib/python3.4/test/autotest.py +6 -0
- package/python3.4.2/lib/python3.4/test/bad_coding.py +1 -0
- package/python3.4.2/lib/python3.4/test/bad_coding2.py +2 -0
- package/python3.4.2/lib/python3.4/test/badcert.pem +36 -0
- package/python3.4.2/lib/python3.4/test/badkey.pem +40 -0
- package/python3.4.2/lib/python3.4/test/badsyntax_3131.py +2 -0
- package/python3.4.2/lib/python3.4/test/badsyntax_future10.py +3 -0
- package/python3.4.2/lib/python3.4/test/badsyntax_future3.py +10 -0
- package/python3.4.2/lib/python3.4/test/badsyntax_future4.py +10 -0
- package/python3.4.2/lib/python3.4/test/badsyntax_future5.py +12 -0
- package/python3.4.2/lib/python3.4/test/badsyntax_future6.py +10 -0
- package/python3.4.2/lib/python3.4/test/badsyntax_future7.py +11 -0
- package/python3.4.2/lib/python3.4/test/badsyntax_future8.py +10 -0
- package/python3.4.2/lib/python3.4/test/badsyntax_future9.py +10 -0
- package/python3.4.2/lib/python3.4/test/badsyntax_pep3120.py +1 -0
- package/python3.4.2/lib/python3.4/test/buffer_tests.py +218 -0
- package/python3.4.2/lib/python3.4/test/bytecode_helper.py +41 -0
- package/python3.4.2/lib/python3.4/test/capath/4e1295a3.0 +14 -0
- package/python3.4.2/lib/python3.4/test/capath/5ed36f99.0 +41 -0
- package/python3.4.2/lib/python3.4/test/capath/6e88d7b8.0 +14 -0
- package/python3.4.2/lib/python3.4/test/capath/99d0fa06.0 +41 -0
- package/python3.4.2/lib/python3.4/test/cfgparser.1 +2 -0
- package/python3.4.2/lib/python3.4/test/cfgparser.2 +537 -0
- package/python3.4.2/lib/python3.4/test/cfgparser.3 +69 -0
- package/python3.4.2/lib/python3.4/test/check_soundcard.vbs +13 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/big5-utf8.txt +9 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/big5.txt +9 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/big5hkscs-utf8.txt +2 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/big5hkscs.txt +2 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/cp949-utf8.txt +9 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/cp949.txt +9 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/euc_jisx0213-utf8.txt +8 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/euc_jisx0213.txt +8 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/euc_jp-utf8.txt +7 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/euc_jp.txt +7 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/euc_kr-utf8.txt +7 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/euc_kr.txt +7 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/gb18030-utf8.txt +15 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/gb18030.txt +15 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/gb2312-utf8.txt +6 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/gb2312.txt +6 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/gbk-utf8.txt +14 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/gbk.txt +14 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/hz-utf8.txt +2 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/hz.txt +2 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/iso2022_jp-utf8.txt +7 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/iso2022_jp.txt +7 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/iso2022_kr-utf8.txt +7 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/iso2022_kr.txt +7 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/johab-utf8.txt +9 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/johab.txt +9 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/shift_jis-utf8.txt +7 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/shift_jis.txt +7 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/shift_jisx0213-utf8.txt +8 -0
- package/python3.4.2/lib/python3.4/test/cjkencodings/shift_jisx0213.txt +8 -0
- package/python3.4.2/lib/python3.4/test/cmath_testcases.txt +2370 -0
- package/python3.4.2/lib/python3.4/test/coding20731.py +4 -0
- package/python3.4.2/lib/python3.4/test/curses_tests.py +46 -0
- package/python3.4.2/lib/python3.4/test/data/README +2 -0
- package/python3.4.2/lib/python3.4/test/datetimetester.py +3786 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/abs.decTest +161 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/add.decTest +2716 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/and.decTest +338 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/base.decTest +1411 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/clamp.decTest +211 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/class.decTest +131 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/compare.decTest +758 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/comparetotal.decTest +798 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/comparetotmag.decTest +790 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/copy.decTest +86 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/copyabs.decTest +86 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/copynegate.decTest +86 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/copysign.decTest +177 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddAbs.decTest +126 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddAdd.decTest +1328 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddAnd.decTest +347 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddBase.decTest +1104 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCanonical.decTest +357 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddClass.decTest +76 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCompare.decTest +744 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCompareSig.decTest +647 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCompareTotal.decTest +706 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCompareTotalMag.decTest +706 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCopy.decTest +88 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCopyAbs.decTest +88 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCopyNegate.decTest +88 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddCopySign.decTest +175 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddDivide.decTest +863 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddDivideInt.decTest +449 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddEncode.decTest +495 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddFMA.decTest +1698 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddInvert.decTest +202 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddLogB.decTest +159 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddMax.decTest +322 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddMaxMag.decTest +304 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddMin.decTest +309 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddMinMag.decTest +293 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddMinus.decTest +88 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddMultiply.decTest +553 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddNextMinus.decTest +126 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddNextPlus.decTest +124 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddNextToward.decTest +374 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddOr.decTest +292 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddPlus.decTest +88 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddQuantize.decTest +833 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddReduce.decTest +182 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddRemainder.decTest +600 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddRemainderNear.decTest +629 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddRotate.decTest +262 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddSameQuantum.decTest +389 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddScaleB.decTest +243 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddShift.decTest +262 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddSubtract.decTest +629 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddToIntegral.decTest +257 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ddXor.decTest +337 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/decDouble.decTest +65 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/decQuad.decTest +65 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/decSingle.decTest +25 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/divide.decTest +854 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/divideint.decTest +486 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqAbs.decTest +126 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqAdd.decTest +1215 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqAnd.decTest +420 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqBase.decTest +1081 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCanonical.decTest +372 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqClass.decTest +77 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCompare.decTest +753 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCompareSig.decTest +647 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCompareTotal.decTest +706 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCompareTotalMag.decTest +706 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCopy.decTest +88 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCopyAbs.decTest +88 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCopyNegate.decTest +88 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqCopySign.decTest +175 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqDivide.decTest +808 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqDivideInt.decTest +453 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqEncode.decTest +477 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqFMA.decTest +1786 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqInvert.decTest +245 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqLogB.decTest +160 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqMax.decTest +322 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqMaxMag.decTest +304 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqMin.decTest +309 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqMinMag.decTest +293 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqMinus.decTest +88 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqMultiply.decTest +589 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqNextMinus.decTest +126 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqNextPlus.decTest +124 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqNextToward.decTest +375 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqOr.decTest +401 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqPlus.decTest +88 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqQuantize.decTest +836 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqReduce.decTest +183 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqRemainder.decTest +597 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqRemainderNear.decTest +631 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqRotate.decTest +298 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqSameQuantum.decTest +389 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqScaleB.decTest +260 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqShift.decTest +298 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqSubtract.decTest +635 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqToIntegral.decTest +257 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dqXor.decTest +410 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dsBase.decTest +1062 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/dsEncode.decTest +372 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/exp.decTest +674 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/extra.decTest +2830 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/fma.decTest +3426 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/inexact.decTest +215 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/invert.decTest +176 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/ln.decTest +611 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/log10.decTest +551 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/logb.decTest +188 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/max.decTest +424 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/maxmag.decTest +404 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/min.decTest +407 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/minmag.decTest +390 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/minus.decTest +182 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/multiply.decTest +731 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/nextminus.decTest +148 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/nextplus.decTest +150 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/nexttoward.decTest +426 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/or.decTest +334 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/plus.decTest +195 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/power.decTest +1624 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/powersqrt.decTest +2970 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/quantize.decTest +948 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/randomBound32.decTest +2443 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/randoms.decTest +4030 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/reduce.decTest +234 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/remainder.decTest +640 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/remainderNear.decTest +572 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/rescale.decTest +764 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/rotate.decTest +247 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/rounding.decTest +1303 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/samequantum.decTest +389 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/scaleb.decTest +209 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/shift.decTest +250 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/squareroot.decTest +3834 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/subtract.decTest +873 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/testall.decTest +87 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/tointegral.decTest +241 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/tointegralx.decTest +255 -0
- package/python3.4.2/lib/python3.4/test/decimaltestdata/xor.decTest +335 -0
- package/python3.4.2/lib/python3.4/test/dh512.pem +9 -0
- package/python3.4.2/lib/python3.4/test/dis_module.py +5 -0
- package/python3.4.2/lib/python3.4/test/doctest_aliases.py +13 -0
- package/python3.4.2/lib/python3.4/test/double_const.py +30 -0
- package/python3.4.2/lib/python3.4/test/empty.vbs +1 -0
- package/python3.4.2/lib/python3.4/test/encoded_modules/__init__.py +23 -0
- package/python3.4.2/lib/python3.4/test/encoded_modules/module_iso_8859_1.py +5 -0
- package/python3.4.2/lib/python3.4/test/encoded_modules/module_koi8_r.py +3 -0
- package/python3.4.2/lib/python3.4/test/exception_hierarchy.txt +61 -0
- package/python3.4.2/lib/python3.4/test/final_a.py +19 -0
- package/python3.4.2/lib/python3.4/test/final_b.py +19 -0
- package/python3.4.2/lib/python3.4/test/floating_points.txt +1028 -0
- package/python3.4.2/lib/python3.4/test/fork_wait.py +77 -0
- package/python3.4.2/lib/python3.4/test/formatfloat_testcases.txt +355 -0
- package/python3.4.2/lib/python3.4/test/future_test1.py +11 -0
- package/python3.4.2/lib/python3.4/test/future_test2.py +10 -0
- package/python3.4.2/lib/python3.4/test/gdb_sample.py +12 -0
- package/python3.4.2/lib/python3.4/test/https_svn_python_org_root.pem +41 -0
- package/python3.4.2/lib/python3.4/test/ieee754.txt +185 -0
- package/python3.4.2/lib/python3.4/test/imghdrdata/python.bmp +0 -0
- package/python3.4.2/lib/python3.4/test/imghdrdata/python.gif +0 -0
- package/python3.4.2/lib/python3.4/test/imghdrdata/python.jpg +0 -0
- package/python3.4.2/lib/python3.4/test/imghdrdata/python.pbm +3 -0
- package/python3.4.2/lib/python3.4/test/imghdrdata/python.pgm +0 -0
- package/python3.4.2/lib/python3.4/test/imghdrdata/python.png +0 -0
- package/python3.4.2/lib/python3.4/test/imghdrdata/python.ppm +0 -0
- package/python3.4.2/lib/python3.4/test/imghdrdata/python.ras +0 -0
- package/python3.4.2/lib/python3.4/test/imghdrdata/python.sgi +0 -0
- package/python3.4.2/lib/python3.4/test/imghdrdata/python.tiff +0 -0
- package/python3.4.2/lib/python3.4/test/imghdrdata/python.xbm +6 -0
- package/python3.4.2/lib/python3.4/test/inspect_fodder.py +58 -0
- package/python3.4.2/lib/python3.4/test/inspect_fodder2.py +111 -0
- package/python3.4.2/lib/python3.4/test/keycert.passwd.pem +33 -0
- package/python3.4.2/lib/python3.4/test/keycert.pem +31 -0
- package/python3.4.2/lib/python3.4/test/keycert2.pem +31 -0
- package/python3.4.2/lib/python3.4/test/keycert3.pem +73 -0
- package/python3.4.2/lib/python3.4/test/keycert4.pem +73 -0
- package/python3.4.2/lib/python3.4/test/list_tests.py +585 -0
- package/python3.4.2/lib/python3.4/test/lock_tests.py +896 -0
- package/python3.4.2/lib/python3.4/test/mailcap.txt +39 -0
- package/python3.4.2/lib/python3.4/test/make_ssl_certs.py +176 -0
- package/python3.4.2/lib/python3.4/test/mapping_tests.py +657 -0
- package/python3.4.2/lib/python3.4/test/math_testcases.txt +633 -0
- package/python3.4.2/lib/python3.4/test/memory_watchdog.py +28 -0
- package/python3.4.2/lib/python3.4/test/mime.types +1445 -0
- package/python3.4.2/lib/python3.4/test/mock_socket.py +156 -0
- package/python3.4.2/lib/python3.4/test/mp_fork_bomb.py +18 -0
- package/python3.4.2/lib/python3.4/test/multibytecodec_support.py +377 -0
- package/python3.4.2/lib/python3.4/test/nokia.pem +31 -0
- package/python3.4.2/lib/python3.4/test/nullbytecert.pem +90 -0
- package/python3.4.2/lib/python3.4/test/nullcert.pem +0 -0
- package/python3.4.2/lib/python3.4/test/outstanding_bugs.py +18 -0
- package/python3.4.2/lib/python3.4/test/pickletester.py +2253 -0
- package/python3.4.2/lib/python3.4/test/profilee.py +115 -0
- package/python3.4.2/lib/python3.4/test/pstats.pck +0 -0
- package/python3.4.2/lib/python3.4/test/pycacert.pem +78 -0
- package/python3.4.2/lib/python3.4/test/pycakey.pem +28 -0
- package/python3.4.2/lib/python3.4/test/pyclbr_input.py +33 -0
- package/python3.4.2/lib/python3.4/test/pydoc_mod.py +37 -0
- package/python3.4.2/lib/python3.4/test/pydocfodder.py +216 -0
- package/python3.4.2/lib/python3.4/test/pystone.py +277 -0
- package/python3.4.2/lib/python3.4/test/randv2_32.pck +633 -0
- package/python3.4.2/lib/python3.4/test/randv2_64.pck +633 -0
- package/python3.4.2/lib/python3.4/test/randv3.pck +633 -0
- package/python3.4.2/lib/python3.4/test/re_tests.py +670 -0
- package/python3.4.2/lib/python3.4/test/regrtest.py +1589 -0
- package/python3.4.2/lib/python3.4/test/relimport.py +1 -0
- package/python3.4.2/lib/python3.4/test/reperf.py +23 -0
- package/python3.4.2/lib/python3.4/test/revocation.crl +11 -0
- package/python3.4.2/lib/python3.4/test/sample_doctest.py +76 -0
- package/python3.4.2/lib/python3.4/test/sample_doctest_no_docstrings.py +12 -0
- package/python3.4.2/lib/python3.4/test/sample_doctest_no_doctests.py +15 -0
- package/python3.4.2/lib/python3.4/test/script_helper.py +178 -0
- package/python3.4.2/lib/python3.4/test/seq_tests.py +397 -0
- package/python3.4.2/lib/python3.4/test/sgml_input.html +212 -0
- package/python3.4.2/lib/python3.4/test/sha256.pem +128 -0
- package/python3.4.2/lib/python3.4/test/sndhdrdata/README +12 -0
- package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.8svx +0 -0
- package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.aifc +0 -0
- package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.aiff +0 -0
- package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.au +0 -0
- package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.hcom +0 -0
- package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.sndt +0 -0
- package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.voc +0 -0
- package/python3.4.2/lib/python3.4/test/sndhdrdata/sndhdr.wav +0 -0
- package/python3.4.2/lib/python3.4/test/sortperf.py +169 -0
- package/python3.4.2/lib/python3.4/test/ssl_cert.pem +15 -0
- package/python3.4.2/lib/python3.4/test/ssl_key.passwd.pem +18 -0
- package/python3.4.2/lib/python3.4/test/ssl_key.pem +16 -0
- package/python3.4.2/lib/python3.4/test/ssl_servers.py +205 -0
- package/python3.4.2/lib/python3.4/test/ssltests.py +22 -0
- package/python3.4.2/lib/python3.4/test/string_tests.py +1385 -0
- package/python3.4.2/lib/python3.4/test/subprocessdata/fd_status.py +34 -0
- package/python3.4.2/lib/python3.4/test/subprocessdata/input_reader.py +7 -0
- package/python3.4.2/lib/python3.4/test/subprocessdata/qcat.py +7 -0
- package/python3.4.2/lib/python3.4/test/subprocessdata/qgrep.py +10 -0
- package/python3.4.2/lib/python3.4/test/subprocessdata/sigchild_ignore.py +15 -0
- package/python3.4.2/lib/python3.4/test/support/__init__.py +2241 -0
- package/python3.4.2/lib/python3.4/test/test___all__.py +117 -0
- package/python3.4.2/lib/python3.4/test/test___future__.py +65 -0
- package/python3.4.2/lib/python3.4/test/test__locale.py +170 -0
- package/python3.4.2/lib/python3.4/test/test__opcode.py +23 -0
- package/python3.4.2/lib/python3.4/test/test__osx_support.py +281 -0
- package/python3.4.2/lib/python3.4/test/test_abc.py +408 -0
- package/python3.4.2/lib/python3.4/test/test_abstract_numbers.py +44 -0
- package/python3.4.2/lib/python3.4/test/test_aifc.py +384 -0
- package/python3.4.2/lib/python3.4/test/test_argparse.py +4979 -0
- package/python3.4.2/lib/python3.4/test/test_array.py +1323 -0
- package/python3.4.2/lib/python3.4/test/test_ast.py +1038 -0
- package/python3.4.2/lib/python3.4/test/test_asynchat.py +333 -0
- package/python3.4.2/lib/python3.4/test/test_asyncio/__init__.py +10 -0
- package/python3.4.2/lib/python3.4/test/test_asyncio/__main__.py +4 -0
- package/python3.4.2/lib/python3.4/test/test_asyncio/echo.py +8 -0
- package/python3.4.2/lib/python3.4/test/test_asyncio/echo2.py +6 -0
- package/python3.4.2/lib/python3.4/test/test_asyncio/echo3.py +11 -0
- package/python3.4.2/lib/python3.4/test/test_asyncio/keycert3.pem +73 -0
- package/python3.4.2/lib/python3.4/test/test_asyncio/pycacert.pem +78 -0
- package/python3.4.2/lib/python3.4/test/test_asyncio/ssl_cert.pem +15 -0
- package/python3.4.2/lib/python3.4/test/test_asyncio/ssl_key.pem +16 -0
- package/python3.4.2/lib/python3.4/test/test_asyncio/test_base_events.py +1064 -0
- package/python3.4.2/lib/python3.4/test/test_asyncio/test_events.py +2240 -0
- package/python3.4.2/lib/python3.4/test/test_asyncio/test_futures.py +442 -0
- package/python3.4.2/lib/python3.4/test/test_asyncio/test_locks.py +858 -0
- package/python3.4.2/lib/python3.4/test/test_asyncio/test_proactor_events.py +492 -0
- package/python3.4.2/lib/python3.4/test/test_asyncio/test_queues.py +476 -0
- package/python3.4.2/lib/python3.4/test/test_asyncio/test_selector_events.py +1737 -0
- package/python3.4.2/lib/python3.4/test/test_asyncio/test_streams.py +628 -0
- package/python3.4.2/lib/python3.4/test/test_asyncio/test_subprocess.py +217 -0
- package/python3.4.2/lib/python3.4/test/test_asyncio/test_tasks.py +1977 -0
- package/python3.4.2/lib/python3.4/test/test_asyncio/test_transports.py +90 -0
- package/python3.4.2/lib/python3.4/test/test_asyncio/test_unix_events.py +1582 -0
- package/python3.4.2/lib/python3.4/test/test_asyncio/test_windows_events.py +141 -0
- package/python3.4.2/lib/python3.4/test/test_asyncio/test_windows_utils.py +171 -0
- package/python3.4.2/lib/python3.4/test/test_asyncore.py +859 -0
- package/python3.4.2/lib/python3.4/test/test_atexit.py +185 -0
- package/python3.4.2/lib/python3.4/test/test_audioop.py +534 -0
- package/python3.4.2/lib/python3.4/test/test_augassign.py +315 -0
- package/python3.4.2/lib/python3.4/test/test_base64.py +666 -0
- package/python3.4.2/lib/python3.4/test/test_bigaddrspace.py +101 -0
- package/python3.4.2/lib/python3.4/test/test_bigmem.py +1257 -0
- package/python3.4.2/lib/python3.4/test/test_binascii.py +270 -0
- package/python3.4.2/lib/python3.4/test/test_binhex.py +56 -0
- package/python3.4.2/lib/python3.4/test/test_binop.py +380 -0
- package/python3.4.2/lib/python3.4/test/test_bisect.py +328 -0
- package/python3.4.2/lib/python3.4/test/test_bool.py +347 -0
- package/python3.4.2/lib/python3.4/test/test_buffer.py +4294 -0
- package/python3.4.2/lib/python3.4/test/test_bufio.py +73 -0
- package/python3.4.2/lib/python3.4/test/test_builtin.py +1637 -0
- package/python3.4.2/lib/python3.4/test/test_bytes.py +1433 -0
- package/python3.4.2/lib/python3.4/test/test_bz2.py +880 -0
- package/python3.4.2/lib/python3.4/test/test_calendar.py +714 -0
- package/python3.4.2/lib/python3.4/test/test_call.py +131 -0
- package/python3.4.2/lib/python3.4/test/test_capi.py +469 -0
- package/python3.4.2/lib/python3.4/test/test_cgi.py +489 -0
- package/python3.4.2/lib/python3.4/test/test_cgitb.py +70 -0
- package/python3.4.2/lib/python3.4/test/test_charmapcodec.py +56 -0
- package/python3.4.2/lib/python3.4/test/test_class.py +552 -0
- package/python3.4.2/lib/python3.4/test/test_cmath.py +536 -0
- package/python3.4.2/lib/python3.4/test/test_cmd.py +243 -0
- package/python3.4.2/lib/python3.4/test/test_cmd_line.py +473 -0
- package/python3.4.2/lib/python3.4/test/test_cmd_line_script.py +481 -0
- package/python3.4.2/lib/python3.4/test/test_code.py +170 -0
- package/python3.4.2/lib/python3.4/test/test_code_module.py +86 -0
- package/python3.4.2/lib/python3.4/test/test_codeccallbacks.py +880 -0
- package/python3.4.2/lib/python3.4/test/test_codecencodings_cn.py +90 -0
- package/python3.4.2/lib/python3.4/test/test_codecencodings_hk.py +26 -0
- package/python3.4.2/lib/python3.4/test/test_codecencodings_iso2022.py +45 -0
- package/python3.4.2/lib/python3.4/test/test_codecencodings_jp.py +130 -0
- package/python3.4.2/lib/python3.4/test/test_codecencodings_kr.py +73 -0
- package/python3.4.2/lib/python3.4/test/test_codecencodings_tw.py +26 -0
- package/python3.4.2/lib/python3.4/test/test_codecmaps_cn.py +29 -0
- package/python3.4.2/lib/python3.4/test/test_codecmaps_hk.py +16 -0
- package/python3.4.2/lib/python3.4/test/test_codecmaps_jp.py +63 -0
- package/python3.4.2/lib/python3.4/test/test_codecmaps_kr.py +40 -0
- package/python3.4.2/lib/python3.4/test/test_codecmaps_tw.py +30 -0
- package/python3.4.2/lib/python3.4/test/test_codecs.py +2901 -0
- package/python3.4.2/lib/python3.4/test/test_codeop.py +304 -0
- package/python3.4.2/lib/python3.4/test/test_collections.py +1552 -0
- package/python3.4.2/lib/python3.4/test/test_colorsys.py +100 -0
- package/python3.4.2/lib/python3.4/test/test_compare.py +67 -0
- package/python3.4.2/lib/python3.4/test/test_compile.py +561 -0
- package/python3.4.2/lib/python3.4/test/test_compileall.py +384 -0
- package/python3.4.2/lib/python3.4/test/test_complex.py +638 -0
- package/python3.4.2/lib/python3.4/test/test_concurrent_futures.py +685 -0
- package/python3.4.2/lib/python3.4/test/test_configparser.py +1768 -0
- package/python3.4.2/lib/python3.4/test/test_contains.py +93 -0
- package/python3.4.2/lib/python3.4/test/test_contextlib.py +828 -0
- package/python3.4.2/lib/python3.4/test/test_copy.py +759 -0
- package/python3.4.2/lib/python3.4/test/test_copyreg.py +121 -0
- package/python3.4.2/lib/python3.4/test/test_cprofile.py +98 -0
- package/python3.4.2/lib/python3.4/test/test_crashers.py +38 -0
- package/python3.4.2/lib/python3.4/test/test_crypt.py +33 -0
- package/python3.4.2/lib/python3.4/test/test_csv.py +1074 -0
- package/python3.4.2/lib/python3.4/test/test_ctypes.py +6 -0
- package/python3.4.2/lib/python3.4/test/test_curses.py +395 -0
- package/python3.4.2/lib/python3.4/test/test_datetime.py +48 -0
- package/python3.4.2/lib/python3.4/test/test_dbm.py +193 -0
- package/python3.4.2/lib/python3.4/test/test_dbm_dumb.py +228 -0
- package/python3.4.2/lib/python3.4/test/test_dbm_gnu.py +97 -0
- package/python3.4.2/lib/python3.4/test/test_dbm_ndbm.py +54 -0
- package/python3.4.2/lib/python3.4/test/test_decimal.py +5504 -0
- package/python3.4.2/lib/python3.4/test/test_decorators.py +309 -0
- package/python3.4.2/lib/python3.4/test/test_defaultdict.py +190 -0
- package/python3.4.2/lib/python3.4/test/test_deque.py +817 -0
- package/python3.4.2/lib/python3.4/test/test_descr.py +5006 -0
- package/python3.4.2/lib/python3.4/test/test_descrtut.py +485 -0
- package/python3.4.2/lib/python3.4/test/test_devpoll.py +146 -0
- package/python3.4.2/lib/python3.4/test/test_dict.py +928 -0
- package/python3.4.2/lib/python3.4/test/test_dictcomps.py +88 -0
- package/python3.4.2/lib/python3.4/test/test_dictviews.py +206 -0
- package/python3.4.2/lib/python3.4/test/test_difflib.py +298 -0
- package/python3.4.2/lib/python3.4/test/test_difflib_expect.html +526 -0
- package/python3.4.2/lib/python3.4/test/test_dis.py +832 -0
- package/python3.4.2/lib/python3.4/test/test_distutils.py +18 -0
- package/python3.4.2/lib/python3.4/test/test_doctest.py +2921 -0
- package/python3.4.2/lib/python3.4/test/test_doctest.txt +17 -0
- package/python3.4.2/lib/python3.4/test/test_doctest2.py +123 -0
- package/python3.4.2/lib/python3.4/test/test_doctest2.txt +14 -0
- package/python3.4.2/lib/python3.4/test/test_doctest3.txt +5 -0
- package/python3.4.2/lib/python3.4/test/test_doctest4.txt +11 -0
- package/python3.4.2/lib/python3.4/test/test_docxmlrpc.py +219 -0
- package/python3.4.2/lib/python3.4/test/test_dummy_thread.py +182 -0
- package/python3.4.2/lib/python3.4/test/test_dummy_threading.py +64 -0
- package/python3.4.2/lib/python3.4/test/test_dynamic.py +143 -0
- package/python3.4.2/lib/python3.4/test/test_dynamicclassattribute.py +304 -0
- package/python3.4.2/lib/python3.4/test/test_email/__init__.py +159 -0
- package/python3.4.2/lib/python3.4/test/test_email/__main__.py +4 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/PyBanner048.gif +0 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/audiotest.au +0 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_01.txt +19 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_02.txt +136 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_03.txt +16 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_04.txt +37 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_05.txt +28 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_06.txt +33 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_07.txt +83 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_08.txt +24 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_09.txt +24 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_10.txt +39 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_11.txt +7 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_12.txt +36 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_12a.txt +38 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_13.txt +94 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_14.txt +23 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_15.txt +52 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_16.txt +123 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_17.txt +12 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_18.txt +6 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_19.txt +43 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_20.txt +22 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_21.txt +20 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_22.txt +46 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_23.txt +8 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_24.txt +10 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_25.txt +117 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_26.txt +46 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_27.txt +15 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_28.txt +25 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_29.txt +22 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_30.txt +23 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_31.txt +15 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_32.txt +14 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_33.txt +29 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_34.txt +19 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_35.txt +4 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_36.txt +40 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_37.txt +22 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_38.txt +101 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_39.txt +83 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_40.txt +10 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_41.txt +8 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_42.txt +20 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_43.txt +217 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_44.txt +33 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_45.txt +33 -0
- package/python3.4.2/lib/python3.4/test/test_email/data/msg_46.txt +23 -0
- package/python3.4.2/lib/python3.4/test/test_email/test__encoded_words.py +192 -0
- package/python3.4.2/lib/python3.4/test/test_email/test__header_value_parser.py +2606 -0
- package/python3.4.2/lib/python3.4/test/test_email/test_asian_codecs.py +82 -0
- package/python3.4.2/lib/python3.4/test/test_email/test_contentmanager.py +796 -0
- package/python3.4.2/lib/python3.4/test/test_email/test_defect_handling.py +320 -0
- package/python3.4.2/lib/python3.4/test/test_email/test_email.py +5289 -0
- package/python3.4.2/lib/python3.4/test/test_email/test_generator.py +199 -0
- package/python3.4.2/lib/python3.4/test/test_email/test_headerregistry.py +1594 -0
- package/python3.4.2/lib/python3.4/test/test_email/test_inversion.py +49 -0
- package/python3.4.2/lib/python3.4/test/test_email/test_message.py +783 -0
- package/python3.4.2/lib/python3.4/test/test_email/test_parser.py +36 -0
- package/python3.4.2/lib/python3.4/test/test_email/test_pickleable.py +74 -0
- package/python3.4.2/lib/python3.4/test/test_email/test_policy.py +332 -0
- package/python3.4.2/lib/python3.4/test/test_email/test_utils.py +140 -0
- package/python3.4.2/lib/python3.4/test/test_email/torture_test.py +136 -0
- package/python3.4.2/lib/python3.4/test/test_ensurepip.py +345 -0
- package/python3.4.2/lib/python3.4/test/test_enum.py +1592 -0
- package/python3.4.2/lib/python3.4/test/test_enumerate.py +272 -0
- package/python3.4.2/lib/python3.4/test/test_eof.py +31 -0
- package/python3.4.2/lib/python3.4/test/test_epoll.py +259 -0
- package/python3.4.2/lib/python3.4/test/test_errno.py +40 -0
- package/python3.4.2/lib/python3.4/test/test_exception_variations.py +180 -0
- package/python3.4.2/lib/python3.4/test/test_exceptions.py +978 -0
- package/python3.4.2/lib/python3.4/test/test_extcall.py +349 -0
- package/python3.4.2/lib/python3.4/test/test_faulthandler.py +623 -0
- package/python3.4.2/lib/python3.4/test/test_fcntl.py +152 -0
- package/python3.4.2/lib/python3.4/test/test_file.py +329 -0
- package/python3.4.2/lib/python3.4/test/test_file_eintr.py +236 -0
- package/python3.4.2/lib/python3.4/test/test_filecmp.py +217 -0
- package/python3.4.2/lib/python3.4/test/test_fileinput.py +891 -0
- package/python3.4.2/lib/python3.4/test/test_fileio.py +480 -0
- package/python3.4.2/lib/python3.4/test/test_finalization.py +522 -0
- package/python3.4.2/lib/python3.4/test/test_float.py +1312 -0
- package/python3.4.2/lib/python3.4/test/test_flufl.py +27 -0
- package/python3.4.2/lib/python3.4/test/test_fnmatch.py +89 -0
- package/python3.4.2/lib/python3.4/test/test_fork1.py +111 -0
- package/python3.4.2/lib/python3.4/test/test_format.py +362 -0
- package/python3.4.2/lib/python3.4/test/test_fractions.py +612 -0
- package/python3.4.2/lib/python3.4/test/test_frame.py +168 -0
- package/python3.4.2/lib/python3.4/test/test_ftplib.py +1080 -0
- package/python3.4.2/lib/python3.4/test/test_funcattrs.py +385 -0
- package/python3.4.2/lib/python3.4/test/test_functools.py +1584 -0
- package/python3.4.2/lib/python3.4/test/test_future.py +125 -0
- package/python3.4.2/lib/python3.4/test/test_future3.py +26 -0
- package/python3.4.2/lib/python3.4/test/test_future4.py +6 -0
- package/python3.4.2/lib/python3.4/test/test_future5.py +21 -0
- package/python3.4.2/lib/python3.4/test/test_gc.py +1013 -0
- package/python3.4.2/lib/python3.4/test/test_gdb.py +870 -0
- package/python3.4.2/lib/python3.4/test/test_generators.py +1940 -0
- package/python3.4.2/lib/python3.4/test/test_genericpath.py +439 -0
- package/python3.4.2/lib/python3.4/test/test_genexps.py +285 -0
- package/python3.4.2/lib/python3.4/test/test_getargs2.py +615 -0
- package/python3.4.2/lib/python3.4/test/test_getopt.py +187 -0
- package/python3.4.2/lib/python3.4/test/test_getpass.py +163 -0
- package/python3.4.2/lib/python3.4/test/test_gettext.py +467 -0
- package/python3.4.2/lib/python3.4/test/test_glob.py +200 -0
- package/python3.4.2/lib/python3.4/test/test_global.py +61 -0
- package/python3.4.2/lib/python3.4/test/test_grammar.py +1024 -0
- package/python3.4.2/lib/python3.4/test/test_grp.py +99 -0
- package/python3.4.2/lib/python3.4/test/test_gzip.py +561 -0
- package/python3.4.2/lib/python3.4/test/test_hash.py +346 -0
- package/python3.4.2/lib/python3.4/test/test_hashlib.py +533 -0
- package/python3.4.2/lib/python3.4/test/test_heapq.py +417 -0
- package/python3.4.2/lib/python3.4/test/test_hmac.py +506 -0
- package/python3.4.2/lib/python3.4/test/test_html.py +104 -0
- package/python3.4.2/lib/python3.4/test/test_htmlparser.py +832 -0
- package/python3.4.2/lib/python3.4/test/test_http_cookiejar.py +1714 -0
- package/python3.4.2/lib/python3.4/test/test_http_cookies.py +243 -0
- package/python3.4.2/lib/python3.4/test/test_httplib.py +1025 -0
- package/python3.4.2/lib/python3.4/test/test_httpservers.py +770 -0
- package/python3.4.2/lib/python3.4/test/test_idle.py +16 -0
- package/python3.4.2/lib/python3.4/test/test_imaplib.py +504 -0
- package/python3.4.2/lib/python3.4/test/test_imghdr.py +131 -0
- package/python3.4.2/lib/python3.4/test/test_imp.py +485 -0
- package/python3.4.2/lib/python3.4/test/test_import.py +1072 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/__init__.py +5 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/__main__.py +4 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/abc.py +94 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/builtin/__init__.py +5 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/builtin/__main__.py +4 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/builtin/test_finder.py +85 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/builtin/test_loader.py +106 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/builtin/util.py +7 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/extension/__init__.py +5 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/extension/__main__.py +4 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/extension/test_case_sensitivity.py +51 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/extension/test_finder.py +44 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/extension/test_loader.py +86 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/extension/test_path_hook.py +32 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/extension/util.py +19 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/frozen/__init__.py +5 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/frozen/__main__.py +4 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/frozen/test_finder.py +80 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/frozen/test_loader.py +222 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/import_/__init__.py +5 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/import_/__main__.py +4 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/import_/test___loader__.py +70 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/import_/test___package__.py +133 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/import_/test_api.py +94 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/import_/test_caching.py +92 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/import_/test_fromlist.py +129 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/import_/test_meta_path.py +119 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/import_/test_packages.py +110 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/import_/test_path.py +144 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/import_/test_relative_imports.py +216 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/import_/util.py +20 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/both_portions/foo/one.py +1 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/both_portions/foo/two.py +1 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/missing_directory.zip +0 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test/empty +0 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test.py +1 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/nested_portion1.zip +0 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/__init__.py +0 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/one.py +1 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/portion1/foo/one.py +1 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/portion2/foo/two.py +1 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/project1/parent/child/one.py +1 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/project2/parent/child/two.py +1 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/project3/parent/child/three.py +1 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/namespace_pkgs/top_level_portion1.zip +0 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/regrtest.py +17 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/source/__init__.py +5 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/source/__main__.py +4 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/source/test_case_sensitivity.py +83 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/source/test_file_loader.py +588 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/source/test_finder.py +232 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/source/test_path_hook.py +30 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/source/test_source_encoding.py +165 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/source/util.py +96 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/test_abc.py +951 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/test_api.py +437 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/test_locks.py +156 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/test_namespace_pkgs.py +293 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/test_spec.py +957 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/test_util.py +592 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/test_windows.py +29 -0
- package/python3.4.2/lib/python3.4/test/test_importlib/util.py +225 -0
- package/python3.4.2/lib/python3.4/test/test_index.py +275 -0
- package/python3.4.2/lib/python3.4/test/test_inspect.py +3103 -0
- package/python3.4.2/lib/python3.4/test/test_int.py +458 -0
- package/python3.4.2/lib/python3.4/test/test_int_literal.py +147 -0
- package/python3.4.2/lib/python3.4/test/test_io.py +3481 -0
- package/python3.4.2/lib/python3.4/test/test_ioctl.py +91 -0
- package/python3.4.2/lib/python3.4/test/test_ipaddress.py +1693 -0
- package/python3.4.2/lib/python3.4/test/test_isinstance.py +289 -0
- package/python3.4.2/lib/python3.4/test/test_iter.py +927 -0
- package/python3.4.2/lib/python3.4/test/test_iterlen.py +229 -0
- package/python3.4.2/lib/python3.4/test/test_itertools.py +2142 -0
- package/python3.4.2/lib/python3.4/test/test_json/__init__.py +53 -0
- package/python3.4.2/lib/python3.4/test/test_json/__main__.py +4 -0
- package/python3.4.2/lib/python3.4/test/test_json/test_decode.py +99 -0
- package/python3.4.2/lib/python3.4/test/test_json/test_default.py +12 -0
- package/python3.4.2/lib/python3.4/test/test_json/test_dump.py +49 -0
- package/python3.4.2/lib/python3.4/test/test_json/test_encode_basestring_ascii.py +44 -0
- package/python3.4.2/lib/python3.4/test/test_json/test_enum.py +120 -0
- package/python3.4.2/lib/python3.4/test/test_json/test_fail.py +194 -0
- package/python3.4.2/lib/python3.4/test/test_json/test_float.py +33 -0
- package/python3.4.2/lib/python3.4/test/test_json/test_indent.py +67 -0
- package/python3.4.2/lib/python3.4/test/test_json/test_pass1.py +75 -0
- package/python3.4.2/lib/python3.4/test/test_json/test_pass2.py +18 -0
- package/python3.4.2/lib/python3.4/test/test_json/test_pass3.py +24 -0
- package/python3.4.2/lib/python3.4/test/test_json/test_recursion.py +100 -0
- package/python3.4.2/lib/python3.4/test/test_json/test_scanstring.py +141 -0
- package/python3.4.2/lib/python3.4/test/test_json/test_separators.py +44 -0
- package/python3.4.2/lib/python3.4/test/test_json/test_speedups.py +24 -0
- package/python3.4.2/lib/python3.4/test/test_json/test_tool.py +69 -0
- package/python3.4.2/lib/python3.4/test/test_json/test_unicode.py +75 -0
- package/python3.4.2/lib/python3.4/test/test_keyword.py +138 -0
- package/python3.4.2/lib/python3.4/test/test_keywordonlyarg.py +193 -0
- package/python3.4.2/lib/python3.4/test/test_kqueue.py +219 -0
- package/python3.4.2/lib/python3.4/test/test_largefile.py +180 -0
- package/python3.4.2/lib/python3.4/test/test_lib2to3.py +22 -0
- package/python3.4.2/lib/python3.4/test/test_linecache.py +133 -0
- package/python3.4.2/lib/python3.4/test/test_list.py +125 -0
- package/python3.4.2/lib/python3.4/test/test_listcomps.py +148 -0
- package/python3.4.2/lib/python3.4/test/test_locale.py +528 -0
- package/python3.4.2/lib/python3.4/test/test_logging.py +4179 -0
- package/python3.4.2/lib/python3.4/test/test_long.py +1250 -0
- package/python3.4.2/lib/python3.4/test/test_longexp.py +14 -0
- package/python3.4.2/lib/python3.4/test/test_lzma.py +1592 -0
- package/python3.4.2/lib/python3.4/test/test_macpath.py +123 -0
- package/python3.4.2/lib/python3.4/test/test_macurl2path.py +31 -0
- package/python3.4.2/lib/python3.4/test/test_mailbox.py +2287 -0
- package/python3.4.2/lib/python3.4/test/test_mailcap.py +221 -0
- package/python3.4.2/lib/python3.4/test/test_marshal.py +451 -0
- package/python3.4.2/lib/python3.4/test/test_math.py +1107 -0
- package/python3.4.2/lib/python3.4/test/test_memoryio.py +784 -0
- package/python3.4.2/lib/python3.4/test/test_memoryview.py +478 -0
- package/python3.4.2/lib/python3.4/test/test_metaclass.py +265 -0
- package/python3.4.2/lib/python3.4/test/test_mimetypes.py +111 -0
- package/python3.4.2/lib/python3.4/test/test_minidom.py +1545 -0
- package/python3.4.2/lib/python3.4/test/test_mmap.py +774 -0
- package/python3.4.2/lib/python3.4/test/test_module.py +222 -0
- package/python3.4.2/lib/python3.4/test/test_modulefinder.py +324 -0
- package/python3.4.2/lib/python3.4/test/test_msilib.py +46 -0
- package/python3.4.2/lib/python3.4/test/test_multibytecodec.py +263 -0
- package/python3.4.2/lib/python3.4/test/test_multiprocessing_fork.py +7 -0
- package/python3.4.2/lib/python3.4/test/test_multiprocessing_forkserver.py +7 -0
- package/python3.4.2/lib/python3.4/test/test_multiprocessing_main_handling.py +289 -0
- package/python3.4.2/lib/python3.4/test/test_multiprocessing_spawn.py +7 -0
- package/python3.4.2/lib/python3.4/test/test_netrc.py +130 -0
- package/python3.4.2/lib/python3.4/test/test_nis.py +43 -0
- package/python3.4.2/lib/python3.4/test/test_nntplib.py +1429 -0
- package/python3.4.2/lib/python3.4/test/test_normalization.py +104 -0
- package/python3.4.2/lib/python3.4/test/test_ntpath.py +385 -0
- package/python3.4.2/lib/python3.4/test/test_numeric_tower.py +206 -0
- package/python3.4.2/lib/python3.4/test/test_opcodes.py +112 -0
- package/python3.4.2/lib/python3.4/test/test_openpty.py +25 -0
- package/python3.4.2/lib/python3.4/test/test_operator.py +484 -0
- package/python3.4.2/lib/python3.4/test/test_optparse.py +1657 -0
- package/python3.4.2/lib/python3.4/test/test_os.py +2550 -0
- package/python3.4.2/lib/python3.4/test/test_ossaudiodev.py +202 -0
- package/python3.4.2/lib/python3.4/test/test_osx_env.py +34 -0
- package/python3.4.2/lib/python3.4/test/test_parser.py +745 -0
- package/python3.4.2/lib/python3.4/test/test_pathlib.py +1884 -0
- package/python3.4.2/lib/python3.4/test/test_pdb.py +1052 -0
- package/python3.4.2/lib/python3.4/test/test_peepholer.py +339 -0
- package/python3.4.2/lib/python3.4/test/test_pep247.py +70 -0
- package/python3.4.2/lib/python3.4/test/test_pep277.py +201 -0
- package/python3.4.2/lib/python3.4/test/test_pep292.py +247 -0
- package/python3.4.2/lib/python3.4/test/test_pep3120.py +47 -0
- package/python3.4.2/lib/python3.4/test/test_pep3131.py +35 -0
- package/python3.4.2/lib/python3.4/test/test_pep3151.py +209 -0
- package/python3.4.2/lib/python3.4/test/test_pep352.py +184 -0
- package/python3.4.2/lib/python3.4/test/test_pep380.py +1023 -0
- package/python3.4.2/lib/python3.4/test/test_pickle.py +156 -0
- package/python3.4.2/lib/python3.4/test/test_pickletools.py +25 -0
- package/python3.4.2/lib/python3.4/test/test_pipes.py +196 -0
- package/python3.4.2/lib/python3.4/test/test_pkg.py +299 -0
- package/python3.4.2/lib/python3.4/test/test_pkgimport.py +84 -0
- package/python3.4.2/lib/python3.4/test/test_pkgutil.py +410 -0
- package/python3.4.2/lib/python3.4/test/test_platform.py +320 -0
- package/python3.4.2/lib/python3.4/test/test_plistlib.py +526 -0
- package/python3.4.2/lib/python3.4/test/test_poll.py +215 -0
- package/python3.4.2/lib/python3.4/test/test_popen.py +64 -0
- package/python3.4.2/lib/python3.4/test/test_poplib.py +507 -0
- package/python3.4.2/lib/python3.4/test/test_posix.py +1183 -0
- package/python3.4.2/lib/python3.4/test/test_posixpath.py +544 -0
- package/python3.4.2/lib/python3.4/test/test_pow.py +129 -0
- package/python3.4.2/lib/python3.4/test/test_pprint.py +602 -0
- package/python3.4.2/lib/python3.4/test/test_print.py +132 -0
- package/python3.4.2/lib/python3.4/test/test_profile.py +187 -0
- package/python3.4.2/lib/python3.4/test/test_property.py +254 -0
- package/python3.4.2/lib/python3.4/test/test_pstats.py +45 -0
- package/python3.4.2/lib/python3.4/test/test_pty.py +302 -0
- package/python3.4.2/lib/python3.4/test/test_pulldom.py +347 -0
- package/python3.4.2/lib/python3.4/test/test_pwd.py +114 -0
- package/python3.4.2/lib/python3.4/test/test_py_compile.py +103 -0
- package/python3.4.2/lib/python3.4/test/test_pyclbr.py +181 -0
- package/python3.4.2/lib/python3.4/test/test_pydoc.py +1003 -0
- package/python3.4.2/lib/python3.4/test/test_pyexpat.py +708 -0
- package/python3.4.2/lib/python3.4/test/test_queue.py +363 -0
- package/python3.4.2/lib/python3.4/test/test_quopri.py +208 -0
- package/python3.4.2/lib/python3.4/test/test_raise.py +422 -0
- package/python3.4.2/lib/python3.4/test/test_random.py +759 -0
- package/python3.4.2/lib/python3.4/test/test_range.py +652 -0
- package/python3.4.2/lib/python3.4/test/test_re.py +1451 -0
- package/python3.4.2/lib/python3.4/test/test_readline.py +60 -0
- package/python3.4.2/lib/python3.4/test/test_regrtest.py +275 -0
- package/python3.4.2/lib/python3.4/test/test_reprlib.py +383 -0
- package/python3.4.2/lib/python3.4/test/test_resource.py +166 -0
- package/python3.4.2/lib/python3.4/test/test_richcmp.py +333 -0
- package/python3.4.2/lib/python3.4/test/test_rlcompleter.py +73 -0
- package/python3.4.2/lib/python3.4/test/test_robotparser.py +320 -0
- package/python3.4.2/lib/python3.4/test/test_runpy.py +691 -0
- package/python3.4.2/lib/python3.4/test/test_sax.py +1007 -0
- package/python3.4.2/lib/python3.4/test/test_sched.py +199 -0
- package/python3.4.2/lib/python3.4/test/test_scope.py +764 -0
- package/python3.4.2/lib/python3.4/test/test_select.py +83 -0
- package/python3.4.2/lib/python3.4/test/test_selectors.py +453 -0
- package/python3.4.2/lib/python3.4/test/test_set.py +1839 -0
- package/python3.4.2/lib/python3.4/test/test_setcomps.py +151 -0
- package/python3.4.2/lib/python3.4/test/test_shelve.py +224 -0
- package/python3.4.2/lib/python3.4/test/test_shlex.py +202 -0
- package/python3.4.2/lib/python3.4/test/test_shutil.py +1766 -0
- package/python3.4.2/lib/python3.4/test/test_signal.py +940 -0
- package/python3.4.2/lib/python3.4/test/test_site.py +468 -0
- package/python3.4.2/lib/python3.4/test/test_slice.py +247 -0
- package/python3.4.2/lib/python3.4/test/test_smtpd.py +557 -0
- package/python3.4.2/lib/python3.4/test/test_smtplib.py +950 -0
- package/python3.4.2/lib/python3.4/test/test_smtpnet.py +86 -0
- package/python3.4.2/lib/python3.4/test/test_sndhdr.py +23 -0
- package/python3.4.2/lib/python3.4/test/test_socket.py +5163 -0
- package/python3.4.2/lib/python3.4/test/test_socketserver.py +314 -0
- package/python3.4.2/lib/python3.4/test/test_sort.py +285 -0
- package/python3.4.2/lib/python3.4/test/test_source_encoding.py +145 -0
- package/python3.4.2/lib/python3.4/test/test_spwd.py +60 -0
- package/python3.4.2/lib/python3.4/test/test_sqlite.py +24 -0
- package/python3.4.2/lib/python3.4/test/test_ssl.py +2908 -0
- package/python3.4.2/lib/python3.4/test/test_startfile.py +37 -0
- package/python3.4.2/lib/python3.4/test/test_stat.py +202 -0
- package/python3.4.2/lib/python3.4/test/test_statistics.py +1574 -0
- package/python3.4.2/lib/python3.4/test/test_strftime.py +204 -0
- package/python3.4.2/lib/python3.4/test/test_string.py +174 -0
- package/python3.4.2/lib/python3.4/test/test_stringprep.py +96 -0
- package/python3.4.2/lib/python3.4/test/test_strlit.py +206 -0
- package/python3.4.2/lib/python3.4/test/test_strptime.py +577 -0
- package/python3.4.2/lib/python3.4/test/test_strtod.py +436 -0
- package/python3.4.2/lib/python3.4/test/test_struct.py +667 -0
- package/python3.4.2/lib/python3.4/test/test_structmembers.py +147 -0
- package/python3.4.2/lib/python3.4/test/test_structseq.py +130 -0
- package/python3.4.2/lib/python3.4/test/test_subprocess.py +2474 -0
- package/python3.4.2/lib/python3.4/test/test_sunau.py +122 -0
- package/python3.4.2/lib/python3.4/test/test_sundry.py +59 -0
- package/python3.4.2/lib/python3.4/test/test_super.py +181 -0
- package/python3.4.2/lib/python3.4/test/test_support.py +315 -0
- package/python3.4.2/lib/python3.4/test/test_symtable.py +176 -0
- package/python3.4.2/lib/python3.4/test/test_syntax.py +593 -0
- package/python3.4.2/lib/python3.4/test/test_sys.py +1000 -0
- package/python3.4.2/lib/python3.4/test/test_sys_setprofile.py +386 -0
- package/python3.4.2/lib/python3.4/test/test_sys_settrace.py +834 -0
- package/python3.4.2/lib/python3.4/test/test_sysconfig.py +423 -0
- package/python3.4.2/lib/python3.4/test/test_syslog.py +43 -0
- package/python3.4.2/lib/python3.4/test/test_tarfile.py +2180 -0
- package/python3.4.2/lib/python3.4/test/test_tcl.py +642 -0
- package/python3.4.2/lib/python3.4/test/test_telnetlib.py +401 -0
- package/python3.4.2/lib/python3.4/test/test_tempfile.py +1248 -0
- package/python3.4.2/lib/python3.4/test/test_textwrap.py +929 -0
- package/python3.4.2/lib/python3.4/test/test_thread.py +260 -0
- package/python3.4.2/lib/python3.4/test/test_threaded_import.py +244 -0
- package/python3.4.2/lib/python3.4/test/test_threadedtempfile.py +78 -0
- package/python3.4.2/lib/python3.4/test/test_threading.py +1021 -0
- package/python3.4.2/lib/python3.4/test/test_threading_local.py +225 -0
- package/python3.4.2/lib/python3.4/test/test_threadsignals.py +227 -0
- package/python3.4.2/lib/python3.4/test/test_time.py +763 -0
- package/python3.4.2/lib/python3.4/test/test_timeit.py +306 -0
- package/python3.4.2/lib/python3.4/test/test_timeout.py +303 -0
- package/python3.4.2/lib/python3.4/test/test_tk.py +18 -0
- package/python3.4.2/lib/python3.4/test/test_tokenize.py +1233 -0
- package/python3.4.2/lib/python3.4/test/test_trace.py +415 -0
- package/python3.4.2/lib/python3.4/test/test_traceback.py +451 -0
- package/python3.4.2/lib/python3.4/test/test_tracemalloc.py +826 -0
- package/python3.4.2/lib/python3.4/test/test_ttk_guionly.py +37 -0
- package/python3.4.2/lib/python3.4/test/test_ttk_textonly.py +17 -0
- package/python3.4.2/lib/python3.4/test/test_tuple.py +208 -0
- package/python3.4.2/lib/python3.4/test/test_typechecks.py +76 -0
- package/python3.4.2/lib/python3.4/test/test_types.py +1178 -0
- package/python3.4.2/lib/python3.4/test/test_ucn.py +240 -0
- package/python3.4.2/lib/python3.4/test/test_unary.py +58 -0
- package/python3.4.2/lib/python3.4/test/test_unicode.py +2596 -0
- package/python3.4.2/lib/python3.4/test/test_unicode_file.py +144 -0
- package/python3.4.2/lib/python3.4/test/test_unicodedata.py +323 -0
- package/python3.4.2/lib/python3.4/test/test_unittest.py +16 -0
- package/python3.4.2/lib/python3.4/test/test_univnewlines.py +123 -0
- package/python3.4.2/lib/python3.4/test/test_unpack.py +130 -0
- package/python3.4.2/lib/python3.4/test/test_unpack_ex.py +174 -0
- package/python3.4.2/lib/python3.4/test/test_urllib.py +1486 -0
- package/python3.4.2/lib/python3.4/test/test_urllib2.py +1646 -0
- package/python3.4.2/lib/python3.4/test/test_urllib2_localnet.py +690 -0
- package/python3.4.2/lib/python3.4/test/test_urllib2net.py +342 -0
- package/python3.4.2/lib/python3.4/test/test_urllib_response.py +59 -0
- package/python3.4.2/lib/python3.4/test/test_urllibnet.py +212 -0
- package/python3.4.2/lib/python3.4/test/test_urlparse.py +879 -0
- package/python3.4.2/lib/python3.4/test/test_userdict.py +199 -0
- package/python3.4.2/lib/python3.4/test/test_userlist.py +65 -0
- package/python3.4.2/lib/python3.4/test/test_userstring.py +47 -0
- package/python3.4.2/lib/python3.4/test/test_uu.py +239 -0
- package/python3.4.2/lib/python3.4/test/test_uuid.py +498 -0
- package/python3.4.2/lib/python3.4/test/test_venv.py +406 -0
- package/python3.4.2/lib/python3.4/test/test_wait3.py +38 -0
- package/python3.4.2/lib/python3.4/test/test_wait4.py +38 -0
- package/python3.4.2/lib/python3.4/test/test_warnings.py +873 -0
- package/python3.4.2/lib/python3.4/test/test_wave.py +107 -0
- package/python3.4.2/lib/python3.4/test/test_weakref.py +1801 -0
- package/python3.4.2/lib/python3.4/test/test_weakset.py +450 -0
- package/python3.4.2/lib/python3.4/test/test_webbrowser.py +192 -0
- package/python3.4.2/lib/python3.4/test/test_winreg.py +485 -0
- package/python3.4.2/lib/python3.4/test/test_winsound.py +253 -0
- package/python3.4.2/lib/python3.4/test/test_with.py +750 -0
- package/python3.4.2/lib/python3.4/test/test_wsgiref.py +640 -0
- package/python3.4.2/lib/python3.4/test/test_xdrlib.py +58 -0
- package/python3.4.2/lib/python3.4/test/test_xml_dom_minicompat.py +101 -0
- package/python3.4.2/lib/python3.4/test/test_xml_etree.py +2587 -0
- package/python3.4.2/lib/python3.4/test/test_xml_etree_c.py +94 -0
- package/python3.4.2/lib/python3.4/test/test_xmlrpc.py +1114 -0
- package/python3.4.2/lib/python3.4/test/test_xmlrpc_net.py +33 -0
- package/python3.4.2/lib/python3.4/test/test_zipfile.py +1783 -0
- package/python3.4.2/lib/python3.4/test/test_zipfile64.py +118 -0
- package/python3.4.2/lib/python3.4/test/test_zipimport.py +507 -0
- package/python3.4.2/lib/python3.4/test/test_zipimport_support.py +246 -0
- package/python3.4.2/lib/python3.4/test/test_zlib.py +725 -0
- package/python3.4.2/lib/python3.4/test/testcodec.py +48 -0
- package/python3.4.2/lib/python3.4/test/testtar.tar +0 -0
- package/python3.4.2/lib/python3.4/test/tf_inherit_check.py +25 -0
- package/python3.4.2/lib/python3.4/test/threaded_import_hangers.py +45 -0
- package/python3.4.2/lib/python3.4/test/time_hashlib.py +87 -0
- package/python3.4.2/lib/python3.4/test/tokenize_tests-latin1-coding-cookie-and-utf8-bom-sig.txt +13 -0
- package/python3.4.2/lib/python3.4/test/tokenize_tests-no-coding-cookie-and-utf8-bom-sig-only.txt +11 -0
- package/python3.4.2/lib/python3.4/test/tokenize_tests-utf8-coding-cookie-and-no-utf8-bom-sig.txt +13 -0
- package/python3.4.2/lib/python3.4/test/tokenize_tests-utf8-coding-cookie-and-utf8-bom-sig.txt +12 -0
- package/python3.4.2/lib/python3.4/test/tokenize_tests.txt +189 -0
- package/python3.4.2/lib/python3.4/test/tracedmodules/__init__.py +4 -0
- package/python3.4.2/lib/python3.4/test/tracedmodules/testmod.py +9 -0
- package/python3.4.2/lib/python3.4/test/warning_tests.py +9 -0
- package/python3.4.2/lib/python3.4/test/win_console_handler.py +49 -0
- package/python3.4.2/lib/python3.4/test/xmltestdata/simple-ns.xml +7 -0
- package/python3.4.2/lib/python3.4/test/xmltestdata/simple.xml +6 -0
- package/python3.4.2/lib/python3.4/test/xmltestdata/test.xml +115 -0
- package/python3.4.2/lib/python3.4/test/xmltestdata/test.xml.out +115 -0
- package/python3.4.2/lib/python3.4/test/xmltests.py +21 -0
- package/python3.4.2/lib/python3.4/test/zip_cp437_header.zip +0 -0
- package/python3.4.2/lib/python3.4/test/zipdir.zip +0 -0
- package/python3.4.2/lib/python3.4/textwrap.py +470 -0
- package/python3.4.2/lib/python3.4/this.py +28 -0
- package/python3.4.2/lib/python3.4/threading.py +1359 -0
- package/python3.4.2/lib/python3.4/timeit.py +322 -0
- package/python3.4.2/lib/python3.4/tkinter/__init__.py +3898 -0
- package/python3.4.2/lib/python3.4/tkinter/__main__.py +7 -0
- package/python3.4.2/lib/python3.4/tkinter/_fix.py +78 -0
- package/python3.4.2/lib/python3.4/tkinter/colorchooser.py +72 -0
- package/python3.4.2/lib/python3.4/tkinter/commondialog.py +60 -0
- package/python3.4.2/lib/python3.4/tkinter/constants.py +110 -0
- package/python3.4.2/lib/python3.4/tkinter/dialog.py +49 -0
- package/python3.4.2/lib/python3.4/tkinter/dnd.py +321 -0
- package/python3.4.2/lib/python3.4/tkinter/filedialog.py +479 -0
- package/python3.4.2/lib/python3.4/tkinter/font.py +234 -0
- package/python3.4.2/lib/python3.4/tkinter/messagebox.py +134 -0
- package/python3.4.2/lib/python3.4/tkinter/scrolledtext.py +54 -0
- package/python3.4.2/lib/python3.4/tkinter/simpledialog.py +423 -0
- package/python3.4.2/lib/python3.4/tkinter/test/README +14 -0
- package/python3.4.2/lib/python3.4/tkinter/test/__init__.py +0 -0
- package/python3.4.2/lib/python3.4/tkinter/test/runtktests.py +71 -0
- package/python3.4.2/lib/python3.4/tkinter/test/support.py +104 -0
- package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/__init__.py +0 -0
- package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_font.py +27 -0
- package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_geometry_managers.py +900 -0
- package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_images.py +327 -0
- package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_loadtk.py +46 -0
- package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_misc.py +42 -0
- package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_text.py +47 -0
- package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_variables.py +186 -0
- package/python3.4.2/lib/python3.4/tkinter/test/test_tkinter/test_widgets.py +1193 -0
- package/python3.4.2/lib/python3.4/tkinter/test/test_ttk/__init__.py +0 -0
- package/python3.4.2/lib/python3.4/tkinter/test/test_ttk/test_extensions.py +291 -0
- package/python3.4.2/lib/python3.4/tkinter/test/test_ttk/test_functions.py +462 -0
- package/python3.4.2/lib/python3.4/tkinter/test/test_ttk/test_style.py +92 -0
- package/python3.4.2/lib/python3.4/tkinter/test/test_ttk/test_widgets.py +1598 -0
- package/python3.4.2/lib/python3.4/tkinter/test/widget_tests.py +521 -0
- package/python3.4.2/lib/python3.4/tkinter/tix.py +1944 -0
- package/python3.4.2/lib/python3.4/tkinter/ttk.py +1616 -0
- package/python3.4.2/lib/python3.4/token.py +140 -0
- package/python3.4.2/lib/python3.4/tokenize.py +691 -0
- package/python3.4.2/lib/python3.4/trace.py +858 -0
- package/python3.4.2/lib/python3.4/traceback.py +313 -0
- package/python3.4.2/lib/python3.4/tracemalloc.py +487 -0
- package/python3.4.2/lib/python3.4/tty.py +36 -0
- package/python3.4.2/lib/python3.4/turtle.py +4140 -0
- package/python3.4.2/lib/python3.4/turtledemo/__init__.py +14 -0
- package/python3.4.2/lib/python3.4/turtledemo/__main__.py +380 -0
- package/python3.4.2/lib/python3.4/turtledemo/bytedesign.py +162 -0
- package/python3.4.2/lib/python3.4/turtledemo/chaos.py +59 -0
- package/python3.4.2/lib/python3.4/turtledemo/clock.py +132 -0
- package/python3.4.2/lib/python3.4/turtledemo/colormixer.py +58 -0
- package/python3.4.2/lib/python3.4/turtledemo/forest.py +108 -0
- package/python3.4.2/lib/python3.4/turtledemo/fractalcurves.py +138 -0
- package/python3.4.2/lib/python3.4/turtledemo/lindenmayer.py +119 -0
- package/python3.4.2/lib/python3.4/turtledemo/minimal_hanoi.py +79 -0
- package/python3.4.2/lib/python3.4/turtledemo/nim.py +226 -0
- package/python3.4.2/lib/python3.4/turtledemo/paint.py +54 -0
- package/python3.4.2/lib/python3.4/turtledemo/peace.py +61 -0
- package/python3.4.2/lib/python3.4/turtledemo/penrose.py +181 -0
- package/python3.4.2/lib/python3.4/turtledemo/planet_and_moon.py +112 -0
- package/python3.4.2/lib/python3.4/turtledemo/round_dance.py +86 -0
- package/python3.4.2/lib/python3.4/turtledemo/tree.py +63 -0
- package/python3.4.2/lib/python3.4/turtledemo/turtle.cfg +10 -0
- package/python3.4.2/lib/python3.4/turtledemo/two_canvases.py +54 -0
- package/python3.4.2/lib/python3.4/turtledemo/wikipedia.py +65 -0
- package/python3.4.2/lib/python3.4/turtledemo/yinyang.py +49 -0
- package/python3.4.2/lib/python3.4/types.py +158 -0
- package/python3.4.2/lib/python3.4/unittest/__init__.py +69 -0
- package/python3.4.2/lib/python3.4/unittest/__main__.py +18 -0
- package/python3.4.2/lib/python3.4/unittest/case.py +1400 -0
- package/python3.4.2/lib/python3.4/unittest/loader.py +379 -0
- package/python3.4.2/lib/python3.4/unittest/main.py +248 -0
- package/python3.4.2/lib/python3.4/unittest/mock.py +2330 -0
- package/python3.4.2/lib/python3.4/unittest/result.py +212 -0
- package/python3.4.2/lib/python3.4/unittest/runner.py +213 -0
- package/python3.4.2/lib/python3.4/unittest/signals.py +71 -0
- package/python3.4.2/lib/python3.4/unittest/suite.py +324 -0
- package/python3.4.2/lib/python3.4/unittest/test/__init__.py +22 -0
- package/python3.4.2/lib/python3.4/unittest/test/__main__.py +18 -0
- package/python3.4.2/lib/python3.4/unittest/test/_test_warnings.py +73 -0
- package/python3.4.2/lib/python3.4/unittest/test/dummy.py +1 -0
- package/python3.4.2/lib/python3.4/unittest/test/support.py +142 -0
- package/python3.4.2/lib/python3.4/unittest/test/test_assertions.py +398 -0
- package/python3.4.2/lib/python3.4/unittest/test/test_break.py +288 -0
- package/python3.4.2/lib/python3.4/unittest/test/test_case.py +1574 -0
- package/python3.4.2/lib/python3.4/unittest/test/test_discovery.py +527 -0
- package/python3.4.2/lib/python3.4/unittest/test/test_functiontestcase.py +148 -0
- package/python3.4.2/lib/python3.4/unittest/test/test_loader.py +1312 -0
- package/python3.4.2/lib/python3.4/unittest/test/test_program.py +396 -0
- package/python3.4.2/lib/python3.4/unittest/test/test_result.py +660 -0
- package/python3.4.2/lib/python3.4/unittest/test/test_runner.py +346 -0
- package/python3.4.2/lib/python3.4/unittest/test/test_setups.py +506 -0
- package/python3.4.2/lib/python3.4/unittest/test/test_skipping.py +227 -0
- package/python3.4.2/lib/python3.4/unittest/test/test_suite.py +447 -0
- package/python3.4.2/lib/python3.4/unittest/test/testmock/__init__.py +17 -0
- package/python3.4.2/lib/python3.4/unittest/test/testmock/__main__.py +18 -0
- package/python3.4.2/lib/python3.4/unittest/test/testmock/support.py +23 -0
- package/python3.4.2/lib/python3.4/unittest/test/testmock/testcallable.py +151 -0
- package/python3.4.2/lib/python3.4/unittest/test/testmock/testhelpers.py +908 -0
- package/python3.4.2/lib/python3.4/unittest/test/testmock/testmagicmethods.py +428 -0
- package/python3.4.2/lib/python3.4/unittest/test/testmock/testmock.py +1412 -0
- package/python3.4.2/lib/python3.4/unittest/test/testmock/testpatch.py +1801 -0
- package/python3.4.2/lib/python3.4/unittest/test/testmock/testsentinel.py +28 -0
- package/python3.4.2/lib/python3.4/unittest/test/testmock/testwith.py +259 -0
- package/python3.4.2/lib/python3.4/unittest/util.py +177 -0
- package/python3.4.2/lib/python3.4/urllib/__init__.py +0 -0
- package/python3.4.2/lib/python3.4/urllib/error.py +76 -0
- package/python3.4.2/lib/python3.4/urllib/parse.py +973 -0
- package/python3.4.2/lib/python3.4/urllib/request.py +2559 -0
- package/python3.4.2/lib/python3.4/urllib/response.py +76 -0
- package/python3.4.2/lib/python3.4/urllib/robotparser.py +212 -0
- package/python3.4.2/lib/python3.4/uu.py +199 -0
- package/python3.4.2/lib/python3.4/uuid.py +591 -0
- package/python3.4.2/lib/python3.4/venv/__init__.py +449 -0
- package/python3.4.2/lib/python3.4/venv/__main__.py +10 -0
- package/python3.4.2/lib/python3.4/venv/scripts/posix/activate +76 -0
- package/python3.4.2/lib/python3.4/venv/scripts/posix/activate.csh +37 -0
- package/python3.4.2/lib/python3.4/venv/scripts/posix/activate.fish +74 -0
- package/python3.4.2/lib/python3.4/warnings.py +407 -0
- package/python3.4.2/lib/python3.4/wave.py +503 -0
- package/python3.4.2/lib/python3.4/weakref.py +577 -0
- package/python3.4.2/lib/python3.4/webbrowser.py +651 -0
- package/python3.4.2/lib/python3.4/wsgiref/__init__.py +23 -0
- package/python3.4.2/lib/python3.4/wsgiref/handlers.py +547 -0
- package/python3.4.2/lib/python3.4/wsgiref/headers.py +184 -0
- package/python3.4.2/lib/python3.4/wsgiref/simple_server.py +165 -0
- package/python3.4.2/lib/python3.4/wsgiref/util.py +165 -0
- package/python3.4.2/lib/python3.4/wsgiref/validate.py +443 -0
- package/python3.4.2/lib/python3.4/xdrlib.py +224 -0
- package/python3.4.2/lib/python3.4/xml/__init__.py +20 -0
- package/python3.4.2/lib/python3.4/xml/dom/NodeFilter.py +27 -0
- package/python3.4.2/lib/python3.4/xml/dom/__init__.py +140 -0
- package/python3.4.2/lib/python3.4/xml/dom/domreg.py +97 -0
- package/python3.4.2/lib/python3.4/xml/dom/expatbuilder.py +965 -0
- package/python3.4.2/lib/python3.4/xml/dom/minicompat.py +109 -0
- package/python3.4.2/lib/python3.4/xml/dom/minidom.py +1983 -0
- package/python3.4.2/lib/python3.4/xml/dom/pulldom.py +342 -0
- package/python3.4.2/lib/python3.4/xml/dom/xmlbuilder.py +386 -0
- package/python3.4.2/lib/python3.4/xml/etree/ElementInclude.py +143 -0
- package/python3.4.2/lib/python3.4/xml/etree/ElementPath.py +308 -0
- package/python3.4.2/lib/python3.4/xml/etree/ElementTree.py +1667 -0
- package/python3.4.2/lib/python3.4/xml/etree/__init__.py +33 -0
- package/python3.4.2/lib/python3.4/xml/etree/cElementTree.py +3 -0
- package/python3.4.2/lib/python3.4/xml/parsers/__init__.py +8 -0
- package/python3.4.2/lib/python3.4/xml/parsers/expat.py +8 -0
- package/python3.4.2/lib/python3.4/xml/sax/__init__.py +105 -0
- package/python3.4.2/lib/python3.4/xml/sax/_exceptions.py +131 -0
- package/python3.4.2/lib/python3.4/xml/sax/expatreader.py +417 -0
- package/python3.4.2/lib/python3.4/xml/sax/handler.py +342 -0
- package/python3.4.2/lib/python3.4/xml/sax/saxutils.py +365 -0
- package/python3.4.2/lib/python3.4/xml/sax/xmlreader.py +378 -0
- package/python3.4.2/lib/python3.4/xmlrpc/__init__.py +1 -0
- package/python3.4.2/lib/python3.4/xmlrpc/client.py +1479 -0
- package/python3.4.2/lib/python3.4/xmlrpc/server.py +986 -0
- package/python3.4.2/lib/python3.4/zipfile.py +1788 -0
- package/python3.4.2/share/man/man1/python3.1 +460 -0
- package/python3.4.2/share/man/man1/python3.4.1 +460 -0
|
@@ -0,0 +1,1729 @@
|
|
|
1
|
+
import importlib
|
|
2
|
+
import importlib.abc
|
|
3
|
+
import importlib.util
|
|
4
|
+
import os
|
|
5
|
+
import platform
|
|
6
|
+
import re
|
|
7
|
+
import string
|
|
8
|
+
import sys
|
|
9
|
+
from tkinter import *
|
|
10
|
+
import tkinter.simpledialog as tkSimpleDialog
|
|
11
|
+
import tkinter.messagebox as tkMessageBox
|
|
12
|
+
import traceback
|
|
13
|
+
import webbrowser
|
|
14
|
+
|
|
15
|
+
from idlelib.MultiCall import MultiCallCreator
|
|
16
|
+
from idlelib import idlever
|
|
17
|
+
from idlelib import WindowList
|
|
18
|
+
from idlelib import SearchDialog
|
|
19
|
+
from idlelib import GrepDialog
|
|
20
|
+
from idlelib import ReplaceDialog
|
|
21
|
+
from idlelib import PyParse
|
|
22
|
+
from idlelib.configHandler import idleConf
|
|
23
|
+
from idlelib import aboutDialog, textView, configDialog
|
|
24
|
+
from idlelib import macosxSupport
|
|
25
|
+
|
|
26
|
+
# The default tab setting for a Text widget, in average-width characters.
|
|
27
|
+
TK_TABWIDTH_DEFAULT = 8
|
|
28
|
+
|
|
29
|
+
_py_version = ' (%s)' % platform.python_version()
|
|
30
|
+
|
|
31
|
+
def _sphinx_version():
|
|
32
|
+
"Format sys.version_info to produce the Sphinx version string used to install the chm docs"
|
|
33
|
+
major, minor, micro, level, serial = sys.version_info
|
|
34
|
+
release = '%s%s' % (major, minor)
|
|
35
|
+
release += '%s' % (micro,)
|
|
36
|
+
if level == 'candidate':
|
|
37
|
+
release += 'rc%s' % (serial,)
|
|
38
|
+
elif level != 'final':
|
|
39
|
+
release += '%s%s' % (level[0], serial)
|
|
40
|
+
return release
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
class HelpDialog(object):
|
|
44
|
+
|
|
45
|
+
def __init__(self):
|
|
46
|
+
self.parent = None # parent of help window
|
|
47
|
+
self.dlg = None # the help window iteself
|
|
48
|
+
|
|
49
|
+
def display(self, parent, near=None):
|
|
50
|
+
""" Display the help dialog.
|
|
51
|
+
|
|
52
|
+
parent - parent widget for the help window
|
|
53
|
+
|
|
54
|
+
near - a Toplevel widget (e.g. EditorWindow or PyShell)
|
|
55
|
+
to use as a reference for placing the help window
|
|
56
|
+
"""
|
|
57
|
+
if self.dlg is None:
|
|
58
|
+
self.show_dialog(parent)
|
|
59
|
+
if near:
|
|
60
|
+
self.nearwindow(near)
|
|
61
|
+
|
|
62
|
+
def show_dialog(self, parent):
|
|
63
|
+
self.parent = parent
|
|
64
|
+
fn=os.path.join(os.path.abspath(os.path.dirname(__file__)),'help.txt')
|
|
65
|
+
self.dlg = dlg = textView.view_file(parent,'Help',fn, modal=False)
|
|
66
|
+
dlg.bind('<Destroy>', self.destroy, '+')
|
|
67
|
+
|
|
68
|
+
def nearwindow(self, near):
|
|
69
|
+
# Place the help dialog near the window specified by parent.
|
|
70
|
+
# Note - this may not reposition the window in Metacity
|
|
71
|
+
# if "/apps/metacity/general/disable_workarounds" is enabled
|
|
72
|
+
dlg = self.dlg
|
|
73
|
+
geom = (near.winfo_rootx() + 10, near.winfo_rooty() + 10)
|
|
74
|
+
dlg.withdraw()
|
|
75
|
+
dlg.geometry("=+%d+%d" % geom)
|
|
76
|
+
dlg.deiconify()
|
|
77
|
+
dlg.lift()
|
|
78
|
+
|
|
79
|
+
def destroy(self, ev=None):
|
|
80
|
+
self.dlg = None
|
|
81
|
+
self.parent = None
|
|
82
|
+
|
|
83
|
+
helpDialog = HelpDialog() # singleton instance
|
|
84
|
+
def _help_dialog(parent): # wrapper for htest
|
|
85
|
+
helpDialog.show_dialog(parent)
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
class EditorWindow(object):
|
|
89
|
+
from idlelib.Percolator import Percolator
|
|
90
|
+
from idlelib.ColorDelegator import ColorDelegator
|
|
91
|
+
from idlelib.UndoDelegator import UndoDelegator
|
|
92
|
+
from idlelib.IOBinding import IOBinding, filesystemencoding, encoding
|
|
93
|
+
from idlelib import Bindings
|
|
94
|
+
from tkinter import Toplevel
|
|
95
|
+
from idlelib.MultiStatusBar import MultiStatusBar
|
|
96
|
+
|
|
97
|
+
help_url = None
|
|
98
|
+
|
|
99
|
+
def __init__(self, flist=None, filename=None, key=None, root=None):
|
|
100
|
+
if EditorWindow.help_url is None:
|
|
101
|
+
dochome = os.path.join(sys.base_prefix, 'Doc', 'index.html')
|
|
102
|
+
if sys.platform.count('linux'):
|
|
103
|
+
# look for html docs in a couple of standard places
|
|
104
|
+
pyver = 'python-docs-' + '%s.%s.%s' % sys.version_info[:3]
|
|
105
|
+
if os.path.isdir('/var/www/html/python/'): # "python2" rpm
|
|
106
|
+
dochome = '/var/www/html/python/index.html'
|
|
107
|
+
else:
|
|
108
|
+
basepath = '/usr/share/doc/' # standard location
|
|
109
|
+
dochome = os.path.join(basepath, pyver,
|
|
110
|
+
'Doc', 'index.html')
|
|
111
|
+
elif sys.platform[:3] == 'win':
|
|
112
|
+
chmfile = os.path.join(sys.base_prefix, 'Doc',
|
|
113
|
+
'Python%s.chm' % _sphinx_version())
|
|
114
|
+
if os.path.isfile(chmfile):
|
|
115
|
+
dochome = chmfile
|
|
116
|
+
elif sys.platform == 'darwin':
|
|
117
|
+
# documentation may be stored inside a python framework
|
|
118
|
+
dochome = os.path.join(sys.base_prefix,
|
|
119
|
+
'Resources/English.lproj/Documentation/index.html')
|
|
120
|
+
dochome = os.path.normpath(dochome)
|
|
121
|
+
if os.path.isfile(dochome):
|
|
122
|
+
EditorWindow.help_url = dochome
|
|
123
|
+
if sys.platform == 'darwin':
|
|
124
|
+
# Safari requires real file:-URLs
|
|
125
|
+
EditorWindow.help_url = 'file://' + EditorWindow.help_url
|
|
126
|
+
else:
|
|
127
|
+
EditorWindow.help_url = "https://docs.python.org/%d.%d/" % sys.version_info[:2]
|
|
128
|
+
currentTheme=idleConf.CurrentTheme()
|
|
129
|
+
self.flist = flist
|
|
130
|
+
root = root or flist.root
|
|
131
|
+
self.root = root
|
|
132
|
+
try:
|
|
133
|
+
sys.ps1
|
|
134
|
+
except AttributeError:
|
|
135
|
+
sys.ps1 = '>>> '
|
|
136
|
+
self.menubar = Menu(root)
|
|
137
|
+
self.top = top = WindowList.ListedToplevel(root, menu=self.menubar)
|
|
138
|
+
if flist:
|
|
139
|
+
self.tkinter_vars = flist.vars
|
|
140
|
+
#self.top.instance_dict makes flist.inversedict available to
|
|
141
|
+
#configDialog.py so it can access all EditorWindow instances
|
|
142
|
+
self.top.instance_dict = flist.inversedict
|
|
143
|
+
else:
|
|
144
|
+
self.tkinter_vars = {} # keys: Tkinter event names
|
|
145
|
+
# values: Tkinter variable instances
|
|
146
|
+
self.top.instance_dict = {}
|
|
147
|
+
self.recent_files_path = os.path.join(idleConf.GetUserCfgDir(),
|
|
148
|
+
'recent-files.lst')
|
|
149
|
+
self.text_frame = text_frame = Frame(top)
|
|
150
|
+
self.vbar = vbar = Scrollbar(text_frame, name='vbar')
|
|
151
|
+
self.width = idleConf.GetOption('main', 'EditorWindow',
|
|
152
|
+
'width', type='int')
|
|
153
|
+
text_options = {
|
|
154
|
+
'name': 'text',
|
|
155
|
+
'padx': 5,
|
|
156
|
+
'wrap': 'none',
|
|
157
|
+
'width': self.width,
|
|
158
|
+
'height': idleConf.GetOption('main', 'EditorWindow',
|
|
159
|
+
'height', type='int')}
|
|
160
|
+
if TkVersion >= 8.5:
|
|
161
|
+
# Starting with tk 8.5 we have to set the new tabstyle option
|
|
162
|
+
# to 'wordprocessor' to achieve the same display of tabs as in
|
|
163
|
+
# older tk versions.
|
|
164
|
+
text_options['tabstyle'] = 'wordprocessor'
|
|
165
|
+
self.text = text = MultiCallCreator(Text)(text_frame, **text_options)
|
|
166
|
+
self.top.focused_widget = self.text
|
|
167
|
+
|
|
168
|
+
self.createmenubar()
|
|
169
|
+
self.apply_bindings()
|
|
170
|
+
|
|
171
|
+
self.top.protocol("WM_DELETE_WINDOW", self.close)
|
|
172
|
+
self.top.bind("<<close-window>>", self.close_event)
|
|
173
|
+
if macosxSupport.isAquaTk():
|
|
174
|
+
# Command-W on editorwindows doesn't work without this.
|
|
175
|
+
text.bind('<<close-window>>', self.close_event)
|
|
176
|
+
# Some OS X systems have only one mouse button,
|
|
177
|
+
# so use control-click for pulldown menus there.
|
|
178
|
+
# (Note, AquaTk defines <2> as the right button if
|
|
179
|
+
# present and the Tk Text widget already binds <2>.)
|
|
180
|
+
text.bind("<Control-Button-1>",self.right_menu_event)
|
|
181
|
+
else:
|
|
182
|
+
# Elsewhere, use right-click for pulldown menus.
|
|
183
|
+
text.bind("<3>",self.right_menu_event)
|
|
184
|
+
text.bind("<<cut>>", self.cut)
|
|
185
|
+
text.bind("<<copy>>", self.copy)
|
|
186
|
+
text.bind("<<paste>>", self.paste)
|
|
187
|
+
text.bind("<<center-insert>>", self.center_insert_event)
|
|
188
|
+
text.bind("<<help>>", self.help_dialog)
|
|
189
|
+
text.bind("<<python-docs>>", self.python_docs)
|
|
190
|
+
text.bind("<<about-idle>>", self.about_dialog)
|
|
191
|
+
text.bind("<<open-config-dialog>>", self.config_dialog)
|
|
192
|
+
text.bind("<<open-module>>", self.open_module)
|
|
193
|
+
text.bind("<<do-nothing>>", lambda event: "break")
|
|
194
|
+
text.bind("<<select-all>>", self.select_all)
|
|
195
|
+
text.bind("<<remove-selection>>", self.remove_selection)
|
|
196
|
+
text.bind("<<find>>", self.find_event)
|
|
197
|
+
text.bind("<<find-again>>", self.find_again_event)
|
|
198
|
+
text.bind("<<find-in-files>>", self.find_in_files_event)
|
|
199
|
+
text.bind("<<find-selection>>", self.find_selection_event)
|
|
200
|
+
text.bind("<<replace>>", self.replace_event)
|
|
201
|
+
text.bind("<<goto-line>>", self.goto_line_event)
|
|
202
|
+
text.bind("<<smart-backspace>>",self.smart_backspace_event)
|
|
203
|
+
text.bind("<<newline-and-indent>>",self.newline_and_indent_event)
|
|
204
|
+
text.bind("<<smart-indent>>",self.smart_indent_event)
|
|
205
|
+
text.bind("<<indent-region>>",self.indent_region_event)
|
|
206
|
+
text.bind("<<dedent-region>>",self.dedent_region_event)
|
|
207
|
+
text.bind("<<comment-region>>",self.comment_region_event)
|
|
208
|
+
text.bind("<<uncomment-region>>",self.uncomment_region_event)
|
|
209
|
+
text.bind("<<tabify-region>>",self.tabify_region_event)
|
|
210
|
+
text.bind("<<untabify-region>>",self.untabify_region_event)
|
|
211
|
+
text.bind("<<toggle-tabs>>",self.toggle_tabs_event)
|
|
212
|
+
text.bind("<<change-indentwidth>>",self.change_indentwidth_event)
|
|
213
|
+
text.bind("<Left>", self.move_at_edge_if_selection(0))
|
|
214
|
+
text.bind("<Right>", self.move_at_edge_if_selection(1))
|
|
215
|
+
text.bind("<<del-word-left>>", self.del_word_left)
|
|
216
|
+
text.bind("<<del-word-right>>", self.del_word_right)
|
|
217
|
+
text.bind("<<beginning-of-line>>", self.home_callback)
|
|
218
|
+
|
|
219
|
+
if flist:
|
|
220
|
+
flist.inversedict[self] = key
|
|
221
|
+
if key:
|
|
222
|
+
flist.dict[key] = self
|
|
223
|
+
text.bind("<<open-new-window>>", self.new_callback)
|
|
224
|
+
text.bind("<<close-all-windows>>", self.flist.close_all_callback)
|
|
225
|
+
text.bind("<<open-class-browser>>", self.open_class_browser)
|
|
226
|
+
text.bind("<<open-path-browser>>", self.open_path_browser)
|
|
227
|
+
text.bind("<<open-turtle-demo>>", self.open_turtle_demo)
|
|
228
|
+
|
|
229
|
+
self.set_status_bar()
|
|
230
|
+
vbar['command'] = text.yview
|
|
231
|
+
vbar.pack(side=RIGHT, fill=Y)
|
|
232
|
+
text['yscrollcommand'] = vbar.set
|
|
233
|
+
fontWeight = 'normal'
|
|
234
|
+
if idleConf.GetOption('main', 'EditorWindow', 'font-bold', type='bool'):
|
|
235
|
+
fontWeight='bold'
|
|
236
|
+
text.config(font=(idleConf.GetOption('main', 'EditorWindow', 'font'),
|
|
237
|
+
idleConf.GetOption('main', 'EditorWindow',
|
|
238
|
+
'font-size', type='int'),
|
|
239
|
+
fontWeight))
|
|
240
|
+
text_frame.pack(side=LEFT, fill=BOTH, expand=1)
|
|
241
|
+
text.pack(side=TOP, fill=BOTH, expand=1)
|
|
242
|
+
text.focus_set()
|
|
243
|
+
|
|
244
|
+
# usetabs true -> literal tab characters are used by indent and
|
|
245
|
+
# dedent cmds, possibly mixed with spaces if
|
|
246
|
+
# indentwidth is not a multiple of tabwidth,
|
|
247
|
+
# which will cause Tabnanny to nag!
|
|
248
|
+
# false -> tab characters are converted to spaces by indent
|
|
249
|
+
# and dedent cmds, and ditto TAB keystrokes
|
|
250
|
+
# Although use-spaces=0 can be configured manually in config-main.def,
|
|
251
|
+
# configuration of tabs v. spaces is not supported in the configuration
|
|
252
|
+
# dialog. IDLE promotes the preferred Python indentation: use spaces!
|
|
253
|
+
usespaces = idleConf.GetOption('main', 'Indent',
|
|
254
|
+
'use-spaces', type='bool')
|
|
255
|
+
self.usetabs = not usespaces
|
|
256
|
+
|
|
257
|
+
# tabwidth is the display width of a literal tab character.
|
|
258
|
+
# CAUTION: telling Tk to use anything other than its default
|
|
259
|
+
# tab setting causes it to use an entirely different tabbing algorithm,
|
|
260
|
+
# treating tab stops as fixed distances from the left margin.
|
|
261
|
+
# Nobody expects this, so for now tabwidth should never be changed.
|
|
262
|
+
self.tabwidth = 8 # must remain 8 until Tk is fixed.
|
|
263
|
+
|
|
264
|
+
# indentwidth is the number of screen characters per indent level.
|
|
265
|
+
# The recommended Python indentation is four spaces.
|
|
266
|
+
self.indentwidth = self.tabwidth
|
|
267
|
+
self.set_notabs_indentwidth()
|
|
268
|
+
|
|
269
|
+
# If context_use_ps1 is true, parsing searches back for a ps1 line;
|
|
270
|
+
# else searches for a popular (if, def, ...) Python stmt.
|
|
271
|
+
self.context_use_ps1 = False
|
|
272
|
+
|
|
273
|
+
# When searching backwards for a reliable place to begin parsing,
|
|
274
|
+
# first start num_context_lines[0] lines back, then
|
|
275
|
+
# num_context_lines[1] lines back if that didn't work, and so on.
|
|
276
|
+
# The last value should be huge (larger than the # of lines in a
|
|
277
|
+
# conceivable file).
|
|
278
|
+
# Making the initial values larger slows things down more often.
|
|
279
|
+
self.num_context_lines = 50, 500, 5000000
|
|
280
|
+
self.per = per = self.Percolator(text)
|
|
281
|
+
self.undo = undo = self.UndoDelegator()
|
|
282
|
+
per.insertfilter(undo)
|
|
283
|
+
text.undo_block_start = undo.undo_block_start
|
|
284
|
+
text.undo_block_stop = undo.undo_block_stop
|
|
285
|
+
undo.set_saved_change_hook(self.saved_change_hook)
|
|
286
|
+
# IOBinding implements file I/O and printing functionality
|
|
287
|
+
self.io = io = self.IOBinding(self)
|
|
288
|
+
io.set_filename_change_hook(self.filename_change_hook)
|
|
289
|
+
self.good_load = False
|
|
290
|
+
self.set_indentation_params(False)
|
|
291
|
+
self.color = None # initialized below in self.ResetColorizer
|
|
292
|
+
if filename:
|
|
293
|
+
if os.path.exists(filename) and not os.path.isdir(filename):
|
|
294
|
+
if io.loadfile(filename):
|
|
295
|
+
self.good_load = True
|
|
296
|
+
is_py_src = self.ispythonsource(filename)
|
|
297
|
+
self.set_indentation_params(is_py_src)
|
|
298
|
+
else:
|
|
299
|
+
io.set_filename(filename)
|
|
300
|
+
self.good_load = True
|
|
301
|
+
|
|
302
|
+
self.ResetColorizer()
|
|
303
|
+
self.saved_change_hook()
|
|
304
|
+
self.update_recent_files_list()
|
|
305
|
+
self.load_extensions()
|
|
306
|
+
menu = self.menudict.get('windows')
|
|
307
|
+
if menu:
|
|
308
|
+
end = menu.index("end")
|
|
309
|
+
if end is None:
|
|
310
|
+
end = -1
|
|
311
|
+
if end >= 0:
|
|
312
|
+
menu.add_separator()
|
|
313
|
+
end = end + 1
|
|
314
|
+
self.wmenu_end = end
|
|
315
|
+
WindowList.register_callback(self.postwindowsmenu)
|
|
316
|
+
|
|
317
|
+
# Some abstractions so IDLE extensions are cross-IDE
|
|
318
|
+
self.askyesno = tkMessageBox.askyesno
|
|
319
|
+
self.askinteger = tkSimpleDialog.askinteger
|
|
320
|
+
self.showerror = tkMessageBox.showerror
|
|
321
|
+
|
|
322
|
+
self._highlight_workaround() # Fix selection tags on Windows
|
|
323
|
+
|
|
324
|
+
def _highlight_workaround(self):
|
|
325
|
+
# On Windows, Tk removes painting of the selection
|
|
326
|
+
# tags which is different behavior than on Linux and Mac.
|
|
327
|
+
# See issue14146 for more information.
|
|
328
|
+
if not sys.platform.startswith('win'):
|
|
329
|
+
return
|
|
330
|
+
|
|
331
|
+
text = self.text
|
|
332
|
+
text.event_add("<<Highlight-FocusOut>>", "<FocusOut>")
|
|
333
|
+
text.event_add("<<Highlight-FocusIn>>", "<FocusIn>")
|
|
334
|
+
def highlight_fix(focus):
|
|
335
|
+
sel_range = text.tag_ranges("sel")
|
|
336
|
+
if sel_range:
|
|
337
|
+
if focus == 'out':
|
|
338
|
+
HILITE_CONFIG = idleConf.GetHighlight(
|
|
339
|
+
idleConf.CurrentTheme(), 'hilite')
|
|
340
|
+
text.tag_config("sel_fix", HILITE_CONFIG)
|
|
341
|
+
text.tag_raise("sel_fix")
|
|
342
|
+
text.tag_add("sel_fix", *sel_range)
|
|
343
|
+
elif focus == 'in':
|
|
344
|
+
text.tag_remove("sel_fix", "1.0", "end")
|
|
345
|
+
|
|
346
|
+
text.bind("<<Highlight-FocusOut>>",
|
|
347
|
+
lambda ev: highlight_fix("out"))
|
|
348
|
+
text.bind("<<Highlight-FocusIn>>",
|
|
349
|
+
lambda ev: highlight_fix("in"))
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
def _filename_to_unicode(self, filename):
|
|
353
|
+
"""convert filename to unicode in order to display it in Tk"""
|
|
354
|
+
if isinstance(filename, str) or not filename:
|
|
355
|
+
return filename
|
|
356
|
+
else:
|
|
357
|
+
try:
|
|
358
|
+
return filename.decode(self.filesystemencoding)
|
|
359
|
+
except UnicodeDecodeError:
|
|
360
|
+
# XXX
|
|
361
|
+
try:
|
|
362
|
+
return filename.decode(self.encoding)
|
|
363
|
+
except UnicodeDecodeError:
|
|
364
|
+
# byte-to-byte conversion
|
|
365
|
+
return filename.decode('iso8859-1')
|
|
366
|
+
|
|
367
|
+
def new_callback(self, event):
|
|
368
|
+
dirname, basename = self.io.defaultfilename()
|
|
369
|
+
self.flist.new(dirname)
|
|
370
|
+
return "break"
|
|
371
|
+
|
|
372
|
+
def home_callback(self, event):
|
|
373
|
+
if (event.state & 4) != 0 and event.keysym == "Home":
|
|
374
|
+
# state&4==Control. If <Control-Home>, use the Tk binding.
|
|
375
|
+
return
|
|
376
|
+
if self.text.index("iomark") and \
|
|
377
|
+
self.text.compare("iomark", "<=", "insert lineend") and \
|
|
378
|
+
self.text.compare("insert linestart", "<=", "iomark"):
|
|
379
|
+
# In Shell on input line, go to just after prompt
|
|
380
|
+
insertpt = int(self.text.index("iomark").split(".")[1])
|
|
381
|
+
else:
|
|
382
|
+
line = self.text.get("insert linestart", "insert lineend")
|
|
383
|
+
for insertpt in range(len(line)):
|
|
384
|
+
if line[insertpt] not in (' ','\t'):
|
|
385
|
+
break
|
|
386
|
+
else:
|
|
387
|
+
insertpt=len(line)
|
|
388
|
+
lineat = int(self.text.index("insert").split('.')[1])
|
|
389
|
+
if insertpt == lineat:
|
|
390
|
+
insertpt = 0
|
|
391
|
+
dest = "insert linestart+"+str(insertpt)+"c"
|
|
392
|
+
if (event.state&1) == 0:
|
|
393
|
+
# shift was not pressed
|
|
394
|
+
self.text.tag_remove("sel", "1.0", "end")
|
|
395
|
+
else:
|
|
396
|
+
if not self.text.index("sel.first"):
|
|
397
|
+
# there was no previous selection
|
|
398
|
+
self.text.mark_set("my_anchor", "insert")
|
|
399
|
+
else:
|
|
400
|
+
if self.text.compare(self.text.index("sel.first"), "<",
|
|
401
|
+
self.text.index("insert")):
|
|
402
|
+
self.text.mark_set("my_anchor", "sel.first") # extend back
|
|
403
|
+
else:
|
|
404
|
+
self.text.mark_set("my_anchor", "sel.last") # extend forward
|
|
405
|
+
first = self.text.index(dest)
|
|
406
|
+
last = self.text.index("my_anchor")
|
|
407
|
+
if self.text.compare(first,">",last):
|
|
408
|
+
first,last = last,first
|
|
409
|
+
self.text.tag_remove("sel", "1.0", "end")
|
|
410
|
+
self.text.tag_add("sel", first, last)
|
|
411
|
+
self.text.mark_set("insert", dest)
|
|
412
|
+
self.text.see("insert")
|
|
413
|
+
return "break"
|
|
414
|
+
|
|
415
|
+
def set_status_bar(self):
|
|
416
|
+
self.status_bar = self.MultiStatusBar(self.top)
|
|
417
|
+
if sys.platform == "darwin":
|
|
418
|
+
# Insert some padding to avoid obscuring some of the statusbar
|
|
419
|
+
# by the resize widget.
|
|
420
|
+
self.status_bar.set_label('_padding1', ' ', side=RIGHT)
|
|
421
|
+
self.status_bar.set_label('column', 'Col: ?', side=RIGHT)
|
|
422
|
+
self.status_bar.set_label('line', 'Ln: ?', side=RIGHT)
|
|
423
|
+
self.status_bar.pack(side=BOTTOM, fill=X)
|
|
424
|
+
self.text.bind("<<set-line-and-column>>", self.set_line_and_column)
|
|
425
|
+
self.text.event_add("<<set-line-and-column>>",
|
|
426
|
+
"<KeyRelease>", "<ButtonRelease>")
|
|
427
|
+
self.text.after_idle(self.set_line_and_column)
|
|
428
|
+
|
|
429
|
+
def set_line_and_column(self, event=None):
|
|
430
|
+
line, column = self.text.index(INSERT).split('.')
|
|
431
|
+
self.status_bar.set_label('column', 'Col: %s' % column)
|
|
432
|
+
self.status_bar.set_label('line', 'Ln: %s' % line)
|
|
433
|
+
|
|
434
|
+
menu_specs = [
|
|
435
|
+
("file", "_File"),
|
|
436
|
+
("edit", "_Edit"),
|
|
437
|
+
("format", "F_ormat"),
|
|
438
|
+
("run", "_Run"),
|
|
439
|
+
("options", "_Options"),
|
|
440
|
+
("windows", "_Windows"),
|
|
441
|
+
("help", "_Help"),
|
|
442
|
+
]
|
|
443
|
+
|
|
444
|
+
if sys.platform == "darwin":
|
|
445
|
+
menu_specs[-2] = ("windows", "_Window")
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
def createmenubar(self):
|
|
449
|
+
mbar = self.menubar
|
|
450
|
+
self.menudict = menudict = {}
|
|
451
|
+
for name, label in self.menu_specs:
|
|
452
|
+
underline, label = prepstr(label)
|
|
453
|
+
menudict[name] = menu = Menu(mbar, name=name)
|
|
454
|
+
mbar.add_cascade(label=label, menu=menu, underline=underline)
|
|
455
|
+
if macosxSupport.isCarbonTk():
|
|
456
|
+
# Insert the application menu
|
|
457
|
+
menudict['application'] = menu = Menu(mbar, name='apple')
|
|
458
|
+
mbar.add_cascade(label='IDLE', menu=menu)
|
|
459
|
+
self.fill_menus()
|
|
460
|
+
self.recent_files_menu = Menu(self.menubar)
|
|
461
|
+
self.menudict['file'].insert_cascade(3, label='Recent Files',
|
|
462
|
+
underline=0,
|
|
463
|
+
menu=self.recent_files_menu)
|
|
464
|
+
self.base_helpmenu_length = self.menudict['help'].index(END)
|
|
465
|
+
self.reset_help_menu_entries()
|
|
466
|
+
|
|
467
|
+
def postwindowsmenu(self):
|
|
468
|
+
# Only called when Windows menu exists
|
|
469
|
+
menu = self.menudict['windows']
|
|
470
|
+
end = menu.index("end")
|
|
471
|
+
if end is None:
|
|
472
|
+
end = -1
|
|
473
|
+
if end > self.wmenu_end:
|
|
474
|
+
menu.delete(self.wmenu_end+1, end)
|
|
475
|
+
WindowList.add_windows_to_menu(menu)
|
|
476
|
+
|
|
477
|
+
rmenu = None
|
|
478
|
+
|
|
479
|
+
def right_menu_event(self, event):
|
|
480
|
+
self.text.mark_set("insert", "@%d,%d" % (event.x, event.y))
|
|
481
|
+
if not self.rmenu:
|
|
482
|
+
self.make_rmenu()
|
|
483
|
+
rmenu = self.rmenu
|
|
484
|
+
self.event = event
|
|
485
|
+
iswin = sys.platform[:3] == 'win'
|
|
486
|
+
if iswin:
|
|
487
|
+
self.text.config(cursor="arrow")
|
|
488
|
+
|
|
489
|
+
for item in self.rmenu_specs:
|
|
490
|
+
try:
|
|
491
|
+
label, eventname, verify_state = item
|
|
492
|
+
except ValueError: # see issue1207589
|
|
493
|
+
continue
|
|
494
|
+
|
|
495
|
+
if verify_state is None:
|
|
496
|
+
continue
|
|
497
|
+
state = getattr(self, verify_state)()
|
|
498
|
+
rmenu.entryconfigure(label, state=state)
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
rmenu.tk_popup(event.x_root, event.y_root)
|
|
502
|
+
if iswin:
|
|
503
|
+
self.text.config(cursor="ibeam")
|
|
504
|
+
|
|
505
|
+
rmenu_specs = [
|
|
506
|
+
# ("Label", "<<virtual-event>>", "statefuncname"), ...
|
|
507
|
+
("Close", "<<close-window>>", None), # Example
|
|
508
|
+
]
|
|
509
|
+
|
|
510
|
+
def make_rmenu(self):
|
|
511
|
+
rmenu = Menu(self.text, tearoff=0)
|
|
512
|
+
for item in self.rmenu_specs:
|
|
513
|
+
label, eventname = item[0], item[1]
|
|
514
|
+
if label is not None:
|
|
515
|
+
def command(text=self.text, eventname=eventname):
|
|
516
|
+
text.event_generate(eventname)
|
|
517
|
+
rmenu.add_command(label=label, command=command)
|
|
518
|
+
else:
|
|
519
|
+
rmenu.add_separator()
|
|
520
|
+
self.rmenu = rmenu
|
|
521
|
+
|
|
522
|
+
def rmenu_check_cut(self):
|
|
523
|
+
return self.rmenu_check_copy()
|
|
524
|
+
|
|
525
|
+
def rmenu_check_copy(self):
|
|
526
|
+
try:
|
|
527
|
+
indx = self.text.index('sel.first')
|
|
528
|
+
except TclError:
|
|
529
|
+
return 'disabled'
|
|
530
|
+
else:
|
|
531
|
+
return 'normal' if indx else 'disabled'
|
|
532
|
+
|
|
533
|
+
def rmenu_check_paste(self):
|
|
534
|
+
try:
|
|
535
|
+
self.text.tk.call('tk::GetSelection', self.text, 'CLIPBOARD')
|
|
536
|
+
except TclError:
|
|
537
|
+
return 'disabled'
|
|
538
|
+
else:
|
|
539
|
+
return 'normal'
|
|
540
|
+
|
|
541
|
+
def about_dialog(self, event=None):
|
|
542
|
+
aboutDialog.AboutDialog(self.top,'About IDLE')
|
|
543
|
+
|
|
544
|
+
def config_dialog(self, event=None):
|
|
545
|
+
configDialog.ConfigDialog(self.top,'Settings')
|
|
546
|
+
|
|
547
|
+
def help_dialog(self, event=None):
|
|
548
|
+
if self.root:
|
|
549
|
+
parent = self.root
|
|
550
|
+
else:
|
|
551
|
+
parent = self.top
|
|
552
|
+
helpDialog.display(parent, near=self.top)
|
|
553
|
+
|
|
554
|
+
def python_docs(self, event=None):
|
|
555
|
+
if sys.platform[:3] == 'win':
|
|
556
|
+
try:
|
|
557
|
+
os.startfile(self.help_url)
|
|
558
|
+
except OSError as why:
|
|
559
|
+
tkMessageBox.showerror(title='Document Start Failure',
|
|
560
|
+
message=str(why), parent=self.text)
|
|
561
|
+
else:
|
|
562
|
+
webbrowser.open(self.help_url)
|
|
563
|
+
return "break"
|
|
564
|
+
|
|
565
|
+
def cut(self,event):
|
|
566
|
+
self.text.event_generate("<<Cut>>")
|
|
567
|
+
return "break"
|
|
568
|
+
|
|
569
|
+
def copy(self,event):
|
|
570
|
+
if not self.text.tag_ranges("sel"):
|
|
571
|
+
# There is no selection, so do nothing and maybe interrupt.
|
|
572
|
+
return
|
|
573
|
+
self.text.event_generate("<<Copy>>")
|
|
574
|
+
return "break"
|
|
575
|
+
|
|
576
|
+
def paste(self,event):
|
|
577
|
+
self.text.event_generate("<<Paste>>")
|
|
578
|
+
self.text.see("insert")
|
|
579
|
+
return "break"
|
|
580
|
+
|
|
581
|
+
def select_all(self, event=None):
|
|
582
|
+
self.text.tag_add("sel", "1.0", "end-1c")
|
|
583
|
+
self.text.mark_set("insert", "1.0")
|
|
584
|
+
self.text.see("insert")
|
|
585
|
+
return "break"
|
|
586
|
+
|
|
587
|
+
def remove_selection(self, event=None):
|
|
588
|
+
self.text.tag_remove("sel", "1.0", "end")
|
|
589
|
+
self.text.see("insert")
|
|
590
|
+
|
|
591
|
+
def move_at_edge_if_selection(self, edge_index):
|
|
592
|
+
"""Cursor move begins at start or end of selection
|
|
593
|
+
|
|
594
|
+
When a left/right cursor key is pressed create and return to Tkinter a
|
|
595
|
+
function which causes a cursor move from the associated edge of the
|
|
596
|
+
selection.
|
|
597
|
+
|
|
598
|
+
"""
|
|
599
|
+
self_text_index = self.text.index
|
|
600
|
+
self_text_mark_set = self.text.mark_set
|
|
601
|
+
edges_table = ("sel.first+1c", "sel.last-1c")
|
|
602
|
+
def move_at_edge(event):
|
|
603
|
+
if (event.state & 5) == 0: # no shift(==1) or control(==4) pressed
|
|
604
|
+
try:
|
|
605
|
+
self_text_index("sel.first")
|
|
606
|
+
self_text_mark_set("insert", edges_table[edge_index])
|
|
607
|
+
except TclError:
|
|
608
|
+
pass
|
|
609
|
+
return move_at_edge
|
|
610
|
+
|
|
611
|
+
def del_word_left(self, event):
|
|
612
|
+
self.text.event_generate('<Meta-Delete>')
|
|
613
|
+
return "break"
|
|
614
|
+
|
|
615
|
+
def del_word_right(self, event):
|
|
616
|
+
self.text.event_generate('<Meta-d>')
|
|
617
|
+
return "break"
|
|
618
|
+
|
|
619
|
+
def find_event(self, event):
|
|
620
|
+
SearchDialog.find(self.text)
|
|
621
|
+
return "break"
|
|
622
|
+
|
|
623
|
+
def find_again_event(self, event):
|
|
624
|
+
SearchDialog.find_again(self.text)
|
|
625
|
+
return "break"
|
|
626
|
+
|
|
627
|
+
def find_selection_event(self, event):
|
|
628
|
+
SearchDialog.find_selection(self.text)
|
|
629
|
+
return "break"
|
|
630
|
+
|
|
631
|
+
def find_in_files_event(self, event):
|
|
632
|
+
GrepDialog.grep(self.text, self.io, self.flist)
|
|
633
|
+
return "break"
|
|
634
|
+
|
|
635
|
+
def replace_event(self, event):
|
|
636
|
+
ReplaceDialog.replace(self.text)
|
|
637
|
+
return "break"
|
|
638
|
+
|
|
639
|
+
def goto_line_event(self, event):
|
|
640
|
+
text = self.text
|
|
641
|
+
lineno = tkSimpleDialog.askinteger("Goto",
|
|
642
|
+
"Go to line number:",parent=text)
|
|
643
|
+
if lineno is None:
|
|
644
|
+
return "break"
|
|
645
|
+
if lineno <= 0:
|
|
646
|
+
text.bell()
|
|
647
|
+
return "break"
|
|
648
|
+
text.mark_set("insert", "%d.0" % lineno)
|
|
649
|
+
text.see("insert")
|
|
650
|
+
|
|
651
|
+
def open_module(self, event=None):
|
|
652
|
+
# XXX Shouldn't this be in IOBinding?
|
|
653
|
+
try:
|
|
654
|
+
name = self.text.get("sel.first", "sel.last")
|
|
655
|
+
except TclError:
|
|
656
|
+
name = ""
|
|
657
|
+
else:
|
|
658
|
+
name = name.strip()
|
|
659
|
+
name = tkSimpleDialog.askstring("Module",
|
|
660
|
+
"Enter the name of a Python module\n"
|
|
661
|
+
"to search on sys.path and open:",
|
|
662
|
+
parent=self.text, initialvalue=name)
|
|
663
|
+
if name:
|
|
664
|
+
name = name.strip()
|
|
665
|
+
if not name:
|
|
666
|
+
return
|
|
667
|
+
# XXX Ought to insert current file's directory in front of path
|
|
668
|
+
try:
|
|
669
|
+
spec = importlib.util.find_spec(name)
|
|
670
|
+
except (ValueError, ImportError) as msg:
|
|
671
|
+
tkMessageBox.showerror("Import error", str(msg), parent=self.text)
|
|
672
|
+
return
|
|
673
|
+
if spec is None:
|
|
674
|
+
tkMessageBox.showerror("Import error", "module not found",
|
|
675
|
+
parent=self.text)
|
|
676
|
+
return
|
|
677
|
+
if not isinstance(spec.loader, importlib.abc.SourceLoader):
|
|
678
|
+
tkMessageBox.showerror("Import error", "not a source-based module",
|
|
679
|
+
parent=self.text)
|
|
680
|
+
return
|
|
681
|
+
try:
|
|
682
|
+
file_path = spec.loader.get_filename(name)
|
|
683
|
+
except AttributeError:
|
|
684
|
+
tkMessageBox.showerror("Import error",
|
|
685
|
+
"loader does not support get_filename",
|
|
686
|
+
parent=self.text)
|
|
687
|
+
return
|
|
688
|
+
if self.flist:
|
|
689
|
+
self.flist.open(file_path)
|
|
690
|
+
else:
|
|
691
|
+
self.io.loadfile(file_path)
|
|
692
|
+
|
|
693
|
+
def open_class_browser(self, event=None):
|
|
694
|
+
filename = self.io.filename
|
|
695
|
+
if not filename:
|
|
696
|
+
tkMessageBox.showerror(
|
|
697
|
+
"No filename",
|
|
698
|
+
"This buffer has no associated filename",
|
|
699
|
+
master=self.text)
|
|
700
|
+
self.text.focus_set()
|
|
701
|
+
return None
|
|
702
|
+
head, tail = os.path.split(filename)
|
|
703
|
+
base, ext = os.path.splitext(tail)
|
|
704
|
+
from idlelib import ClassBrowser
|
|
705
|
+
ClassBrowser.ClassBrowser(self.flist, base, [head])
|
|
706
|
+
|
|
707
|
+
def open_path_browser(self, event=None):
|
|
708
|
+
from idlelib import PathBrowser
|
|
709
|
+
PathBrowser.PathBrowser(self.flist)
|
|
710
|
+
|
|
711
|
+
def open_turtle_demo(self, event = None):
|
|
712
|
+
import subprocess
|
|
713
|
+
|
|
714
|
+
cmd = [sys.executable,
|
|
715
|
+
'-c',
|
|
716
|
+
'from turtledemo.__main__ import main; main()']
|
|
717
|
+
p = subprocess.Popen(cmd, shell=False)
|
|
718
|
+
|
|
719
|
+
def gotoline(self, lineno):
|
|
720
|
+
if lineno is not None and lineno > 0:
|
|
721
|
+
self.text.mark_set("insert", "%d.0" % lineno)
|
|
722
|
+
self.text.tag_remove("sel", "1.0", "end")
|
|
723
|
+
self.text.tag_add("sel", "insert", "insert +1l")
|
|
724
|
+
self.center()
|
|
725
|
+
|
|
726
|
+
def ispythonsource(self, filename):
|
|
727
|
+
if not filename or os.path.isdir(filename):
|
|
728
|
+
return True
|
|
729
|
+
base, ext = os.path.splitext(os.path.basename(filename))
|
|
730
|
+
if os.path.normcase(ext) in (".py", ".pyw"):
|
|
731
|
+
return True
|
|
732
|
+
line = self.text.get('1.0', '1.0 lineend')
|
|
733
|
+
return line.startswith('#!') and 'python' in line
|
|
734
|
+
|
|
735
|
+
def close_hook(self):
|
|
736
|
+
if self.flist:
|
|
737
|
+
self.flist.unregister_maybe_terminate(self)
|
|
738
|
+
self.flist = None
|
|
739
|
+
|
|
740
|
+
def set_close_hook(self, close_hook):
|
|
741
|
+
self.close_hook = close_hook
|
|
742
|
+
|
|
743
|
+
def filename_change_hook(self):
|
|
744
|
+
if self.flist:
|
|
745
|
+
self.flist.filename_changed_edit(self)
|
|
746
|
+
self.saved_change_hook()
|
|
747
|
+
self.top.update_windowlist_registry(self)
|
|
748
|
+
self.ResetColorizer()
|
|
749
|
+
|
|
750
|
+
def _addcolorizer(self):
|
|
751
|
+
if self.color:
|
|
752
|
+
return
|
|
753
|
+
if self.ispythonsource(self.io.filename):
|
|
754
|
+
self.color = self.ColorDelegator()
|
|
755
|
+
# can add more colorizers here...
|
|
756
|
+
if self.color:
|
|
757
|
+
self.per.removefilter(self.undo)
|
|
758
|
+
self.per.insertfilter(self.color)
|
|
759
|
+
self.per.insertfilter(self.undo)
|
|
760
|
+
|
|
761
|
+
def _rmcolorizer(self):
|
|
762
|
+
if not self.color:
|
|
763
|
+
return
|
|
764
|
+
self.color.removecolors()
|
|
765
|
+
self.per.removefilter(self.color)
|
|
766
|
+
self.color = None
|
|
767
|
+
|
|
768
|
+
def ResetColorizer(self):
|
|
769
|
+
"Update the colour theme"
|
|
770
|
+
# Called from self.filename_change_hook and from configDialog.py
|
|
771
|
+
self._rmcolorizer()
|
|
772
|
+
self._addcolorizer()
|
|
773
|
+
theme = idleConf.GetOption('main','Theme','name')
|
|
774
|
+
normal_colors = idleConf.GetHighlight(theme, 'normal')
|
|
775
|
+
cursor_color = idleConf.GetHighlight(theme, 'cursor', fgBg='fg')
|
|
776
|
+
select_colors = idleConf.GetHighlight(theme, 'hilite')
|
|
777
|
+
self.text.config(
|
|
778
|
+
foreground=normal_colors['foreground'],
|
|
779
|
+
background=normal_colors['background'],
|
|
780
|
+
insertbackground=cursor_color,
|
|
781
|
+
selectforeground=select_colors['foreground'],
|
|
782
|
+
selectbackground=select_colors['background'],
|
|
783
|
+
)
|
|
784
|
+
|
|
785
|
+
IDENTCHARS = string.ascii_letters + string.digits + "_"
|
|
786
|
+
|
|
787
|
+
def colorize_syntax_error(self, text, pos):
|
|
788
|
+
text.tag_add("ERROR", pos)
|
|
789
|
+
char = text.get(pos)
|
|
790
|
+
if char and char in self.IDENTCHARS:
|
|
791
|
+
text.tag_add("ERROR", pos + " wordstart", pos)
|
|
792
|
+
if '\n' == text.get(pos): # error at line end
|
|
793
|
+
text.mark_set("insert", pos)
|
|
794
|
+
else:
|
|
795
|
+
text.mark_set("insert", pos + "+1c")
|
|
796
|
+
text.see(pos)
|
|
797
|
+
|
|
798
|
+
def ResetFont(self):
|
|
799
|
+
"Update the text widgets' font if it is changed"
|
|
800
|
+
# Called from configDialog.py
|
|
801
|
+
fontWeight='normal'
|
|
802
|
+
if idleConf.GetOption('main','EditorWindow','font-bold',type='bool'):
|
|
803
|
+
fontWeight='bold'
|
|
804
|
+
self.text.config(font=(idleConf.GetOption('main','EditorWindow','font'),
|
|
805
|
+
idleConf.GetOption('main','EditorWindow','font-size',
|
|
806
|
+
type='int'),
|
|
807
|
+
fontWeight))
|
|
808
|
+
|
|
809
|
+
def RemoveKeybindings(self):
|
|
810
|
+
"Remove the keybindings before they are changed."
|
|
811
|
+
# Called from configDialog.py
|
|
812
|
+
self.Bindings.default_keydefs = keydefs = idleConf.GetCurrentKeySet()
|
|
813
|
+
for event, keylist in keydefs.items():
|
|
814
|
+
self.text.event_delete(event, *keylist)
|
|
815
|
+
for extensionName in self.get_standard_extension_names():
|
|
816
|
+
xkeydefs = idleConf.GetExtensionBindings(extensionName)
|
|
817
|
+
if xkeydefs:
|
|
818
|
+
for event, keylist in xkeydefs.items():
|
|
819
|
+
self.text.event_delete(event, *keylist)
|
|
820
|
+
|
|
821
|
+
def ApplyKeybindings(self):
|
|
822
|
+
"Update the keybindings after they are changed"
|
|
823
|
+
# Called from configDialog.py
|
|
824
|
+
self.Bindings.default_keydefs = keydefs = idleConf.GetCurrentKeySet()
|
|
825
|
+
self.apply_bindings()
|
|
826
|
+
for extensionName in self.get_standard_extension_names():
|
|
827
|
+
xkeydefs = idleConf.GetExtensionBindings(extensionName)
|
|
828
|
+
if xkeydefs:
|
|
829
|
+
self.apply_bindings(xkeydefs)
|
|
830
|
+
#update menu accelerators
|
|
831
|
+
menuEventDict = {}
|
|
832
|
+
for menu in self.Bindings.menudefs:
|
|
833
|
+
menuEventDict[menu[0]] = {}
|
|
834
|
+
for item in menu[1]:
|
|
835
|
+
if item:
|
|
836
|
+
menuEventDict[menu[0]][prepstr(item[0])[1]] = item[1]
|
|
837
|
+
for menubarItem in self.menudict:
|
|
838
|
+
menu = self.menudict[menubarItem]
|
|
839
|
+
end = menu.index(END)
|
|
840
|
+
if end is None:
|
|
841
|
+
# Skip empty menus
|
|
842
|
+
continue
|
|
843
|
+
end += 1
|
|
844
|
+
for index in range(0, end):
|
|
845
|
+
if menu.type(index) == 'command':
|
|
846
|
+
accel = menu.entrycget(index, 'accelerator')
|
|
847
|
+
if accel:
|
|
848
|
+
itemName = menu.entrycget(index, 'label')
|
|
849
|
+
event = ''
|
|
850
|
+
if menubarItem in menuEventDict:
|
|
851
|
+
if itemName in menuEventDict[menubarItem]:
|
|
852
|
+
event = menuEventDict[menubarItem][itemName]
|
|
853
|
+
if event:
|
|
854
|
+
accel = get_accelerator(keydefs, event)
|
|
855
|
+
menu.entryconfig(index, accelerator=accel)
|
|
856
|
+
|
|
857
|
+
def set_notabs_indentwidth(self):
|
|
858
|
+
"Update the indentwidth if changed and not using tabs in this window"
|
|
859
|
+
# Called from configDialog.py
|
|
860
|
+
if not self.usetabs:
|
|
861
|
+
self.indentwidth = idleConf.GetOption('main', 'Indent','num-spaces',
|
|
862
|
+
type='int')
|
|
863
|
+
|
|
864
|
+
def reset_help_menu_entries(self):
|
|
865
|
+
"Update the additional help entries on the Help menu"
|
|
866
|
+
help_list = idleConf.GetAllExtraHelpSourcesList()
|
|
867
|
+
helpmenu = self.menudict['help']
|
|
868
|
+
# first delete the extra help entries, if any
|
|
869
|
+
helpmenu_length = helpmenu.index(END)
|
|
870
|
+
if helpmenu_length > self.base_helpmenu_length:
|
|
871
|
+
helpmenu.delete((self.base_helpmenu_length + 1), helpmenu_length)
|
|
872
|
+
# then rebuild them
|
|
873
|
+
if help_list:
|
|
874
|
+
helpmenu.add_separator()
|
|
875
|
+
for entry in help_list:
|
|
876
|
+
cmd = self.__extra_help_callback(entry[1])
|
|
877
|
+
helpmenu.add_command(label=entry[0], command=cmd)
|
|
878
|
+
# and update the menu dictionary
|
|
879
|
+
self.menudict['help'] = helpmenu
|
|
880
|
+
|
|
881
|
+
def __extra_help_callback(self, helpfile):
|
|
882
|
+
"Create a callback with the helpfile value frozen at definition time"
|
|
883
|
+
def display_extra_help(helpfile=helpfile):
|
|
884
|
+
if not helpfile.startswith(('www', 'http')):
|
|
885
|
+
helpfile = os.path.normpath(helpfile)
|
|
886
|
+
if sys.platform[:3] == 'win':
|
|
887
|
+
try:
|
|
888
|
+
os.startfile(helpfile)
|
|
889
|
+
except OSError as why:
|
|
890
|
+
tkMessageBox.showerror(title='Document Start Failure',
|
|
891
|
+
message=str(why), parent=self.text)
|
|
892
|
+
else:
|
|
893
|
+
webbrowser.open(helpfile)
|
|
894
|
+
return display_extra_help
|
|
895
|
+
|
|
896
|
+
def update_recent_files_list(self, new_file=None):
|
|
897
|
+
"Load and update the recent files list and menus"
|
|
898
|
+
rf_list = []
|
|
899
|
+
if os.path.exists(self.recent_files_path):
|
|
900
|
+
with open(self.recent_files_path, 'r',
|
|
901
|
+
encoding='utf_8', errors='replace') as rf_list_file:
|
|
902
|
+
rf_list = rf_list_file.readlines()
|
|
903
|
+
if new_file:
|
|
904
|
+
new_file = os.path.abspath(new_file) + '\n'
|
|
905
|
+
if new_file in rf_list:
|
|
906
|
+
rf_list.remove(new_file) # move to top
|
|
907
|
+
rf_list.insert(0, new_file)
|
|
908
|
+
# clean and save the recent files list
|
|
909
|
+
bad_paths = []
|
|
910
|
+
for path in rf_list:
|
|
911
|
+
if '\0' in path or not os.path.exists(path[0:-1]):
|
|
912
|
+
bad_paths.append(path)
|
|
913
|
+
rf_list = [path for path in rf_list if path not in bad_paths]
|
|
914
|
+
ulchars = "1234567890ABCDEFGHIJK"
|
|
915
|
+
rf_list = rf_list[0:len(ulchars)]
|
|
916
|
+
try:
|
|
917
|
+
with open(self.recent_files_path, 'w',
|
|
918
|
+
encoding='utf_8', errors='replace') as rf_file:
|
|
919
|
+
rf_file.writelines(rf_list)
|
|
920
|
+
except OSError as err:
|
|
921
|
+
if not getattr(self.root, "recentfilelist_error_displayed", False):
|
|
922
|
+
self.root.recentfilelist_error_displayed = True
|
|
923
|
+
tkMessageBox.showerror(title='IDLE Error',
|
|
924
|
+
message='Unable to update Recent Files list:\n%s'
|
|
925
|
+
% str(err),
|
|
926
|
+
parent=self.text)
|
|
927
|
+
# for each edit window instance, construct the recent files menu
|
|
928
|
+
for instance in self.top.instance_dict:
|
|
929
|
+
menu = instance.recent_files_menu
|
|
930
|
+
menu.delete(0, END) # clear, and rebuild:
|
|
931
|
+
for i, file_name in enumerate(rf_list):
|
|
932
|
+
file_name = file_name.rstrip() # zap \n
|
|
933
|
+
# make unicode string to display non-ASCII chars correctly
|
|
934
|
+
ufile_name = self._filename_to_unicode(file_name)
|
|
935
|
+
callback = instance.__recent_file_callback(file_name)
|
|
936
|
+
menu.add_command(label=ulchars[i] + " " + ufile_name,
|
|
937
|
+
command=callback,
|
|
938
|
+
underline=0)
|
|
939
|
+
|
|
940
|
+
def __recent_file_callback(self, file_name):
|
|
941
|
+
def open_recent_file(fn_closure=file_name):
|
|
942
|
+
self.io.open(editFile=fn_closure)
|
|
943
|
+
return open_recent_file
|
|
944
|
+
|
|
945
|
+
def saved_change_hook(self):
|
|
946
|
+
short = self.short_title()
|
|
947
|
+
long = self.long_title()
|
|
948
|
+
if short and long:
|
|
949
|
+
title = short + " - " + long + _py_version
|
|
950
|
+
elif short:
|
|
951
|
+
title = short
|
|
952
|
+
elif long:
|
|
953
|
+
title = long
|
|
954
|
+
else:
|
|
955
|
+
title = "Untitled"
|
|
956
|
+
icon = short or long or title
|
|
957
|
+
if not self.get_saved():
|
|
958
|
+
title = "*%s*" % title
|
|
959
|
+
icon = "*%s" % icon
|
|
960
|
+
self.top.wm_title(title)
|
|
961
|
+
self.top.wm_iconname(icon)
|
|
962
|
+
|
|
963
|
+
def get_saved(self):
|
|
964
|
+
return self.undo.get_saved()
|
|
965
|
+
|
|
966
|
+
def set_saved(self, flag):
|
|
967
|
+
self.undo.set_saved(flag)
|
|
968
|
+
|
|
969
|
+
def reset_undo(self):
|
|
970
|
+
self.undo.reset_undo()
|
|
971
|
+
|
|
972
|
+
def short_title(self):
|
|
973
|
+
filename = self.io.filename
|
|
974
|
+
if filename:
|
|
975
|
+
filename = os.path.basename(filename)
|
|
976
|
+
else:
|
|
977
|
+
filename = "Untitled"
|
|
978
|
+
# return unicode string to display non-ASCII chars correctly
|
|
979
|
+
return self._filename_to_unicode(filename)
|
|
980
|
+
|
|
981
|
+
def long_title(self):
|
|
982
|
+
# return unicode string to display non-ASCII chars correctly
|
|
983
|
+
return self._filename_to_unicode(self.io.filename or "")
|
|
984
|
+
|
|
985
|
+
def center_insert_event(self, event):
|
|
986
|
+
self.center()
|
|
987
|
+
|
|
988
|
+
def center(self, mark="insert"):
|
|
989
|
+
text = self.text
|
|
990
|
+
top, bot = self.getwindowlines()
|
|
991
|
+
lineno = self.getlineno(mark)
|
|
992
|
+
height = bot - top
|
|
993
|
+
newtop = max(1, lineno - height//2)
|
|
994
|
+
text.yview(float(newtop))
|
|
995
|
+
|
|
996
|
+
def getwindowlines(self):
|
|
997
|
+
text = self.text
|
|
998
|
+
top = self.getlineno("@0,0")
|
|
999
|
+
bot = self.getlineno("@0,65535")
|
|
1000
|
+
if top == bot and text.winfo_height() == 1:
|
|
1001
|
+
# Geometry manager hasn't run yet
|
|
1002
|
+
height = int(text['height'])
|
|
1003
|
+
bot = top + height - 1
|
|
1004
|
+
return top, bot
|
|
1005
|
+
|
|
1006
|
+
def getlineno(self, mark="insert"):
|
|
1007
|
+
text = self.text
|
|
1008
|
+
return int(float(text.index(mark)))
|
|
1009
|
+
|
|
1010
|
+
def get_geometry(self):
|
|
1011
|
+
"Return (width, height, x, y)"
|
|
1012
|
+
geom = self.top.wm_geometry()
|
|
1013
|
+
m = re.match(r"(\d+)x(\d+)\+(-?\d+)\+(-?\d+)", geom)
|
|
1014
|
+
return list(map(int, m.groups()))
|
|
1015
|
+
|
|
1016
|
+
def close_event(self, event):
|
|
1017
|
+
self.close()
|
|
1018
|
+
|
|
1019
|
+
def maybesave(self):
|
|
1020
|
+
if self.io:
|
|
1021
|
+
if not self.get_saved():
|
|
1022
|
+
if self.top.state()!='normal':
|
|
1023
|
+
self.top.deiconify()
|
|
1024
|
+
self.top.lower()
|
|
1025
|
+
self.top.lift()
|
|
1026
|
+
return self.io.maybesave()
|
|
1027
|
+
|
|
1028
|
+
def close(self):
|
|
1029
|
+
reply = self.maybesave()
|
|
1030
|
+
if str(reply) != "cancel":
|
|
1031
|
+
self._close()
|
|
1032
|
+
return reply
|
|
1033
|
+
|
|
1034
|
+
def _close(self):
|
|
1035
|
+
if self.io.filename:
|
|
1036
|
+
self.update_recent_files_list(new_file=self.io.filename)
|
|
1037
|
+
WindowList.unregister_callback(self.postwindowsmenu)
|
|
1038
|
+
self.unload_extensions()
|
|
1039
|
+
self.io.close()
|
|
1040
|
+
self.io = None
|
|
1041
|
+
self.undo = None
|
|
1042
|
+
if self.color:
|
|
1043
|
+
self.color.close(False)
|
|
1044
|
+
self.color = None
|
|
1045
|
+
self.text = None
|
|
1046
|
+
self.tkinter_vars = None
|
|
1047
|
+
self.per.close()
|
|
1048
|
+
self.per = None
|
|
1049
|
+
self.top.destroy()
|
|
1050
|
+
if self.close_hook:
|
|
1051
|
+
# unless override: unregister from flist, terminate if last window
|
|
1052
|
+
self.close_hook()
|
|
1053
|
+
|
|
1054
|
+
def load_extensions(self):
|
|
1055
|
+
self.extensions = {}
|
|
1056
|
+
self.load_standard_extensions()
|
|
1057
|
+
|
|
1058
|
+
def unload_extensions(self):
|
|
1059
|
+
for ins in list(self.extensions.values()):
|
|
1060
|
+
if hasattr(ins, "close"):
|
|
1061
|
+
ins.close()
|
|
1062
|
+
self.extensions = {}
|
|
1063
|
+
|
|
1064
|
+
def load_standard_extensions(self):
|
|
1065
|
+
for name in self.get_standard_extension_names():
|
|
1066
|
+
try:
|
|
1067
|
+
self.load_extension(name)
|
|
1068
|
+
except:
|
|
1069
|
+
print("Failed to load extension", repr(name))
|
|
1070
|
+
traceback.print_exc()
|
|
1071
|
+
|
|
1072
|
+
def get_standard_extension_names(self):
|
|
1073
|
+
return idleConf.GetExtensions(editor_only=True)
|
|
1074
|
+
|
|
1075
|
+
def load_extension(self, name):
|
|
1076
|
+
try:
|
|
1077
|
+
try:
|
|
1078
|
+
mod = importlib.import_module('.' + name, package=__package__)
|
|
1079
|
+
except (ImportError, TypeError):
|
|
1080
|
+
mod = importlib.import_module(name)
|
|
1081
|
+
except ImportError:
|
|
1082
|
+
print("\nFailed to import extension: ", name)
|
|
1083
|
+
raise
|
|
1084
|
+
cls = getattr(mod, name)
|
|
1085
|
+
keydefs = idleConf.GetExtensionBindings(name)
|
|
1086
|
+
if hasattr(cls, "menudefs"):
|
|
1087
|
+
self.fill_menus(cls.menudefs, keydefs)
|
|
1088
|
+
ins = cls(self)
|
|
1089
|
+
self.extensions[name] = ins
|
|
1090
|
+
if keydefs:
|
|
1091
|
+
self.apply_bindings(keydefs)
|
|
1092
|
+
for vevent in keydefs:
|
|
1093
|
+
methodname = vevent.replace("-", "_")
|
|
1094
|
+
while methodname[:1] == '<':
|
|
1095
|
+
methodname = methodname[1:]
|
|
1096
|
+
while methodname[-1:] == '>':
|
|
1097
|
+
methodname = methodname[:-1]
|
|
1098
|
+
methodname = methodname + "_event"
|
|
1099
|
+
if hasattr(ins, methodname):
|
|
1100
|
+
self.text.bind(vevent, getattr(ins, methodname))
|
|
1101
|
+
|
|
1102
|
+
def apply_bindings(self, keydefs=None):
|
|
1103
|
+
if keydefs is None:
|
|
1104
|
+
keydefs = self.Bindings.default_keydefs
|
|
1105
|
+
text = self.text
|
|
1106
|
+
text.keydefs = keydefs
|
|
1107
|
+
for event, keylist in keydefs.items():
|
|
1108
|
+
if keylist:
|
|
1109
|
+
text.event_add(event, *keylist)
|
|
1110
|
+
|
|
1111
|
+
def fill_menus(self, menudefs=None, keydefs=None):
|
|
1112
|
+
"""Add appropriate entries to the menus and submenus
|
|
1113
|
+
|
|
1114
|
+
Menus that are absent or None in self.menudict are ignored.
|
|
1115
|
+
"""
|
|
1116
|
+
if menudefs is None:
|
|
1117
|
+
menudefs = self.Bindings.menudefs
|
|
1118
|
+
if keydefs is None:
|
|
1119
|
+
keydefs = self.Bindings.default_keydefs
|
|
1120
|
+
menudict = self.menudict
|
|
1121
|
+
text = self.text
|
|
1122
|
+
for mname, entrylist in menudefs:
|
|
1123
|
+
menu = menudict.get(mname)
|
|
1124
|
+
if not menu:
|
|
1125
|
+
continue
|
|
1126
|
+
for entry in entrylist:
|
|
1127
|
+
if not entry:
|
|
1128
|
+
menu.add_separator()
|
|
1129
|
+
else:
|
|
1130
|
+
label, eventname = entry
|
|
1131
|
+
checkbutton = (label[:1] == '!')
|
|
1132
|
+
if checkbutton:
|
|
1133
|
+
label = label[1:]
|
|
1134
|
+
underline, label = prepstr(label)
|
|
1135
|
+
accelerator = get_accelerator(keydefs, eventname)
|
|
1136
|
+
def command(text=text, eventname=eventname):
|
|
1137
|
+
text.event_generate(eventname)
|
|
1138
|
+
if checkbutton:
|
|
1139
|
+
var = self.get_var_obj(eventname, BooleanVar)
|
|
1140
|
+
menu.add_checkbutton(label=label, underline=underline,
|
|
1141
|
+
command=command, accelerator=accelerator,
|
|
1142
|
+
variable=var)
|
|
1143
|
+
else:
|
|
1144
|
+
menu.add_command(label=label, underline=underline,
|
|
1145
|
+
command=command,
|
|
1146
|
+
accelerator=accelerator)
|
|
1147
|
+
|
|
1148
|
+
def getvar(self, name):
|
|
1149
|
+
var = self.get_var_obj(name)
|
|
1150
|
+
if var:
|
|
1151
|
+
value = var.get()
|
|
1152
|
+
return value
|
|
1153
|
+
else:
|
|
1154
|
+
raise NameError(name)
|
|
1155
|
+
|
|
1156
|
+
def setvar(self, name, value, vartype=None):
|
|
1157
|
+
var = self.get_var_obj(name, vartype)
|
|
1158
|
+
if var:
|
|
1159
|
+
var.set(value)
|
|
1160
|
+
else:
|
|
1161
|
+
raise NameError(name)
|
|
1162
|
+
|
|
1163
|
+
def get_var_obj(self, name, vartype=None):
|
|
1164
|
+
var = self.tkinter_vars.get(name)
|
|
1165
|
+
if not var and vartype:
|
|
1166
|
+
# create a Tkinter variable object with self.text as master:
|
|
1167
|
+
self.tkinter_vars[name] = var = vartype(self.text)
|
|
1168
|
+
return var
|
|
1169
|
+
|
|
1170
|
+
# Tk implementations of "virtual text methods" -- each platform
|
|
1171
|
+
# reusing IDLE's support code needs to define these for its GUI's
|
|
1172
|
+
# flavor of widget.
|
|
1173
|
+
|
|
1174
|
+
# Is character at text_index in a Python string? Return 0 for
|
|
1175
|
+
# "guaranteed no", true for anything else. This info is expensive
|
|
1176
|
+
# to compute ab initio, but is probably already known by the
|
|
1177
|
+
# platform's colorizer.
|
|
1178
|
+
|
|
1179
|
+
def is_char_in_string(self, text_index):
|
|
1180
|
+
if self.color:
|
|
1181
|
+
# Return true iff colorizer hasn't (re)gotten this far
|
|
1182
|
+
# yet, or the character is tagged as being in a string
|
|
1183
|
+
return self.text.tag_prevrange("TODO", text_index) or \
|
|
1184
|
+
"STRING" in self.text.tag_names(text_index)
|
|
1185
|
+
else:
|
|
1186
|
+
# The colorizer is missing: assume the worst
|
|
1187
|
+
return 1
|
|
1188
|
+
|
|
1189
|
+
# If a selection is defined in the text widget, return (start,
|
|
1190
|
+
# end) as Tkinter text indices, otherwise return (None, None)
|
|
1191
|
+
def get_selection_indices(self):
|
|
1192
|
+
try:
|
|
1193
|
+
first = self.text.index("sel.first")
|
|
1194
|
+
last = self.text.index("sel.last")
|
|
1195
|
+
return first, last
|
|
1196
|
+
except TclError:
|
|
1197
|
+
return None, None
|
|
1198
|
+
|
|
1199
|
+
# Return the text widget's current view of what a tab stop means
|
|
1200
|
+
# (equivalent width in spaces).
|
|
1201
|
+
|
|
1202
|
+
def get_tk_tabwidth(self):
|
|
1203
|
+
current = self.text['tabs'] or TK_TABWIDTH_DEFAULT
|
|
1204
|
+
return int(current)
|
|
1205
|
+
|
|
1206
|
+
# Set the text widget's current view of what a tab stop means.
|
|
1207
|
+
|
|
1208
|
+
def set_tk_tabwidth(self, newtabwidth):
|
|
1209
|
+
text = self.text
|
|
1210
|
+
if self.get_tk_tabwidth() != newtabwidth:
|
|
1211
|
+
# Set text widget tab width
|
|
1212
|
+
pixels = text.tk.call("font", "measure", text["font"],
|
|
1213
|
+
"-displayof", text.master,
|
|
1214
|
+
"n" * newtabwidth)
|
|
1215
|
+
text.configure(tabs=pixels)
|
|
1216
|
+
|
|
1217
|
+
### begin autoindent code ### (configuration was moved to beginning of class)
|
|
1218
|
+
|
|
1219
|
+
def set_indentation_params(self, is_py_src, guess=True):
|
|
1220
|
+
if is_py_src and guess:
|
|
1221
|
+
i = self.guess_indent()
|
|
1222
|
+
if 2 <= i <= 8:
|
|
1223
|
+
self.indentwidth = i
|
|
1224
|
+
if self.indentwidth != self.tabwidth:
|
|
1225
|
+
self.usetabs = False
|
|
1226
|
+
self.set_tk_tabwidth(self.tabwidth)
|
|
1227
|
+
|
|
1228
|
+
def smart_backspace_event(self, event):
|
|
1229
|
+
text = self.text
|
|
1230
|
+
first, last = self.get_selection_indices()
|
|
1231
|
+
if first and last:
|
|
1232
|
+
text.delete(first, last)
|
|
1233
|
+
text.mark_set("insert", first)
|
|
1234
|
+
return "break"
|
|
1235
|
+
# Delete whitespace left, until hitting a real char or closest
|
|
1236
|
+
# preceding virtual tab stop.
|
|
1237
|
+
chars = text.get("insert linestart", "insert")
|
|
1238
|
+
if chars == '':
|
|
1239
|
+
if text.compare("insert", ">", "1.0"):
|
|
1240
|
+
# easy: delete preceding newline
|
|
1241
|
+
text.delete("insert-1c")
|
|
1242
|
+
else:
|
|
1243
|
+
text.bell() # at start of buffer
|
|
1244
|
+
return "break"
|
|
1245
|
+
if chars[-1] not in " \t":
|
|
1246
|
+
# easy: delete preceding real char
|
|
1247
|
+
text.delete("insert-1c")
|
|
1248
|
+
return "break"
|
|
1249
|
+
# Ick. It may require *inserting* spaces if we back up over a
|
|
1250
|
+
# tab character! This is written to be clear, not fast.
|
|
1251
|
+
tabwidth = self.tabwidth
|
|
1252
|
+
have = len(chars.expandtabs(tabwidth))
|
|
1253
|
+
assert have > 0
|
|
1254
|
+
want = ((have - 1) // self.indentwidth) * self.indentwidth
|
|
1255
|
+
# Debug prompt is multilined....
|
|
1256
|
+
if self.context_use_ps1:
|
|
1257
|
+
last_line_of_prompt = sys.ps1.split('\n')[-1]
|
|
1258
|
+
else:
|
|
1259
|
+
last_line_of_prompt = ''
|
|
1260
|
+
ncharsdeleted = 0
|
|
1261
|
+
while 1:
|
|
1262
|
+
if chars == last_line_of_prompt:
|
|
1263
|
+
break
|
|
1264
|
+
chars = chars[:-1]
|
|
1265
|
+
ncharsdeleted = ncharsdeleted + 1
|
|
1266
|
+
have = len(chars.expandtabs(tabwidth))
|
|
1267
|
+
if have <= want or chars[-1] not in " \t":
|
|
1268
|
+
break
|
|
1269
|
+
text.undo_block_start()
|
|
1270
|
+
text.delete("insert-%dc" % ncharsdeleted, "insert")
|
|
1271
|
+
if have < want:
|
|
1272
|
+
text.insert("insert", ' ' * (want - have))
|
|
1273
|
+
text.undo_block_stop()
|
|
1274
|
+
return "break"
|
|
1275
|
+
|
|
1276
|
+
def smart_indent_event(self, event):
|
|
1277
|
+
# if intraline selection:
|
|
1278
|
+
# delete it
|
|
1279
|
+
# elif multiline selection:
|
|
1280
|
+
# do indent-region
|
|
1281
|
+
# else:
|
|
1282
|
+
# indent one level
|
|
1283
|
+
text = self.text
|
|
1284
|
+
first, last = self.get_selection_indices()
|
|
1285
|
+
text.undo_block_start()
|
|
1286
|
+
try:
|
|
1287
|
+
if first and last:
|
|
1288
|
+
if index2line(first) != index2line(last):
|
|
1289
|
+
return self.indent_region_event(event)
|
|
1290
|
+
text.delete(first, last)
|
|
1291
|
+
text.mark_set("insert", first)
|
|
1292
|
+
prefix = text.get("insert linestart", "insert")
|
|
1293
|
+
raw, effective = classifyws(prefix, self.tabwidth)
|
|
1294
|
+
if raw == len(prefix):
|
|
1295
|
+
# only whitespace to the left
|
|
1296
|
+
self.reindent_to(effective + self.indentwidth)
|
|
1297
|
+
else:
|
|
1298
|
+
# tab to the next 'stop' within or to right of line's text:
|
|
1299
|
+
if self.usetabs:
|
|
1300
|
+
pad = '\t'
|
|
1301
|
+
else:
|
|
1302
|
+
effective = len(prefix.expandtabs(self.tabwidth))
|
|
1303
|
+
n = self.indentwidth
|
|
1304
|
+
pad = ' ' * (n - effective % n)
|
|
1305
|
+
text.insert("insert", pad)
|
|
1306
|
+
text.see("insert")
|
|
1307
|
+
return "break"
|
|
1308
|
+
finally:
|
|
1309
|
+
text.undo_block_stop()
|
|
1310
|
+
|
|
1311
|
+
def newline_and_indent_event(self, event):
|
|
1312
|
+
text = self.text
|
|
1313
|
+
first, last = self.get_selection_indices()
|
|
1314
|
+
text.undo_block_start()
|
|
1315
|
+
try:
|
|
1316
|
+
if first and last:
|
|
1317
|
+
text.delete(first, last)
|
|
1318
|
+
text.mark_set("insert", first)
|
|
1319
|
+
line = text.get("insert linestart", "insert")
|
|
1320
|
+
i, n = 0, len(line)
|
|
1321
|
+
while i < n and line[i] in " \t":
|
|
1322
|
+
i = i+1
|
|
1323
|
+
if i == n:
|
|
1324
|
+
# the cursor is in or at leading indentation in a continuation
|
|
1325
|
+
# line; just inject an empty line at the start
|
|
1326
|
+
text.insert("insert linestart", '\n')
|
|
1327
|
+
return "break"
|
|
1328
|
+
indent = line[:i]
|
|
1329
|
+
# strip whitespace before insert point unless it's in the prompt
|
|
1330
|
+
i = 0
|
|
1331
|
+
last_line_of_prompt = sys.ps1.split('\n')[-1]
|
|
1332
|
+
while line and line[-1] in " \t" and line != last_line_of_prompt:
|
|
1333
|
+
line = line[:-1]
|
|
1334
|
+
i = i+1
|
|
1335
|
+
if i:
|
|
1336
|
+
text.delete("insert - %d chars" % i, "insert")
|
|
1337
|
+
# strip whitespace after insert point
|
|
1338
|
+
while text.get("insert") in " \t":
|
|
1339
|
+
text.delete("insert")
|
|
1340
|
+
# start new line
|
|
1341
|
+
text.insert("insert", '\n')
|
|
1342
|
+
|
|
1343
|
+
# adjust indentation for continuations and block
|
|
1344
|
+
# open/close first need to find the last stmt
|
|
1345
|
+
lno = index2line(text.index('insert'))
|
|
1346
|
+
y = PyParse.Parser(self.indentwidth, self.tabwidth)
|
|
1347
|
+
if not self.context_use_ps1:
|
|
1348
|
+
for context in self.num_context_lines:
|
|
1349
|
+
startat = max(lno - context, 1)
|
|
1350
|
+
startatindex = repr(startat) + ".0"
|
|
1351
|
+
rawtext = text.get(startatindex, "insert")
|
|
1352
|
+
y.set_str(rawtext)
|
|
1353
|
+
bod = y.find_good_parse_start(
|
|
1354
|
+
self.context_use_ps1,
|
|
1355
|
+
self._build_char_in_string_func(startatindex))
|
|
1356
|
+
if bod is not None or startat == 1:
|
|
1357
|
+
break
|
|
1358
|
+
y.set_lo(bod or 0)
|
|
1359
|
+
else:
|
|
1360
|
+
r = text.tag_prevrange("console", "insert")
|
|
1361
|
+
if r:
|
|
1362
|
+
startatindex = r[1]
|
|
1363
|
+
else:
|
|
1364
|
+
startatindex = "1.0"
|
|
1365
|
+
rawtext = text.get(startatindex, "insert")
|
|
1366
|
+
y.set_str(rawtext)
|
|
1367
|
+
y.set_lo(0)
|
|
1368
|
+
|
|
1369
|
+
c = y.get_continuation_type()
|
|
1370
|
+
if c != PyParse.C_NONE:
|
|
1371
|
+
# The current stmt hasn't ended yet.
|
|
1372
|
+
if c == PyParse.C_STRING_FIRST_LINE:
|
|
1373
|
+
# after the first line of a string; do not indent at all
|
|
1374
|
+
pass
|
|
1375
|
+
elif c == PyParse.C_STRING_NEXT_LINES:
|
|
1376
|
+
# inside a string which started before this line;
|
|
1377
|
+
# just mimic the current indent
|
|
1378
|
+
text.insert("insert", indent)
|
|
1379
|
+
elif c == PyParse.C_BRACKET:
|
|
1380
|
+
# line up with the first (if any) element of the
|
|
1381
|
+
# last open bracket structure; else indent one
|
|
1382
|
+
# level beyond the indent of the line with the
|
|
1383
|
+
# last open bracket
|
|
1384
|
+
self.reindent_to(y.compute_bracket_indent())
|
|
1385
|
+
elif c == PyParse.C_BACKSLASH:
|
|
1386
|
+
# if more than one line in this stmt already, just
|
|
1387
|
+
# mimic the current indent; else if initial line
|
|
1388
|
+
# has a start on an assignment stmt, indent to
|
|
1389
|
+
# beyond leftmost =; else to beyond first chunk of
|
|
1390
|
+
# non-whitespace on initial line
|
|
1391
|
+
if y.get_num_lines_in_stmt() > 1:
|
|
1392
|
+
text.insert("insert", indent)
|
|
1393
|
+
else:
|
|
1394
|
+
self.reindent_to(y.compute_backslash_indent())
|
|
1395
|
+
else:
|
|
1396
|
+
assert 0, "bogus continuation type %r" % (c,)
|
|
1397
|
+
return "break"
|
|
1398
|
+
|
|
1399
|
+
# This line starts a brand new stmt; indent relative to
|
|
1400
|
+
# indentation of initial line of closest preceding
|
|
1401
|
+
# interesting stmt.
|
|
1402
|
+
indent = y.get_base_indent_string()
|
|
1403
|
+
text.insert("insert", indent)
|
|
1404
|
+
if y.is_block_opener():
|
|
1405
|
+
self.smart_indent_event(event)
|
|
1406
|
+
elif indent and y.is_block_closer():
|
|
1407
|
+
self.smart_backspace_event(event)
|
|
1408
|
+
return "break"
|
|
1409
|
+
finally:
|
|
1410
|
+
text.see("insert")
|
|
1411
|
+
text.undo_block_stop()
|
|
1412
|
+
|
|
1413
|
+
# Our editwin provides a is_char_in_string function that works
|
|
1414
|
+
# with a Tk text index, but PyParse only knows about offsets into
|
|
1415
|
+
# a string. This builds a function for PyParse that accepts an
|
|
1416
|
+
# offset.
|
|
1417
|
+
|
|
1418
|
+
def _build_char_in_string_func(self, startindex):
|
|
1419
|
+
def inner(offset, _startindex=startindex,
|
|
1420
|
+
_icis=self.is_char_in_string):
|
|
1421
|
+
return _icis(_startindex + "+%dc" % offset)
|
|
1422
|
+
return inner
|
|
1423
|
+
|
|
1424
|
+
def indent_region_event(self, event):
|
|
1425
|
+
head, tail, chars, lines = self.get_region()
|
|
1426
|
+
for pos in range(len(lines)):
|
|
1427
|
+
line = lines[pos]
|
|
1428
|
+
if line:
|
|
1429
|
+
raw, effective = classifyws(line, self.tabwidth)
|
|
1430
|
+
effective = effective + self.indentwidth
|
|
1431
|
+
lines[pos] = self._make_blanks(effective) + line[raw:]
|
|
1432
|
+
self.set_region(head, tail, chars, lines)
|
|
1433
|
+
return "break"
|
|
1434
|
+
|
|
1435
|
+
def dedent_region_event(self, event):
|
|
1436
|
+
head, tail, chars, lines = self.get_region()
|
|
1437
|
+
for pos in range(len(lines)):
|
|
1438
|
+
line = lines[pos]
|
|
1439
|
+
if line:
|
|
1440
|
+
raw, effective = classifyws(line, self.tabwidth)
|
|
1441
|
+
effective = max(effective - self.indentwidth, 0)
|
|
1442
|
+
lines[pos] = self._make_blanks(effective) + line[raw:]
|
|
1443
|
+
self.set_region(head, tail, chars, lines)
|
|
1444
|
+
return "break"
|
|
1445
|
+
|
|
1446
|
+
def comment_region_event(self, event):
|
|
1447
|
+
head, tail, chars, lines = self.get_region()
|
|
1448
|
+
for pos in range(len(lines) - 1):
|
|
1449
|
+
line = lines[pos]
|
|
1450
|
+
lines[pos] = '##' + line
|
|
1451
|
+
self.set_region(head, tail, chars, lines)
|
|
1452
|
+
|
|
1453
|
+
def uncomment_region_event(self, event):
|
|
1454
|
+
head, tail, chars, lines = self.get_region()
|
|
1455
|
+
for pos in range(len(lines)):
|
|
1456
|
+
line = lines[pos]
|
|
1457
|
+
if not line:
|
|
1458
|
+
continue
|
|
1459
|
+
if line[:2] == '##':
|
|
1460
|
+
line = line[2:]
|
|
1461
|
+
elif line[:1] == '#':
|
|
1462
|
+
line = line[1:]
|
|
1463
|
+
lines[pos] = line
|
|
1464
|
+
self.set_region(head, tail, chars, lines)
|
|
1465
|
+
|
|
1466
|
+
def tabify_region_event(self, event):
|
|
1467
|
+
head, tail, chars, lines = self.get_region()
|
|
1468
|
+
tabwidth = self._asktabwidth()
|
|
1469
|
+
if tabwidth is None: return
|
|
1470
|
+
for pos in range(len(lines)):
|
|
1471
|
+
line = lines[pos]
|
|
1472
|
+
if line:
|
|
1473
|
+
raw, effective = classifyws(line, tabwidth)
|
|
1474
|
+
ntabs, nspaces = divmod(effective, tabwidth)
|
|
1475
|
+
lines[pos] = '\t' * ntabs + ' ' * nspaces + line[raw:]
|
|
1476
|
+
self.set_region(head, tail, chars, lines)
|
|
1477
|
+
|
|
1478
|
+
def untabify_region_event(self, event):
|
|
1479
|
+
head, tail, chars, lines = self.get_region()
|
|
1480
|
+
tabwidth = self._asktabwidth()
|
|
1481
|
+
if tabwidth is None: return
|
|
1482
|
+
for pos in range(len(lines)):
|
|
1483
|
+
lines[pos] = lines[pos].expandtabs(tabwidth)
|
|
1484
|
+
self.set_region(head, tail, chars, lines)
|
|
1485
|
+
|
|
1486
|
+
def toggle_tabs_event(self, event):
|
|
1487
|
+
if self.askyesno(
|
|
1488
|
+
"Toggle tabs",
|
|
1489
|
+
"Turn tabs " + ("on", "off")[self.usetabs] +
|
|
1490
|
+
"?\nIndent width " +
|
|
1491
|
+
("will be", "remains at")[self.usetabs] + " 8." +
|
|
1492
|
+
"\n Note: a tab is always 8 columns",
|
|
1493
|
+
parent=self.text):
|
|
1494
|
+
self.usetabs = not self.usetabs
|
|
1495
|
+
# Try to prevent inconsistent indentation.
|
|
1496
|
+
# User must change indent width manually after using tabs.
|
|
1497
|
+
self.indentwidth = 8
|
|
1498
|
+
return "break"
|
|
1499
|
+
|
|
1500
|
+
# XXX this isn't bound to anything -- see tabwidth comments
|
|
1501
|
+
## def change_tabwidth_event(self, event):
|
|
1502
|
+
## new = self._asktabwidth()
|
|
1503
|
+
## if new != self.tabwidth:
|
|
1504
|
+
## self.tabwidth = new
|
|
1505
|
+
## self.set_indentation_params(0, guess=0)
|
|
1506
|
+
## return "break"
|
|
1507
|
+
|
|
1508
|
+
def change_indentwidth_event(self, event):
|
|
1509
|
+
new = self.askinteger(
|
|
1510
|
+
"Indent width",
|
|
1511
|
+
"New indent width (2-16)\n(Always use 8 when using tabs)",
|
|
1512
|
+
parent=self.text,
|
|
1513
|
+
initialvalue=self.indentwidth,
|
|
1514
|
+
minvalue=2,
|
|
1515
|
+
maxvalue=16)
|
|
1516
|
+
if new and new != self.indentwidth and not self.usetabs:
|
|
1517
|
+
self.indentwidth = new
|
|
1518
|
+
return "break"
|
|
1519
|
+
|
|
1520
|
+
def get_region(self):
|
|
1521
|
+
text = self.text
|
|
1522
|
+
first, last = self.get_selection_indices()
|
|
1523
|
+
if first and last:
|
|
1524
|
+
head = text.index(first + " linestart")
|
|
1525
|
+
tail = text.index(last + "-1c lineend +1c")
|
|
1526
|
+
else:
|
|
1527
|
+
head = text.index("insert linestart")
|
|
1528
|
+
tail = text.index("insert lineend +1c")
|
|
1529
|
+
chars = text.get(head, tail)
|
|
1530
|
+
lines = chars.split("\n")
|
|
1531
|
+
return head, tail, chars, lines
|
|
1532
|
+
|
|
1533
|
+
def set_region(self, head, tail, chars, lines):
|
|
1534
|
+
text = self.text
|
|
1535
|
+
newchars = "\n".join(lines)
|
|
1536
|
+
if newchars == chars:
|
|
1537
|
+
text.bell()
|
|
1538
|
+
return
|
|
1539
|
+
text.tag_remove("sel", "1.0", "end")
|
|
1540
|
+
text.mark_set("insert", head)
|
|
1541
|
+
text.undo_block_start()
|
|
1542
|
+
text.delete(head, tail)
|
|
1543
|
+
text.insert(head, newchars)
|
|
1544
|
+
text.undo_block_stop()
|
|
1545
|
+
text.tag_add("sel", head, "insert")
|
|
1546
|
+
|
|
1547
|
+
# Make string that displays as n leading blanks.
|
|
1548
|
+
|
|
1549
|
+
def _make_blanks(self, n):
|
|
1550
|
+
if self.usetabs:
|
|
1551
|
+
ntabs, nspaces = divmod(n, self.tabwidth)
|
|
1552
|
+
return '\t' * ntabs + ' ' * nspaces
|
|
1553
|
+
else:
|
|
1554
|
+
return ' ' * n
|
|
1555
|
+
|
|
1556
|
+
# Delete from beginning of line to insert point, then reinsert
|
|
1557
|
+
# column logical (meaning use tabs if appropriate) spaces.
|
|
1558
|
+
|
|
1559
|
+
def reindent_to(self, column):
|
|
1560
|
+
text = self.text
|
|
1561
|
+
text.undo_block_start()
|
|
1562
|
+
if text.compare("insert linestart", "!=", "insert"):
|
|
1563
|
+
text.delete("insert linestart", "insert")
|
|
1564
|
+
if column:
|
|
1565
|
+
text.insert("insert", self._make_blanks(column))
|
|
1566
|
+
text.undo_block_stop()
|
|
1567
|
+
|
|
1568
|
+
def _asktabwidth(self):
|
|
1569
|
+
return self.askinteger(
|
|
1570
|
+
"Tab width",
|
|
1571
|
+
"Columns per tab? (2-16)",
|
|
1572
|
+
parent=self.text,
|
|
1573
|
+
initialvalue=self.indentwidth,
|
|
1574
|
+
minvalue=2,
|
|
1575
|
+
maxvalue=16)
|
|
1576
|
+
|
|
1577
|
+
# Guess indentwidth from text content.
|
|
1578
|
+
# Return guessed indentwidth. This should not be believed unless
|
|
1579
|
+
# it's in a reasonable range (e.g., it will be 0 if no indented
|
|
1580
|
+
# blocks are found).
|
|
1581
|
+
|
|
1582
|
+
def guess_indent(self):
|
|
1583
|
+
opener, indented = IndentSearcher(self.text, self.tabwidth).run()
|
|
1584
|
+
if opener and indented:
|
|
1585
|
+
raw, indentsmall = classifyws(opener, self.tabwidth)
|
|
1586
|
+
raw, indentlarge = classifyws(indented, self.tabwidth)
|
|
1587
|
+
else:
|
|
1588
|
+
indentsmall = indentlarge = 0
|
|
1589
|
+
return indentlarge - indentsmall
|
|
1590
|
+
|
|
1591
|
+
# "line.col" -> line, as an int
|
|
1592
|
+
def index2line(index):
|
|
1593
|
+
return int(float(index))
|
|
1594
|
+
|
|
1595
|
+
# Look at the leading whitespace in s.
|
|
1596
|
+
# Return pair (# of leading ws characters,
|
|
1597
|
+
# effective # of leading blanks after expanding
|
|
1598
|
+
# tabs to width tabwidth)
|
|
1599
|
+
|
|
1600
|
+
def classifyws(s, tabwidth):
|
|
1601
|
+
raw = effective = 0
|
|
1602
|
+
for ch in s:
|
|
1603
|
+
if ch == ' ':
|
|
1604
|
+
raw = raw + 1
|
|
1605
|
+
effective = effective + 1
|
|
1606
|
+
elif ch == '\t':
|
|
1607
|
+
raw = raw + 1
|
|
1608
|
+
effective = (effective // tabwidth + 1) * tabwidth
|
|
1609
|
+
else:
|
|
1610
|
+
break
|
|
1611
|
+
return raw, effective
|
|
1612
|
+
|
|
1613
|
+
import tokenize
|
|
1614
|
+
_tokenize = tokenize
|
|
1615
|
+
del tokenize
|
|
1616
|
+
|
|
1617
|
+
class IndentSearcher(object):
|
|
1618
|
+
|
|
1619
|
+
# .run() chews over the Text widget, looking for a block opener
|
|
1620
|
+
# and the stmt following it. Returns a pair,
|
|
1621
|
+
# (line containing block opener, line containing stmt)
|
|
1622
|
+
# Either or both may be None.
|
|
1623
|
+
|
|
1624
|
+
def __init__(self, text, tabwidth):
|
|
1625
|
+
self.text = text
|
|
1626
|
+
self.tabwidth = tabwidth
|
|
1627
|
+
self.i = self.finished = 0
|
|
1628
|
+
self.blkopenline = self.indentedline = None
|
|
1629
|
+
|
|
1630
|
+
def readline(self):
|
|
1631
|
+
if self.finished:
|
|
1632
|
+
return ""
|
|
1633
|
+
i = self.i = self.i + 1
|
|
1634
|
+
mark = repr(i) + ".0"
|
|
1635
|
+
if self.text.compare(mark, ">=", "end"):
|
|
1636
|
+
return ""
|
|
1637
|
+
return self.text.get(mark, mark + " lineend+1c")
|
|
1638
|
+
|
|
1639
|
+
def tokeneater(self, type, token, start, end, line,
|
|
1640
|
+
INDENT=_tokenize.INDENT,
|
|
1641
|
+
NAME=_tokenize.NAME,
|
|
1642
|
+
OPENERS=('class', 'def', 'for', 'if', 'try', 'while')):
|
|
1643
|
+
if self.finished:
|
|
1644
|
+
pass
|
|
1645
|
+
elif type == NAME and token in OPENERS:
|
|
1646
|
+
self.blkopenline = line
|
|
1647
|
+
elif type == INDENT and self.blkopenline:
|
|
1648
|
+
self.indentedline = line
|
|
1649
|
+
self.finished = 1
|
|
1650
|
+
|
|
1651
|
+
def run(self):
|
|
1652
|
+
save_tabsize = _tokenize.tabsize
|
|
1653
|
+
_tokenize.tabsize = self.tabwidth
|
|
1654
|
+
try:
|
|
1655
|
+
try:
|
|
1656
|
+
tokens = _tokenize.generate_tokens(self.readline)
|
|
1657
|
+
for token in tokens:
|
|
1658
|
+
self.tokeneater(*token)
|
|
1659
|
+
except (_tokenize.TokenError, SyntaxError):
|
|
1660
|
+
# since we cut off the tokenizer early, we can trigger
|
|
1661
|
+
# spurious errors
|
|
1662
|
+
pass
|
|
1663
|
+
finally:
|
|
1664
|
+
_tokenize.tabsize = save_tabsize
|
|
1665
|
+
return self.blkopenline, self.indentedline
|
|
1666
|
+
|
|
1667
|
+
### end autoindent code ###
|
|
1668
|
+
|
|
1669
|
+
def prepstr(s):
|
|
1670
|
+
# Helper to extract the underscore from a string, e.g.
|
|
1671
|
+
# prepstr("Co_py") returns (2, "Copy").
|
|
1672
|
+
i = s.find('_')
|
|
1673
|
+
if i >= 0:
|
|
1674
|
+
s = s[:i] + s[i+1:]
|
|
1675
|
+
return i, s
|
|
1676
|
+
|
|
1677
|
+
|
|
1678
|
+
keynames = {
|
|
1679
|
+
'bracketleft': '[',
|
|
1680
|
+
'bracketright': ']',
|
|
1681
|
+
'slash': '/',
|
|
1682
|
+
}
|
|
1683
|
+
|
|
1684
|
+
def get_accelerator(keydefs, eventname):
|
|
1685
|
+
keylist = keydefs.get(eventname)
|
|
1686
|
+
# issue10940: temporary workaround to prevent hang with OS X Cocoa Tk 8.5
|
|
1687
|
+
# if not keylist:
|
|
1688
|
+
if (not keylist) or (macosxSupport.isCocoaTk() and eventname in {
|
|
1689
|
+
"<<open-module>>",
|
|
1690
|
+
"<<goto-line>>",
|
|
1691
|
+
"<<change-indentwidth>>"}):
|
|
1692
|
+
return ""
|
|
1693
|
+
s = keylist[0]
|
|
1694
|
+
s = re.sub(r"-[a-z]\b", lambda m: m.group().upper(), s)
|
|
1695
|
+
s = re.sub(r"\b\w+\b", lambda m: keynames.get(m.group(), m.group()), s)
|
|
1696
|
+
s = re.sub("Key-", "", s)
|
|
1697
|
+
s = re.sub("Cancel","Ctrl-Break",s) # dscherer@cmu.edu
|
|
1698
|
+
s = re.sub("Control-", "Ctrl-", s)
|
|
1699
|
+
s = re.sub("-", "+", s)
|
|
1700
|
+
s = re.sub("><", " ", s)
|
|
1701
|
+
s = re.sub("<", "", s)
|
|
1702
|
+
s = re.sub(">", "", s)
|
|
1703
|
+
return s
|
|
1704
|
+
|
|
1705
|
+
|
|
1706
|
+
def fixwordbreaks(root):
|
|
1707
|
+
# Make sure that Tk's double-click and next/previous word
|
|
1708
|
+
# operations use our definition of a word (i.e. an identifier)
|
|
1709
|
+
tk = root.tk
|
|
1710
|
+
tk.call('tcl_wordBreakAfter', 'a b', 0) # make sure word.tcl is loaded
|
|
1711
|
+
tk.call('set', 'tcl_wordchars', '[a-zA-Z0-9_]')
|
|
1712
|
+
tk.call('set', 'tcl_nonwordchars', '[^a-zA-Z0-9_]')
|
|
1713
|
+
|
|
1714
|
+
|
|
1715
|
+
def _editor_window(parent):
|
|
1716
|
+
root = parent
|
|
1717
|
+
fixwordbreaks(root)
|
|
1718
|
+
if sys.argv[1:]:
|
|
1719
|
+
filename = sys.argv[1]
|
|
1720
|
+
else:
|
|
1721
|
+
filename = None
|
|
1722
|
+
macosxSupport.setupApp(root, None)
|
|
1723
|
+
edit = EditorWindow(root=root, filename=filename)
|
|
1724
|
+
edit.text.bind("<<close-all-windows>>", edit.close_event)
|
|
1725
|
+
parent.mainloop()
|
|
1726
|
+
|
|
1727
|
+
if __name__ == '__main__':
|
|
1728
|
+
from idlelib.idle_test.htest import run
|
|
1729
|
+
run(_help_dialog, _editor_window)
|