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,1693 @@
|
|
|
1
|
+
# Copyright 2007 Google Inc.
|
|
2
|
+
# Licensed to PSF under a Contributor Agreement.
|
|
3
|
+
|
|
4
|
+
"""Unittest for ipaddress module."""
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
import unittest
|
|
8
|
+
import re
|
|
9
|
+
import contextlib
|
|
10
|
+
import operator
|
|
11
|
+
import ipaddress
|
|
12
|
+
|
|
13
|
+
class BaseTestCase(unittest.TestCase):
|
|
14
|
+
# One big change in ipaddress over the original ipaddr module is
|
|
15
|
+
# error reporting that tries to assume users *don't know the rules*
|
|
16
|
+
# for what constitutes an RFC compliant IP address
|
|
17
|
+
|
|
18
|
+
# Ensuring these errors are emitted correctly in all relevant cases
|
|
19
|
+
# meant moving to a more systematic test structure that allows the
|
|
20
|
+
# test structure to map more directly to the module structure
|
|
21
|
+
|
|
22
|
+
# Note that if the constructors are refactored so that addresses with
|
|
23
|
+
# multiple problems get classified differently, that's OK - just
|
|
24
|
+
# move the affected examples to the newly appropriate test case.
|
|
25
|
+
|
|
26
|
+
# There is some duplication between the original relatively ad hoc
|
|
27
|
+
# test suite and the new systematic tests. While some redundancy in
|
|
28
|
+
# testing is considered preferable to accidentally deleting a valid
|
|
29
|
+
# test, the original test suite will likely be reduced over time as
|
|
30
|
+
# redundant tests are identified.
|
|
31
|
+
|
|
32
|
+
@property
|
|
33
|
+
def factory(self):
|
|
34
|
+
raise NotImplementedError
|
|
35
|
+
|
|
36
|
+
@contextlib.contextmanager
|
|
37
|
+
def assertCleanError(self, exc_type, details, *args):
|
|
38
|
+
"""
|
|
39
|
+
Ensure exception does not display a context by default
|
|
40
|
+
|
|
41
|
+
Wraps unittest.TestCase.assertRaisesRegex
|
|
42
|
+
"""
|
|
43
|
+
if args:
|
|
44
|
+
details = details % args
|
|
45
|
+
cm = self.assertRaisesRegex(exc_type, details)
|
|
46
|
+
with cm as exc:
|
|
47
|
+
yield exc
|
|
48
|
+
# Ensure we produce clean tracebacks on failure
|
|
49
|
+
if exc.exception.__context__ is not None:
|
|
50
|
+
self.assertTrue(exc.exception.__suppress_context__)
|
|
51
|
+
|
|
52
|
+
def assertAddressError(self, details, *args):
|
|
53
|
+
"""Ensure a clean AddressValueError"""
|
|
54
|
+
return self.assertCleanError(ipaddress.AddressValueError,
|
|
55
|
+
details, *args)
|
|
56
|
+
|
|
57
|
+
def assertNetmaskError(self, details, *args):
|
|
58
|
+
"""Ensure a clean NetmaskValueError"""
|
|
59
|
+
return self.assertCleanError(ipaddress.NetmaskValueError,
|
|
60
|
+
details, *args)
|
|
61
|
+
|
|
62
|
+
def assertInstancesEqual(self, lhs, rhs):
|
|
63
|
+
"""Check constructor arguments produce equivalent instances"""
|
|
64
|
+
self.assertEqual(self.factory(lhs), self.factory(rhs))
|
|
65
|
+
|
|
66
|
+
class CommonTestMixin:
|
|
67
|
+
|
|
68
|
+
def test_empty_address(self):
|
|
69
|
+
with self.assertAddressError("Address cannot be empty"):
|
|
70
|
+
self.factory("")
|
|
71
|
+
|
|
72
|
+
def test_floats_rejected(self):
|
|
73
|
+
with self.assertAddressError(re.escape(repr("1.0"))):
|
|
74
|
+
self.factory(1.0)
|
|
75
|
+
|
|
76
|
+
def test_not_an_index_issue15559(self):
|
|
77
|
+
# Implementing __index__ makes for a very nasty interaction with the
|
|
78
|
+
# bytes constructor. Thus, we disallow implicit use as an integer
|
|
79
|
+
self.assertRaises(TypeError, operator.index, self.factory(1))
|
|
80
|
+
self.assertRaises(TypeError, hex, self.factory(1))
|
|
81
|
+
self.assertRaises(TypeError, bytes, self.factory(1))
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
class CommonTestMixin_v4(CommonTestMixin):
|
|
85
|
+
|
|
86
|
+
def test_leading_zeros(self):
|
|
87
|
+
self.assertInstancesEqual("000.000.000.000", "0.0.0.0")
|
|
88
|
+
self.assertInstancesEqual("192.168.000.001", "192.168.0.1")
|
|
89
|
+
|
|
90
|
+
def test_int(self):
|
|
91
|
+
self.assertInstancesEqual(0, "0.0.0.0")
|
|
92
|
+
self.assertInstancesEqual(3232235521, "192.168.0.1")
|
|
93
|
+
|
|
94
|
+
def test_packed(self):
|
|
95
|
+
self.assertInstancesEqual(bytes.fromhex("00000000"), "0.0.0.0")
|
|
96
|
+
self.assertInstancesEqual(bytes.fromhex("c0a80001"), "192.168.0.1")
|
|
97
|
+
|
|
98
|
+
def test_negative_ints_rejected(self):
|
|
99
|
+
msg = "-1 (< 0) is not permitted as an IPv4 address"
|
|
100
|
+
with self.assertAddressError(re.escape(msg)):
|
|
101
|
+
self.factory(-1)
|
|
102
|
+
|
|
103
|
+
def test_large_ints_rejected(self):
|
|
104
|
+
msg = "%d (>= 2**32) is not permitted as an IPv4 address"
|
|
105
|
+
with self.assertAddressError(re.escape(msg % 2**32)):
|
|
106
|
+
self.factory(2**32)
|
|
107
|
+
|
|
108
|
+
def test_bad_packed_length(self):
|
|
109
|
+
def assertBadLength(length):
|
|
110
|
+
addr = bytes(length)
|
|
111
|
+
msg = "%r (len %d != 4) is not permitted as an IPv4 address"
|
|
112
|
+
with self.assertAddressError(re.escape(msg % (addr, length))):
|
|
113
|
+
self.factory(addr)
|
|
114
|
+
|
|
115
|
+
assertBadLength(3)
|
|
116
|
+
assertBadLength(5)
|
|
117
|
+
|
|
118
|
+
class CommonTestMixin_v6(CommonTestMixin):
|
|
119
|
+
|
|
120
|
+
def test_leading_zeros(self):
|
|
121
|
+
self.assertInstancesEqual("0000::0000", "::")
|
|
122
|
+
self.assertInstancesEqual("000::c0a8:0001", "::c0a8:1")
|
|
123
|
+
|
|
124
|
+
def test_int(self):
|
|
125
|
+
self.assertInstancesEqual(0, "::")
|
|
126
|
+
self.assertInstancesEqual(3232235521, "::c0a8:1")
|
|
127
|
+
|
|
128
|
+
def test_packed(self):
|
|
129
|
+
addr = bytes(12) + bytes.fromhex("00000000")
|
|
130
|
+
self.assertInstancesEqual(addr, "::")
|
|
131
|
+
addr = bytes(12) + bytes.fromhex("c0a80001")
|
|
132
|
+
self.assertInstancesEqual(addr, "::c0a8:1")
|
|
133
|
+
addr = bytes.fromhex("c0a80001") + bytes(12)
|
|
134
|
+
self.assertInstancesEqual(addr, "c0a8:1::")
|
|
135
|
+
|
|
136
|
+
def test_negative_ints_rejected(self):
|
|
137
|
+
msg = "-1 (< 0) is not permitted as an IPv6 address"
|
|
138
|
+
with self.assertAddressError(re.escape(msg)):
|
|
139
|
+
self.factory(-1)
|
|
140
|
+
|
|
141
|
+
def test_large_ints_rejected(self):
|
|
142
|
+
msg = "%d (>= 2**128) is not permitted as an IPv6 address"
|
|
143
|
+
with self.assertAddressError(re.escape(msg % 2**128)):
|
|
144
|
+
self.factory(2**128)
|
|
145
|
+
|
|
146
|
+
def test_bad_packed_length(self):
|
|
147
|
+
def assertBadLength(length):
|
|
148
|
+
addr = bytes(length)
|
|
149
|
+
msg = "%r (len %d != 16) is not permitted as an IPv6 address"
|
|
150
|
+
with self.assertAddressError(re.escape(msg % (addr, length))):
|
|
151
|
+
self.factory(addr)
|
|
152
|
+
self.factory(addr)
|
|
153
|
+
|
|
154
|
+
assertBadLength(15)
|
|
155
|
+
assertBadLength(17)
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
class AddressTestCase_v4(BaseTestCase, CommonTestMixin_v4):
|
|
159
|
+
factory = ipaddress.IPv4Address
|
|
160
|
+
|
|
161
|
+
def test_network_passed_as_address(self):
|
|
162
|
+
addr = "127.0.0.1/24"
|
|
163
|
+
with self.assertAddressError("Unexpected '/' in %r", addr):
|
|
164
|
+
ipaddress.IPv4Address(addr)
|
|
165
|
+
|
|
166
|
+
def test_bad_address_split(self):
|
|
167
|
+
def assertBadSplit(addr):
|
|
168
|
+
with self.assertAddressError("Expected 4 octets in %r", addr):
|
|
169
|
+
ipaddress.IPv4Address(addr)
|
|
170
|
+
|
|
171
|
+
assertBadSplit("127.0.1")
|
|
172
|
+
assertBadSplit("42.42.42.42.42")
|
|
173
|
+
assertBadSplit("42.42.42")
|
|
174
|
+
assertBadSplit("42.42")
|
|
175
|
+
assertBadSplit("42")
|
|
176
|
+
assertBadSplit("42..42.42.42")
|
|
177
|
+
assertBadSplit("42.42.42.42.")
|
|
178
|
+
assertBadSplit("42.42.42.42...")
|
|
179
|
+
assertBadSplit(".42.42.42.42")
|
|
180
|
+
assertBadSplit("...42.42.42.42")
|
|
181
|
+
assertBadSplit("016.016.016")
|
|
182
|
+
assertBadSplit("016.016")
|
|
183
|
+
assertBadSplit("016")
|
|
184
|
+
assertBadSplit("000")
|
|
185
|
+
assertBadSplit("0x0a.0x0a.0x0a")
|
|
186
|
+
assertBadSplit("0x0a.0x0a")
|
|
187
|
+
assertBadSplit("0x0a")
|
|
188
|
+
assertBadSplit(".")
|
|
189
|
+
assertBadSplit("bogus")
|
|
190
|
+
assertBadSplit("bogus.com")
|
|
191
|
+
assertBadSplit("1000")
|
|
192
|
+
assertBadSplit("1000000000000000")
|
|
193
|
+
assertBadSplit("192.168.0.1.com")
|
|
194
|
+
|
|
195
|
+
def test_empty_octet(self):
|
|
196
|
+
def assertBadOctet(addr):
|
|
197
|
+
with self.assertAddressError("Empty octet not permitted in %r",
|
|
198
|
+
addr):
|
|
199
|
+
ipaddress.IPv4Address(addr)
|
|
200
|
+
|
|
201
|
+
assertBadOctet("42..42.42")
|
|
202
|
+
assertBadOctet("...")
|
|
203
|
+
|
|
204
|
+
def test_invalid_characters(self):
|
|
205
|
+
def assertBadOctet(addr, octet):
|
|
206
|
+
msg = "Only decimal digits permitted in %r in %r" % (octet, addr)
|
|
207
|
+
with self.assertAddressError(re.escape(msg)):
|
|
208
|
+
ipaddress.IPv4Address(addr)
|
|
209
|
+
|
|
210
|
+
assertBadOctet("0x0a.0x0a.0x0a.0x0a", "0x0a")
|
|
211
|
+
assertBadOctet("0xa.0x0a.0x0a.0x0a", "0xa")
|
|
212
|
+
assertBadOctet("42.42.42.-0", "-0")
|
|
213
|
+
assertBadOctet("42.42.42.+0", "+0")
|
|
214
|
+
assertBadOctet("42.42.42.-42", "-42")
|
|
215
|
+
assertBadOctet("+1.+2.+3.4", "+1")
|
|
216
|
+
assertBadOctet("1.2.3.4e0", "4e0")
|
|
217
|
+
assertBadOctet("1.2.3.4::", "4::")
|
|
218
|
+
assertBadOctet("1.a.2.3", "a")
|
|
219
|
+
|
|
220
|
+
def test_octal_decimal_ambiguity(self):
|
|
221
|
+
def assertBadOctet(addr, octet):
|
|
222
|
+
msg = "Ambiguous (octal/decimal) value in %r not permitted in %r"
|
|
223
|
+
with self.assertAddressError(re.escape(msg % (octet, addr))):
|
|
224
|
+
ipaddress.IPv4Address(addr)
|
|
225
|
+
|
|
226
|
+
assertBadOctet("016.016.016.016", "016")
|
|
227
|
+
assertBadOctet("001.000.008.016", "008")
|
|
228
|
+
|
|
229
|
+
def test_octet_length(self):
|
|
230
|
+
def assertBadOctet(addr, octet):
|
|
231
|
+
msg = "At most 3 characters permitted in %r in %r"
|
|
232
|
+
with self.assertAddressError(re.escape(msg % (octet, addr))):
|
|
233
|
+
ipaddress.IPv4Address(addr)
|
|
234
|
+
|
|
235
|
+
assertBadOctet("0000.000.000.000", "0000")
|
|
236
|
+
assertBadOctet("12345.67899.-54321.-98765", "12345")
|
|
237
|
+
|
|
238
|
+
def test_octet_limit(self):
|
|
239
|
+
def assertBadOctet(addr, octet):
|
|
240
|
+
msg = "Octet %d (> 255) not permitted in %r" % (octet, addr)
|
|
241
|
+
with self.assertAddressError(re.escape(msg)):
|
|
242
|
+
ipaddress.IPv4Address(addr)
|
|
243
|
+
|
|
244
|
+
assertBadOctet("257.0.0.0", 257)
|
|
245
|
+
assertBadOctet("192.168.0.999", 999)
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
class AddressTestCase_v6(BaseTestCase, CommonTestMixin_v6):
|
|
249
|
+
factory = ipaddress.IPv6Address
|
|
250
|
+
|
|
251
|
+
def test_network_passed_as_address(self):
|
|
252
|
+
addr = "::1/24"
|
|
253
|
+
with self.assertAddressError("Unexpected '/' in %r", addr):
|
|
254
|
+
ipaddress.IPv6Address(addr)
|
|
255
|
+
|
|
256
|
+
def test_bad_address_split_v6_not_enough_parts(self):
|
|
257
|
+
def assertBadSplit(addr):
|
|
258
|
+
msg = "At least 3 parts expected in %r"
|
|
259
|
+
with self.assertAddressError(msg, addr):
|
|
260
|
+
ipaddress.IPv6Address(addr)
|
|
261
|
+
|
|
262
|
+
assertBadSplit(":")
|
|
263
|
+
assertBadSplit(":1")
|
|
264
|
+
assertBadSplit("FEDC:9878")
|
|
265
|
+
|
|
266
|
+
def test_bad_address_split_v6_too_many_colons(self):
|
|
267
|
+
def assertBadSplit(addr):
|
|
268
|
+
msg = "At most 8 colons permitted in %r"
|
|
269
|
+
with self.assertAddressError(msg, addr):
|
|
270
|
+
ipaddress.IPv6Address(addr)
|
|
271
|
+
|
|
272
|
+
assertBadSplit("9:8:7:6:5:4:3::2:1")
|
|
273
|
+
assertBadSplit("10:9:8:7:6:5:4:3:2:1")
|
|
274
|
+
assertBadSplit("::8:7:6:5:4:3:2:1")
|
|
275
|
+
assertBadSplit("8:7:6:5:4:3:2:1::")
|
|
276
|
+
# A trailing IPv4 address is two parts
|
|
277
|
+
assertBadSplit("10:9:8:7:6:5:4:3:42.42.42.42")
|
|
278
|
+
|
|
279
|
+
def test_bad_address_split_v6_too_many_parts(self):
|
|
280
|
+
def assertBadSplit(addr):
|
|
281
|
+
msg = "Exactly 8 parts expected without '::' in %r"
|
|
282
|
+
with self.assertAddressError(msg, addr):
|
|
283
|
+
ipaddress.IPv6Address(addr)
|
|
284
|
+
|
|
285
|
+
assertBadSplit("3ffe:0:0:0:0:0:0:0:1")
|
|
286
|
+
assertBadSplit("9:8:7:6:5:4:3:2:1")
|
|
287
|
+
assertBadSplit("7:6:5:4:3:2:1")
|
|
288
|
+
# A trailing IPv4 address is two parts
|
|
289
|
+
assertBadSplit("9:8:7:6:5:4:3:42.42.42.42")
|
|
290
|
+
assertBadSplit("7:6:5:4:3:42.42.42.42")
|
|
291
|
+
|
|
292
|
+
def test_bad_address_split_v6_too_many_parts_with_double_colon(self):
|
|
293
|
+
def assertBadSplit(addr):
|
|
294
|
+
msg = "Expected at most 7 other parts with '::' in %r"
|
|
295
|
+
with self.assertAddressError(msg, addr):
|
|
296
|
+
ipaddress.IPv6Address(addr)
|
|
297
|
+
|
|
298
|
+
assertBadSplit("1:2:3:4::5:6:7:8")
|
|
299
|
+
|
|
300
|
+
def test_bad_address_split_v6_repeated_double_colon(self):
|
|
301
|
+
def assertBadSplit(addr):
|
|
302
|
+
msg = "At most one '::' permitted in %r"
|
|
303
|
+
with self.assertAddressError(msg, addr):
|
|
304
|
+
ipaddress.IPv6Address(addr)
|
|
305
|
+
|
|
306
|
+
assertBadSplit("3ffe::1::1")
|
|
307
|
+
assertBadSplit("1::2::3::4:5")
|
|
308
|
+
assertBadSplit("2001::db:::1")
|
|
309
|
+
assertBadSplit("3ffe::1::")
|
|
310
|
+
assertBadSplit("::3ffe::1")
|
|
311
|
+
assertBadSplit(":3ffe::1::1")
|
|
312
|
+
assertBadSplit("3ffe::1::1:")
|
|
313
|
+
assertBadSplit(":3ffe::1::1:")
|
|
314
|
+
assertBadSplit(":::")
|
|
315
|
+
assertBadSplit('2001:db8:::1')
|
|
316
|
+
|
|
317
|
+
def test_bad_address_split_v6_leading_colon(self):
|
|
318
|
+
def assertBadSplit(addr):
|
|
319
|
+
msg = "Leading ':' only permitted as part of '::' in %r"
|
|
320
|
+
with self.assertAddressError(msg, addr):
|
|
321
|
+
ipaddress.IPv6Address(addr)
|
|
322
|
+
|
|
323
|
+
assertBadSplit(":2001:db8::1")
|
|
324
|
+
assertBadSplit(":1:2:3:4:5:6:7")
|
|
325
|
+
assertBadSplit(":1:2:3:4:5:6:")
|
|
326
|
+
assertBadSplit(":6:5:4:3:2:1::")
|
|
327
|
+
|
|
328
|
+
def test_bad_address_split_v6_trailing_colon(self):
|
|
329
|
+
def assertBadSplit(addr):
|
|
330
|
+
msg = "Trailing ':' only permitted as part of '::' in %r"
|
|
331
|
+
with self.assertAddressError(msg, addr):
|
|
332
|
+
ipaddress.IPv6Address(addr)
|
|
333
|
+
|
|
334
|
+
assertBadSplit("2001:db8::1:")
|
|
335
|
+
assertBadSplit("1:2:3:4:5:6:7:")
|
|
336
|
+
assertBadSplit("::1.2.3.4:")
|
|
337
|
+
assertBadSplit("::7:6:5:4:3:2:")
|
|
338
|
+
|
|
339
|
+
def test_bad_v4_part_in(self):
|
|
340
|
+
def assertBadAddressPart(addr, v4_error):
|
|
341
|
+
with self.assertAddressError("%s in %r", v4_error, addr):
|
|
342
|
+
ipaddress.IPv6Address(addr)
|
|
343
|
+
|
|
344
|
+
assertBadAddressPart("3ffe::1.net", "Expected 4 octets in '1.net'")
|
|
345
|
+
assertBadAddressPart("3ffe::127.0.1",
|
|
346
|
+
"Expected 4 octets in '127.0.1'")
|
|
347
|
+
assertBadAddressPart("::1.2.3",
|
|
348
|
+
"Expected 4 octets in '1.2.3'")
|
|
349
|
+
assertBadAddressPart("::1.2.3.4.5",
|
|
350
|
+
"Expected 4 octets in '1.2.3.4.5'")
|
|
351
|
+
assertBadAddressPart("3ffe::1.1.1.net",
|
|
352
|
+
"Only decimal digits permitted in 'net' "
|
|
353
|
+
"in '1.1.1.net'")
|
|
354
|
+
|
|
355
|
+
def test_invalid_characters(self):
|
|
356
|
+
def assertBadPart(addr, part):
|
|
357
|
+
msg = "Only hex digits permitted in %r in %r" % (part, addr)
|
|
358
|
+
with self.assertAddressError(re.escape(msg)):
|
|
359
|
+
ipaddress.IPv6Address(addr)
|
|
360
|
+
|
|
361
|
+
assertBadPart("3ffe::goog", "goog")
|
|
362
|
+
assertBadPart("3ffe::-0", "-0")
|
|
363
|
+
assertBadPart("3ffe::+0", "+0")
|
|
364
|
+
assertBadPart("3ffe::-1", "-1")
|
|
365
|
+
assertBadPart("1.2.3.4::", "1.2.3.4")
|
|
366
|
+
assertBadPart('1234:axy::b', "axy")
|
|
367
|
+
|
|
368
|
+
def test_part_length(self):
|
|
369
|
+
def assertBadPart(addr, part):
|
|
370
|
+
msg = "At most 4 characters permitted in %r in %r"
|
|
371
|
+
with self.assertAddressError(msg, part, addr):
|
|
372
|
+
ipaddress.IPv6Address(addr)
|
|
373
|
+
|
|
374
|
+
assertBadPart("::00000", "00000")
|
|
375
|
+
assertBadPart("3ffe::10000", "10000")
|
|
376
|
+
assertBadPart("02001:db8::", "02001")
|
|
377
|
+
assertBadPart('2001:888888::1', "888888")
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
class NetmaskTestMixin_v4(CommonTestMixin_v4):
|
|
381
|
+
"""Input validation on interfaces and networks is very similar"""
|
|
382
|
+
|
|
383
|
+
def test_split_netmask(self):
|
|
384
|
+
addr = "1.2.3.4/32/24"
|
|
385
|
+
with self.assertAddressError("Only one '/' permitted in %r" % addr):
|
|
386
|
+
self.factory(addr)
|
|
387
|
+
|
|
388
|
+
def test_address_errors(self):
|
|
389
|
+
def assertBadAddress(addr, details):
|
|
390
|
+
with self.assertAddressError(details):
|
|
391
|
+
self.factory(addr)
|
|
392
|
+
|
|
393
|
+
assertBadAddress("/", "Address cannot be empty")
|
|
394
|
+
assertBadAddress("/8", "Address cannot be empty")
|
|
395
|
+
assertBadAddress("bogus", "Expected 4 octets")
|
|
396
|
+
assertBadAddress("google.com", "Expected 4 octets")
|
|
397
|
+
assertBadAddress("10/8", "Expected 4 octets")
|
|
398
|
+
assertBadAddress("::1.2.3.4", "Only decimal digits")
|
|
399
|
+
assertBadAddress("1.2.3.256", re.escape("256 (> 255)"))
|
|
400
|
+
|
|
401
|
+
def test_valid_netmask(self):
|
|
402
|
+
self.assertEqual(str(self.factory('192.0.2.0/255.255.255.0')),
|
|
403
|
+
'192.0.2.0/24')
|
|
404
|
+
for i in range(0, 33):
|
|
405
|
+
# Generate and re-parse the CIDR format (trivial).
|
|
406
|
+
net_str = '0.0.0.0/%d' % i
|
|
407
|
+
net = self.factory(net_str)
|
|
408
|
+
self.assertEqual(str(net), net_str)
|
|
409
|
+
# Generate and re-parse the expanded netmask.
|
|
410
|
+
self.assertEqual(
|
|
411
|
+
str(self.factory('0.0.0.0/%s' % net.netmask)), net_str)
|
|
412
|
+
# Zero prefix is treated as decimal.
|
|
413
|
+
self.assertEqual(str(self.factory('0.0.0.0/0%d' % i)), net_str)
|
|
414
|
+
# Generate and re-parse the expanded hostmask. The ambiguous
|
|
415
|
+
# cases (/0 and /32) are treated as netmasks.
|
|
416
|
+
if i in (32, 0):
|
|
417
|
+
net_str = '0.0.0.0/%d' % (32 - i)
|
|
418
|
+
self.assertEqual(
|
|
419
|
+
str(self.factory('0.0.0.0/%s' % net.hostmask)), net_str)
|
|
420
|
+
|
|
421
|
+
def test_netmask_errors(self):
|
|
422
|
+
def assertBadNetmask(addr, netmask):
|
|
423
|
+
msg = "%r is not a valid netmask" % netmask
|
|
424
|
+
with self.assertNetmaskError(re.escape(msg)):
|
|
425
|
+
self.factory("%s/%s" % (addr, netmask))
|
|
426
|
+
|
|
427
|
+
assertBadNetmask("1.2.3.4", "")
|
|
428
|
+
assertBadNetmask("1.2.3.4", "-1")
|
|
429
|
+
assertBadNetmask("1.2.3.4", "+1")
|
|
430
|
+
assertBadNetmask("1.2.3.4", " 1 ")
|
|
431
|
+
assertBadNetmask("1.2.3.4", "0x1")
|
|
432
|
+
assertBadNetmask("1.2.3.4", "33")
|
|
433
|
+
assertBadNetmask("1.2.3.4", "254.254.255.256")
|
|
434
|
+
assertBadNetmask("1.2.3.4", "1.a.2.3")
|
|
435
|
+
assertBadNetmask("1.1.1.1", "254.xyz.2.3")
|
|
436
|
+
assertBadNetmask("1.1.1.1", "240.255.0.0")
|
|
437
|
+
assertBadNetmask("1.1.1.1", "255.254.128.0")
|
|
438
|
+
assertBadNetmask("1.1.1.1", "0.1.127.255")
|
|
439
|
+
assertBadNetmask("1.1.1.1", "pudding")
|
|
440
|
+
assertBadNetmask("1.1.1.1", "::")
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
class InterfaceTestCase_v4(BaseTestCase, NetmaskTestMixin_v4):
|
|
444
|
+
factory = ipaddress.IPv4Interface
|
|
445
|
+
|
|
446
|
+
class NetworkTestCase_v4(BaseTestCase, NetmaskTestMixin_v4):
|
|
447
|
+
factory = ipaddress.IPv4Network
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
class NetmaskTestMixin_v6(CommonTestMixin_v6):
|
|
451
|
+
"""Input validation on interfaces and networks is very similar"""
|
|
452
|
+
|
|
453
|
+
def test_split_netmask(self):
|
|
454
|
+
addr = "cafe:cafe::/128/190"
|
|
455
|
+
with self.assertAddressError("Only one '/' permitted in %r" % addr):
|
|
456
|
+
self.factory(addr)
|
|
457
|
+
|
|
458
|
+
def test_address_errors(self):
|
|
459
|
+
def assertBadAddress(addr, details):
|
|
460
|
+
with self.assertAddressError(details):
|
|
461
|
+
self.factory(addr)
|
|
462
|
+
|
|
463
|
+
assertBadAddress("/", "Address cannot be empty")
|
|
464
|
+
assertBadAddress("/8", "Address cannot be empty")
|
|
465
|
+
assertBadAddress("google.com", "At least 3 parts")
|
|
466
|
+
assertBadAddress("1.2.3.4", "At least 3 parts")
|
|
467
|
+
assertBadAddress("10/8", "At least 3 parts")
|
|
468
|
+
assertBadAddress("1234:axy::b", "Only hex digits")
|
|
469
|
+
|
|
470
|
+
def test_valid_netmask(self):
|
|
471
|
+
# We only support CIDR for IPv6, because expanded netmasks are not
|
|
472
|
+
# standard notation.
|
|
473
|
+
self.assertEqual(str(self.factory('2001:db8::/32')), '2001:db8::/32')
|
|
474
|
+
for i in range(0, 129):
|
|
475
|
+
# Generate and re-parse the CIDR format (trivial).
|
|
476
|
+
net_str = '::/%d' % i
|
|
477
|
+
self.assertEqual(str(self.factory(net_str)), net_str)
|
|
478
|
+
# Zero prefix is treated as decimal.
|
|
479
|
+
self.assertEqual(str(self.factory('::/0%d' % i)), net_str)
|
|
480
|
+
|
|
481
|
+
def test_netmask_errors(self):
|
|
482
|
+
def assertBadNetmask(addr, netmask):
|
|
483
|
+
msg = "%r is not a valid netmask" % netmask
|
|
484
|
+
with self.assertNetmaskError(re.escape(msg)):
|
|
485
|
+
self.factory("%s/%s" % (addr, netmask))
|
|
486
|
+
|
|
487
|
+
assertBadNetmask("::1", "")
|
|
488
|
+
assertBadNetmask("::1", "::1")
|
|
489
|
+
assertBadNetmask("::1", "1::")
|
|
490
|
+
assertBadNetmask("::1", "-1")
|
|
491
|
+
assertBadNetmask("::1", "+1")
|
|
492
|
+
assertBadNetmask("::1", " 1 ")
|
|
493
|
+
assertBadNetmask("::1", "0x1")
|
|
494
|
+
assertBadNetmask("::1", "129")
|
|
495
|
+
assertBadNetmask("::1", "1.2.3.4")
|
|
496
|
+
assertBadNetmask("::1", "pudding")
|
|
497
|
+
assertBadNetmask("::", "::")
|
|
498
|
+
|
|
499
|
+
class InterfaceTestCase_v6(BaseTestCase, NetmaskTestMixin_v6):
|
|
500
|
+
factory = ipaddress.IPv6Interface
|
|
501
|
+
|
|
502
|
+
class NetworkTestCase_v6(BaseTestCase, NetmaskTestMixin_v6):
|
|
503
|
+
factory = ipaddress.IPv6Network
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
class FactoryFunctionErrors(BaseTestCase):
|
|
507
|
+
|
|
508
|
+
def assertFactoryError(self, factory, kind):
|
|
509
|
+
"""Ensure a clean ValueError with the expected message"""
|
|
510
|
+
addr = "camelot"
|
|
511
|
+
msg = '%r does not appear to be an IPv4 or IPv6 %s'
|
|
512
|
+
with self.assertCleanError(ValueError, msg, addr, kind):
|
|
513
|
+
factory(addr)
|
|
514
|
+
|
|
515
|
+
def test_ip_address(self):
|
|
516
|
+
self.assertFactoryError(ipaddress.ip_address, "address")
|
|
517
|
+
|
|
518
|
+
def test_ip_interface(self):
|
|
519
|
+
self.assertFactoryError(ipaddress.ip_interface, "interface")
|
|
520
|
+
|
|
521
|
+
def test_ip_network(self):
|
|
522
|
+
self.assertFactoryError(ipaddress.ip_network, "network")
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
class ComparisonTests(unittest.TestCase):
|
|
526
|
+
|
|
527
|
+
v4addr = ipaddress.IPv4Address(1)
|
|
528
|
+
v4net = ipaddress.IPv4Network(1)
|
|
529
|
+
v4intf = ipaddress.IPv4Interface(1)
|
|
530
|
+
v6addr = ipaddress.IPv6Address(1)
|
|
531
|
+
v6net = ipaddress.IPv6Network(1)
|
|
532
|
+
v6intf = ipaddress.IPv6Interface(1)
|
|
533
|
+
|
|
534
|
+
v4_addresses = [v4addr, v4intf]
|
|
535
|
+
v4_objects = v4_addresses + [v4net]
|
|
536
|
+
v6_addresses = [v6addr, v6intf]
|
|
537
|
+
v6_objects = v6_addresses + [v6net]
|
|
538
|
+
objects = v4_objects + v6_objects
|
|
539
|
+
|
|
540
|
+
def test_foreign_type_equality(self):
|
|
541
|
+
# __eq__ should never raise TypeError directly
|
|
542
|
+
other = object()
|
|
543
|
+
for obj in self.objects:
|
|
544
|
+
self.assertNotEqual(obj, other)
|
|
545
|
+
self.assertFalse(obj == other)
|
|
546
|
+
self.assertEqual(obj.__eq__(other), NotImplemented)
|
|
547
|
+
self.assertEqual(obj.__ne__(other), NotImplemented)
|
|
548
|
+
|
|
549
|
+
def test_mixed_type_equality(self):
|
|
550
|
+
# Ensure none of the internal objects accidentally
|
|
551
|
+
# expose the right set of attributes to become "equal"
|
|
552
|
+
for lhs in self.objects:
|
|
553
|
+
for rhs in self.objects:
|
|
554
|
+
if lhs is rhs:
|
|
555
|
+
continue
|
|
556
|
+
self.assertNotEqual(lhs, rhs)
|
|
557
|
+
|
|
558
|
+
def test_containment(self):
|
|
559
|
+
for obj in self.v4_addresses:
|
|
560
|
+
self.assertIn(obj, self.v4net)
|
|
561
|
+
for obj in self.v6_addresses:
|
|
562
|
+
self.assertIn(obj, self.v6net)
|
|
563
|
+
for obj in self.v4_objects + [self.v6net]:
|
|
564
|
+
self.assertNotIn(obj, self.v6net)
|
|
565
|
+
for obj in self.v6_objects + [self.v4net]:
|
|
566
|
+
self.assertNotIn(obj, self.v4net)
|
|
567
|
+
|
|
568
|
+
def test_mixed_type_ordering(self):
|
|
569
|
+
for lhs in self.objects:
|
|
570
|
+
for rhs in self.objects:
|
|
571
|
+
if isinstance(lhs, type(rhs)) or isinstance(rhs, type(lhs)):
|
|
572
|
+
continue
|
|
573
|
+
self.assertRaises(TypeError, lambda: lhs < rhs)
|
|
574
|
+
self.assertRaises(TypeError, lambda: lhs > rhs)
|
|
575
|
+
self.assertRaises(TypeError, lambda: lhs <= rhs)
|
|
576
|
+
self.assertRaises(TypeError, lambda: lhs >= rhs)
|
|
577
|
+
|
|
578
|
+
def test_mixed_type_key(self):
|
|
579
|
+
# with get_mixed_type_key, you can sort addresses and network.
|
|
580
|
+
v4_ordered = [self.v4addr, self.v4net, self.v4intf]
|
|
581
|
+
v6_ordered = [self.v6addr, self.v6net, self.v6intf]
|
|
582
|
+
self.assertEqual(v4_ordered,
|
|
583
|
+
sorted(self.v4_objects,
|
|
584
|
+
key=ipaddress.get_mixed_type_key))
|
|
585
|
+
self.assertEqual(v6_ordered,
|
|
586
|
+
sorted(self.v6_objects,
|
|
587
|
+
key=ipaddress.get_mixed_type_key))
|
|
588
|
+
self.assertEqual(v4_ordered + v6_ordered,
|
|
589
|
+
sorted(self.objects,
|
|
590
|
+
key=ipaddress.get_mixed_type_key))
|
|
591
|
+
self.assertEqual(NotImplemented, ipaddress.get_mixed_type_key(object))
|
|
592
|
+
|
|
593
|
+
def test_incompatible_versions(self):
|
|
594
|
+
# These should always raise TypeError
|
|
595
|
+
v4addr = ipaddress.ip_address('1.1.1.1')
|
|
596
|
+
v4net = ipaddress.ip_network('1.1.1.1')
|
|
597
|
+
v6addr = ipaddress.ip_address('::1')
|
|
598
|
+
v6net = ipaddress.ip_address('::1')
|
|
599
|
+
|
|
600
|
+
self.assertRaises(TypeError, v4addr.__lt__, v6addr)
|
|
601
|
+
self.assertRaises(TypeError, v4addr.__gt__, v6addr)
|
|
602
|
+
self.assertRaises(TypeError, v4net.__lt__, v6net)
|
|
603
|
+
self.assertRaises(TypeError, v4net.__gt__, v6net)
|
|
604
|
+
|
|
605
|
+
self.assertRaises(TypeError, v6addr.__lt__, v4addr)
|
|
606
|
+
self.assertRaises(TypeError, v6addr.__gt__, v4addr)
|
|
607
|
+
self.assertRaises(TypeError, v6net.__lt__, v4net)
|
|
608
|
+
self.assertRaises(TypeError, v6net.__gt__, v4net)
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
class IpaddrUnitTest(unittest.TestCase):
|
|
613
|
+
|
|
614
|
+
def setUp(self):
|
|
615
|
+
self.ipv4_address = ipaddress.IPv4Address('1.2.3.4')
|
|
616
|
+
self.ipv4_interface = ipaddress.IPv4Interface('1.2.3.4/24')
|
|
617
|
+
self.ipv4_network = ipaddress.IPv4Network('1.2.3.0/24')
|
|
618
|
+
#self.ipv4_hostmask = ipaddress.IPv4Interface('10.0.0.1/0.255.255.255')
|
|
619
|
+
self.ipv6_address = ipaddress.IPv6Interface(
|
|
620
|
+
'2001:658:22a:cafe:200:0:0:1')
|
|
621
|
+
self.ipv6_interface = ipaddress.IPv6Interface(
|
|
622
|
+
'2001:658:22a:cafe:200:0:0:1/64')
|
|
623
|
+
self.ipv6_network = ipaddress.IPv6Network('2001:658:22a:cafe::/64')
|
|
624
|
+
|
|
625
|
+
def testRepr(self):
|
|
626
|
+
self.assertEqual("IPv4Interface('1.2.3.4/32')",
|
|
627
|
+
repr(ipaddress.IPv4Interface('1.2.3.4')))
|
|
628
|
+
self.assertEqual("IPv6Interface('::1/128')",
|
|
629
|
+
repr(ipaddress.IPv6Interface('::1')))
|
|
630
|
+
|
|
631
|
+
# issue57
|
|
632
|
+
def testAddressIntMath(self):
|
|
633
|
+
self.assertEqual(ipaddress.IPv4Address('1.1.1.1') + 255,
|
|
634
|
+
ipaddress.IPv4Address('1.1.2.0'))
|
|
635
|
+
self.assertEqual(ipaddress.IPv4Address('1.1.1.1') - 256,
|
|
636
|
+
ipaddress.IPv4Address('1.1.0.1'))
|
|
637
|
+
self.assertEqual(ipaddress.IPv6Address('::1') + (2**16 - 2),
|
|
638
|
+
ipaddress.IPv6Address('::ffff'))
|
|
639
|
+
self.assertEqual(ipaddress.IPv6Address('::ffff') - (2**16 - 2),
|
|
640
|
+
ipaddress.IPv6Address('::1'))
|
|
641
|
+
|
|
642
|
+
def testInvalidIntToBytes(self):
|
|
643
|
+
self.assertRaises(ValueError, ipaddress.v4_int_to_packed, -1)
|
|
644
|
+
self.assertRaises(ValueError, ipaddress.v4_int_to_packed,
|
|
645
|
+
2 ** ipaddress.IPV4LENGTH)
|
|
646
|
+
self.assertRaises(ValueError, ipaddress.v6_int_to_packed, -1)
|
|
647
|
+
self.assertRaises(ValueError, ipaddress.v6_int_to_packed,
|
|
648
|
+
2 ** ipaddress.IPV6LENGTH)
|
|
649
|
+
|
|
650
|
+
def testInternals(self):
|
|
651
|
+
first, last = ipaddress._find_address_range([
|
|
652
|
+
ipaddress.IPv4Address('10.10.10.10'),
|
|
653
|
+
ipaddress.IPv4Address('10.10.10.12')])
|
|
654
|
+
self.assertEqual(first, last)
|
|
655
|
+
self.assertEqual(128, ipaddress._count_righthand_zero_bits(0, 128))
|
|
656
|
+
self.assertEqual("IPv4Network('1.2.3.0/24')", repr(self.ipv4_network))
|
|
657
|
+
|
|
658
|
+
def testMissingAddressVersion(self):
|
|
659
|
+
class Broken(ipaddress._BaseAddress):
|
|
660
|
+
pass
|
|
661
|
+
broken = Broken('127.0.0.1')
|
|
662
|
+
with self.assertRaisesRegex(NotImplementedError, "Broken.*version"):
|
|
663
|
+
broken.version
|
|
664
|
+
|
|
665
|
+
def testMissingNetworkVersion(self):
|
|
666
|
+
class Broken(ipaddress._BaseNetwork):
|
|
667
|
+
pass
|
|
668
|
+
broken = Broken('127.0.0.1')
|
|
669
|
+
with self.assertRaisesRegex(NotImplementedError, "Broken.*version"):
|
|
670
|
+
broken.version
|
|
671
|
+
|
|
672
|
+
def testMissingAddressClass(self):
|
|
673
|
+
class Broken(ipaddress._BaseNetwork):
|
|
674
|
+
pass
|
|
675
|
+
broken = Broken('127.0.0.1')
|
|
676
|
+
with self.assertRaisesRegex(NotImplementedError, "Broken.*address"):
|
|
677
|
+
broken._address_class
|
|
678
|
+
|
|
679
|
+
def testGetNetwork(self):
|
|
680
|
+
self.assertEqual(int(self.ipv4_network.network_address), 16909056)
|
|
681
|
+
self.assertEqual(str(self.ipv4_network.network_address), '1.2.3.0')
|
|
682
|
+
|
|
683
|
+
self.assertEqual(int(self.ipv6_network.network_address),
|
|
684
|
+
42540616829182469433403647294022090752)
|
|
685
|
+
self.assertEqual(str(self.ipv6_network.network_address),
|
|
686
|
+
'2001:658:22a:cafe::')
|
|
687
|
+
self.assertEqual(str(self.ipv6_network.hostmask),
|
|
688
|
+
'::ffff:ffff:ffff:ffff')
|
|
689
|
+
|
|
690
|
+
def testIpFromInt(self):
|
|
691
|
+
self.assertEqual(self.ipv4_interface._ip,
|
|
692
|
+
ipaddress.IPv4Interface(16909060)._ip)
|
|
693
|
+
|
|
694
|
+
ipv4 = ipaddress.ip_network('1.2.3.4')
|
|
695
|
+
ipv6 = ipaddress.ip_network('2001:658:22a:cafe:200:0:0:1')
|
|
696
|
+
self.assertEqual(ipv4, ipaddress.ip_network(int(ipv4.network_address)))
|
|
697
|
+
self.assertEqual(ipv6, ipaddress.ip_network(int(ipv6.network_address)))
|
|
698
|
+
|
|
699
|
+
v6_int = 42540616829182469433547762482097946625
|
|
700
|
+
self.assertEqual(self.ipv6_interface._ip,
|
|
701
|
+
ipaddress.IPv6Interface(v6_int)._ip)
|
|
702
|
+
|
|
703
|
+
self.assertEqual(ipaddress.ip_network(self.ipv4_address._ip).version,
|
|
704
|
+
4)
|
|
705
|
+
self.assertEqual(ipaddress.ip_network(self.ipv6_address._ip).version,
|
|
706
|
+
6)
|
|
707
|
+
|
|
708
|
+
def testIpFromPacked(self):
|
|
709
|
+
address = ipaddress.ip_address
|
|
710
|
+
self.assertEqual(self.ipv4_interface._ip,
|
|
711
|
+
ipaddress.ip_interface(b'\x01\x02\x03\x04')._ip)
|
|
712
|
+
self.assertEqual(address('255.254.253.252'),
|
|
713
|
+
address(b'\xff\xfe\xfd\xfc'))
|
|
714
|
+
self.assertEqual(self.ipv6_interface.ip,
|
|
715
|
+
ipaddress.ip_interface(
|
|
716
|
+
b'\x20\x01\x06\x58\x02\x2a\xca\xfe'
|
|
717
|
+
b'\x02\x00\x00\x00\x00\x00\x00\x01').ip)
|
|
718
|
+
self.assertEqual(address('ffff:2:3:4:ffff::'),
|
|
719
|
+
address(b'\xff\xff\x00\x02\x00\x03\x00\x04' +
|
|
720
|
+
b'\xff\xff' + b'\x00' * 6))
|
|
721
|
+
self.assertEqual(address('::'),
|
|
722
|
+
address(b'\x00' * 16))
|
|
723
|
+
|
|
724
|
+
def testGetIp(self):
|
|
725
|
+
self.assertEqual(int(self.ipv4_interface.ip), 16909060)
|
|
726
|
+
self.assertEqual(str(self.ipv4_interface.ip), '1.2.3.4')
|
|
727
|
+
|
|
728
|
+
self.assertEqual(int(self.ipv6_interface.ip),
|
|
729
|
+
42540616829182469433547762482097946625)
|
|
730
|
+
self.assertEqual(str(self.ipv6_interface.ip),
|
|
731
|
+
'2001:658:22a:cafe:200::1')
|
|
732
|
+
|
|
733
|
+
def testGetNetmask(self):
|
|
734
|
+
self.assertEqual(int(self.ipv4_network.netmask), 4294967040)
|
|
735
|
+
self.assertEqual(str(self.ipv4_network.netmask), '255.255.255.0')
|
|
736
|
+
self.assertEqual(int(self.ipv6_network.netmask),
|
|
737
|
+
340282366920938463444927863358058659840)
|
|
738
|
+
self.assertEqual(self.ipv6_network.prefixlen, 64)
|
|
739
|
+
|
|
740
|
+
def testZeroNetmask(self):
|
|
741
|
+
ipv4_zero_netmask = ipaddress.IPv4Interface('1.2.3.4/0')
|
|
742
|
+
self.assertEqual(int(ipv4_zero_netmask.network.netmask), 0)
|
|
743
|
+
self.assertEqual(ipv4_zero_netmask._prefix_from_prefix_string('0'), 0)
|
|
744
|
+
self.assertTrue(ipv4_zero_netmask._is_valid_netmask('0'))
|
|
745
|
+
self.assertTrue(ipv4_zero_netmask._is_valid_netmask('0.0.0.0'))
|
|
746
|
+
self.assertFalse(ipv4_zero_netmask._is_valid_netmask('invalid'))
|
|
747
|
+
|
|
748
|
+
ipv6_zero_netmask = ipaddress.IPv6Interface('::1/0')
|
|
749
|
+
self.assertEqual(int(ipv6_zero_netmask.network.netmask), 0)
|
|
750
|
+
self.assertEqual(ipv6_zero_netmask._prefix_from_prefix_string('0'), 0)
|
|
751
|
+
|
|
752
|
+
def testIPv4NetAndHostmasks(self):
|
|
753
|
+
net = self.ipv4_network
|
|
754
|
+
self.assertFalse(net._is_valid_netmask('invalid'))
|
|
755
|
+
self.assertTrue(net._is_valid_netmask('128.128.128.128'))
|
|
756
|
+
self.assertFalse(net._is_valid_netmask('128.128.128.127'))
|
|
757
|
+
self.assertFalse(net._is_valid_netmask('128.128.128.255'))
|
|
758
|
+
self.assertTrue(net._is_valid_netmask('255.128.128.128'))
|
|
759
|
+
|
|
760
|
+
self.assertFalse(net._is_hostmask('invalid'))
|
|
761
|
+
self.assertTrue(net._is_hostmask('128.255.255.255'))
|
|
762
|
+
self.assertFalse(net._is_hostmask('255.255.255.255'))
|
|
763
|
+
self.assertFalse(net._is_hostmask('1.2.3.4'))
|
|
764
|
+
|
|
765
|
+
net = ipaddress.IPv4Network('127.0.0.0/0.0.0.255')
|
|
766
|
+
self.assertEqual(net.prefixlen, 24)
|
|
767
|
+
|
|
768
|
+
def testGetBroadcast(self):
|
|
769
|
+
self.assertEqual(int(self.ipv4_network.broadcast_address), 16909311)
|
|
770
|
+
self.assertEqual(str(self.ipv4_network.broadcast_address), '1.2.3.255')
|
|
771
|
+
|
|
772
|
+
self.assertEqual(int(self.ipv6_network.broadcast_address),
|
|
773
|
+
42540616829182469451850391367731642367)
|
|
774
|
+
self.assertEqual(str(self.ipv6_network.broadcast_address),
|
|
775
|
+
'2001:658:22a:cafe:ffff:ffff:ffff:ffff')
|
|
776
|
+
|
|
777
|
+
def testGetPrefixlen(self):
|
|
778
|
+
self.assertEqual(self.ipv4_interface.network.prefixlen, 24)
|
|
779
|
+
self.assertEqual(self.ipv6_interface.network.prefixlen, 64)
|
|
780
|
+
|
|
781
|
+
def testGetSupernet(self):
|
|
782
|
+
self.assertEqual(self.ipv4_network.supernet().prefixlen, 23)
|
|
783
|
+
self.assertEqual(str(self.ipv4_network.supernet().network_address),
|
|
784
|
+
'1.2.2.0')
|
|
785
|
+
self.assertEqual(
|
|
786
|
+
ipaddress.IPv4Interface('0.0.0.0/0').network.supernet(),
|
|
787
|
+
ipaddress.IPv4Network('0.0.0.0/0'))
|
|
788
|
+
|
|
789
|
+
self.assertEqual(self.ipv6_network.supernet().prefixlen, 63)
|
|
790
|
+
self.assertEqual(str(self.ipv6_network.supernet().network_address),
|
|
791
|
+
'2001:658:22a:cafe::')
|
|
792
|
+
self.assertEqual(ipaddress.IPv6Interface('::0/0').network.supernet(),
|
|
793
|
+
ipaddress.IPv6Network('::0/0'))
|
|
794
|
+
|
|
795
|
+
def testGetSupernet3(self):
|
|
796
|
+
self.assertEqual(self.ipv4_network.supernet(3).prefixlen, 21)
|
|
797
|
+
self.assertEqual(str(self.ipv4_network.supernet(3).network_address),
|
|
798
|
+
'1.2.0.0')
|
|
799
|
+
|
|
800
|
+
self.assertEqual(self.ipv6_network.supernet(3).prefixlen, 61)
|
|
801
|
+
self.assertEqual(str(self.ipv6_network.supernet(3).network_address),
|
|
802
|
+
'2001:658:22a:caf8::')
|
|
803
|
+
|
|
804
|
+
def testGetSupernet4(self):
|
|
805
|
+
self.assertRaises(ValueError, self.ipv4_network.supernet,
|
|
806
|
+
prefixlen_diff=2, new_prefix=1)
|
|
807
|
+
self.assertRaises(ValueError, self.ipv4_network.supernet,
|
|
808
|
+
new_prefix=25)
|
|
809
|
+
self.assertEqual(self.ipv4_network.supernet(prefixlen_diff=2),
|
|
810
|
+
self.ipv4_network.supernet(new_prefix=22))
|
|
811
|
+
|
|
812
|
+
self.assertRaises(ValueError, self.ipv6_network.supernet,
|
|
813
|
+
prefixlen_diff=2, new_prefix=1)
|
|
814
|
+
self.assertRaises(ValueError, self.ipv6_network.supernet,
|
|
815
|
+
new_prefix=65)
|
|
816
|
+
self.assertEqual(self.ipv6_network.supernet(prefixlen_diff=2),
|
|
817
|
+
self.ipv6_network.supernet(new_prefix=62))
|
|
818
|
+
|
|
819
|
+
def testHosts(self):
|
|
820
|
+
hosts = list(self.ipv4_network.hosts())
|
|
821
|
+
self.assertEqual(254, len(hosts))
|
|
822
|
+
self.assertEqual(ipaddress.IPv4Address('1.2.3.1'), hosts[0])
|
|
823
|
+
self.assertEqual(ipaddress.IPv4Address('1.2.3.254'), hosts[-1])
|
|
824
|
+
|
|
825
|
+
# special case where only 1 bit is left for address
|
|
826
|
+
self.assertEqual([ipaddress.IPv4Address('2.0.0.0'),
|
|
827
|
+
ipaddress.IPv4Address('2.0.0.1')],
|
|
828
|
+
list(ipaddress.ip_network('2.0.0.0/31').hosts()))
|
|
829
|
+
|
|
830
|
+
def testFancySubnetting(self):
|
|
831
|
+
self.assertEqual(sorted(self.ipv4_network.subnets(prefixlen_diff=3)),
|
|
832
|
+
sorted(self.ipv4_network.subnets(new_prefix=27)))
|
|
833
|
+
self.assertRaises(ValueError, list,
|
|
834
|
+
self.ipv4_network.subnets(new_prefix=23))
|
|
835
|
+
self.assertRaises(ValueError, list,
|
|
836
|
+
self.ipv4_network.subnets(prefixlen_diff=3,
|
|
837
|
+
new_prefix=27))
|
|
838
|
+
self.assertEqual(sorted(self.ipv6_network.subnets(prefixlen_diff=4)),
|
|
839
|
+
sorted(self.ipv6_network.subnets(new_prefix=68)))
|
|
840
|
+
self.assertRaises(ValueError, list,
|
|
841
|
+
self.ipv6_network.subnets(new_prefix=63))
|
|
842
|
+
self.assertRaises(ValueError, list,
|
|
843
|
+
self.ipv6_network.subnets(prefixlen_diff=4,
|
|
844
|
+
new_prefix=68))
|
|
845
|
+
|
|
846
|
+
def testGetSubnets(self):
|
|
847
|
+
self.assertEqual(list(self.ipv4_network.subnets())[0].prefixlen, 25)
|
|
848
|
+
self.assertEqual(str(list(
|
|
849
|
+
self.ipv4_network.subnets())[0].network_address),
|
|
850
|
+
'1.2.3.0')
|
|
851
|
+
self.assertEqual(str(list(
|
|
852
|
+
self.ipv4_network.subnets())[1].network_address),
|
|
853
|
+
'1.2.3.128')
|
|
854
|
+
|
|
855
|
+
self.assertEqual(list(self.ipv6_network.subnets())[0].prefixlen, 65)
|
|
856
|
+
|
|
857
|
+
def testGetSubnetForSingle32(self):
|
|
858
|
+
ip = ipaddress.IPv4Network('1.2.3.4/32')
|
|
859
|
+
subnets1 = [str(x) for x in ip.subnets()]
|
|
860
|
+
subnets2 = [str(x) for x in ip.subnets(2)]
|
|
861
|
+
self.assertEqual(subnets1, ['1.2.3.4/32'])
|
|
862
|
+
self.assertEqual(subnets1, subnets2)
|
|
863
|
+
|
|
864
|
+
def testGetSubnetForSingle128(self):
|
|
865
|
+
ip = ipaddress.IPv6Network('::1/128')
|
|
866
|
+
subnets1 = [str(x) for x in ip.subnets()]
|
|
867
|
+
subnets2 = [str(x) for x in ip.subnets(2)]
|
|
868
|
+
self.assertEqual(subnets1, ['::1/128'])
|
|
869
|
+
self.assertEqual(subnets1, subnets2)
|
|
870
|
+
|
|
871
|
+
def testSubnet2(self):
|
|
872
|
+
ips = [str(x) for x in self.ipv4_network.subnets(2)]
|
|
873
|
+
self.assertEqual(
|
|
874
|
+
ips,
|
|
875
|
+
['1.2.3.0/26', '1.2.3.64/26', '1.2.3.128/26', '1.2.3.192/26'])
|
|
876
|
+
|
|
877
|
+
ipsv6 = [str(x) for x in self.ipv6_network.subnets(2)]
|
|
878
|
+
self.assertEqual(
|
|
879
|
+
ipsv6,
|
|
880
|
+
['2001:658:22a:cafe::/66',
|
|
881
|
+
'2001:658:22a:cafe:4000::/66',
|
|
882
|
+
'2001:658:22a:cafe:8000::/66',
|
|
883
|
+
'2001:658:22a:cafe:c000::/66'])
|
|
884
|
+
|
|
885
|
+
def testSubnetFailsForLargeCidrDiff(self):
|
|
886
|
+
self.assertRaises(ValueError, list,
|
|
887
|
+
self.ipv4_interface.network.subnets(9))
|
|
888
|
+
self.assertRaises(ValueError, list,
|
|
889
|
+
self.ipv4_network.subnets(9))
|
|
890
|
+
self.assertRaises(ValueError, list,
|
|
891
|
+
self.ipv6_interface.network.subnets(65))
|
|
892
|
+
self.assertRaises(ValueError, list,
|
|
893
|
+
self.ipv6_network.subnets(65))
|
|
894
|
+
|
|
895
|
+
def testSupernetFailsForLargeCidrDiff(self):
|
|
896
|
+
self.assertRaises(ValueError,
|
|
897
|
+
self.ipv4_interface.network.supernet, 25)
|
|
898
|
+
self.assertRaises(ValueError,
|
|
899
|
+
self.ipv6_interface.network.supernet, 65)
|
|
900
|
+
|
|
901
|
+
def testSubnetFailsForNegativeCidrDiff(self):
|
|
902
|
+
self.assertRaises(ValueError, list,
|
|
903
|
+
self.ipv4_interface.network.subnets(-1))
|
|
904
|
+
self.assertRaises(ValueError, list,
|
|
905
|
+
self.ipv4_network.subnets(-1))
|
|
906
|
+
self.assertRaises(ValueError, list,
|
|
907
|
+
self.ipv6_interface.network.subnets(-1))
|
|
908
|
+
self.assertRaises(ValueError, list,
|
|
909
|
+
self.ipv6_network.subnets(-1))
|
|
910
|
+
|
|
911
|
+
def testGetNum_Addresses(self):
|
|
912
|
+
self.assertEqual(self.ipv4_network.num_addresses, 256)
|
|
913
|
+
self.assertEqual(list(self.ipv4_network.subnets())[0].num_addresses,
|
|
914
|
+
128)
|
|
915
|
+
self.assertEqual(self.ipv4_network.supernet().num_addresses, 512)
|
|
916
|
+
|
|
917
|
+
self.assertEqual(self.ipv6_network.num_addresses, 18446744073709551616)
|
|
918
|
+
self.assertEqual(list(self.ipv6_network.subnets())[0].num_addresses,
|
|
919
|
+
9223372036854775808)
|
|
920
|
+
self.assertEqual(self.ipv6_network.supernet().num_addresses,
|
|
921
|
+
36893488147419103232)
|
|
922
|
+
|
|
923
|
+
def testContains(self):
|
|
924
|
+
self.assertIn(ipaddress.IPv4Interface('1.2.3.128/25'),
|
|
925
|
+
self.ipv4_network)
|
|
926
|
+
self.assertNotIn(ipaddress.IPv4Interface('1.2.4.1/24'),
|
|
927
|
+
self.ipv4_network)
|
|
928
|
+
# We can test addresses and string as well.
|
|
929
|
+
addr1 = ipaddress.IPv4Address('1.2.3.37')
|
|
930
|
+
self.assertIn(addr1, self.ipv4_network)
|
|
931
|
+
# issue 61, bad network comparison on like-ip'd network objects
|
|
932
|
+
# with identical broadcast addresses.
|
|
933
|
+
self.assertFalse(ipaddress.IPv4Network('1.1.0.0/16').__contains__(
|
|
934
|
+
ipaddress.IPv4Network('1.0.0.0/15')))
|
|
935
|
+
|
|
936
|
+
def testNth(self):
|
|
937
|
+
self.assertEqual(str(self.ipv4_network[5]), '1.2.3.5')
|
|
938
|
+
self.assertRaises(IndexError, self.ipv4_network.__getitem__, 256)
|
|
939
|
+
|
|
940
|
+
self.assertEqual(str(self.ipv6_network[5]),
|
|
941
|
+
'2001:658:22a:cafe::5')
|
|
942
|
+
|
|
943
|
+
def testGetitem(self):
|
|
944
|
+
# http://code.google.com/p/ipaddr-py/issues/detail?id=15
|
|
945
|
+
addr = ipaddress.IPv4Network('172.31.255.128/255.255.255.240')
|
|
946
|
+
self.assertEqual(28, addr.prefixlen)
|
|
947
|
+
addr_list = list(addr)
|
|
948
|
+
self.assertEqual('172.31.255.128', str(addr_list[0]))
|
|
949
|
+
self.assertEqual('172.31.255.128', str(addr[0]))
|
|
950
|
+
self.assertEqual('172.31.255.143', str(addr_list[-1]))
|
|
951
|
+
self.assertEqual('172.31.255.143', str(addr[-1]))
|
|
952
|
+
self.assertEqual(addr_list[-1], addr[-1])
|
|
953
|
+
|
|
954
|
+
def testEqual(self):
|
|
955
|
+
self.assertTrue(self.ipv4_interface ==
|
|
956
|
+
ipaddress.IPv4Interface('1.2.3.4/24'))
|
|
957
|
+
self.assertFalse(self.ipv4_interface ==
|
|
958
|
+
ipaddress.IPv4Interface('1.2.3.4/23'))
|
|
959
|
+
self.assertFalse(self.ipv4_interface ==
|
|
960
|
+
ipaddress.IPv6Interface('::1.2.3.4/24'))
|
|
961
|
+
self.assertFalse(self.ipv4_interface == '')
|
|
962
|
+
self.assertFalse(self.ipv4_interface == [])
|
|
963
|
+
self.assertFalse(self.ipv4_interface == 2)
|
|
964
|
+
|
|
965
|
+
self.assertTrue(self.ipv6_interface ==
|
|
966
|
+
ipaddress.IPv6Interface('2001:658:22a:cafe:200::1/64'))
|
|
967
|
+
self.assertFalse(self.ipv6_interface ==
|
|
968
|
+
ipaddress.IPv6Interface('2001:658:22a:cafe:200::1/63'))
|
|
969
|
+
self.assertFalse(self.ipv6_interface ==
|
|
970
|
+
ipaddress.IPv4Interface('1.2.3.4/23'))
|
|
971
|
+
self.assertFalse(self.ipv6_interface == '')
|
|
972
|
+
self.assertFalse(self.ipv6_interface == [])
|
|
973
|
+
self.assertFalse(self.ipv6_interface == 2)
|
|
974
|
+
|
|
975
|
+
def testNotEqual(self):
|
|
976
|
+
self.assertFalse(self.ipv4_interface !=
|
|
977
|
+
ipaddress.IPv4Interface('1.2.3.4/24'))
|
|
978
|
+
self.assertTrue(self.ipv4_interface !=
|
|
979
|
+
ipaddress.IPv4Interface('1.2.3.4/23'))
|
|
980
|
+
self.assertTrue(self.ipv4_interface !=
|
|
981
|
+
ipaddress.IPv6Interface('::1.2.3.4/24'))
|
|
982
|
+
self.assertTrue(self.ipv4_interface != '')
|
|
983
|
+
self.assertTrue(self.ipv4_interface != [])
|
|
984
|
+
self.assertTrue(self.ipv4_interface != 2)
|
|
985
|
+
|
|
986
|
+
self.assertTrue(self.ipv4_address !=
|
|
987
|
+
ipaddress.IPv4Address('1.2.3.5'))
|
|
988
|
+
self.assertTrue(self.ipv4_address != '')
|
|
989
|
+
self.assertTrue(self.ipv4_address != [])
|
|
990
|
+
self.assertTrue(self.ipv4_address != 2)
|
|
991
|
+
|
|
992
|
+
self.assertFalse(self.ipv6_interface !=
|
|
993
|
+
ipaddress.IPv6Interface('2001:658:22a:cafe:200::1/64'))
|
|
994
|
+
self.assertTrue(self.ipv6_interface !=
|
|
995
|
+
ipaddress.IPv6Interface('2001:658:22a:cafe:200::1/63'))
|
|
996
|
+
self.assertTrue(self.ipv6_interface !=
|
|
997
|
+
ipaddress.IPv4Interface('1.2.3.4/23'))
|
|
998
|
+
self.assertTrue(self.ipv6_interface != '')
|
|
999
|
+
self.assertTrue(self.ipv6_interface != [])
|
|
1000
|
+
self.assertTrue(self.ipv6_interface != 2)
|
|
1001
|
+
|
|
1002
|
+
self.assertTrue(self.ipv6_address !=
|
|
1003
|
+
ipaddress.IPv4Address('1.2.3.4'))
|
|
1004
|
+
self.assertTrue(self.ipv6_address != '')
|
|
1005
|
+
self.assertTrue(self.ipv6_address != [])
|
|
1006
|
+
self.assertTrue(self.ipv6_address != 2)
|
|
1007
|
+
|
|
1008
|
+
def testSlash32Constructor(self):
|
|
1009
|
+
self.assertEqual(str(ipaddress.IPv4Interface(
|
|
1010
|
+
'1.2.3.4/255.255.255.255')), '1.2.3.4/32')
|
|
1011
|
+
|
|
1012
|
+
def testSlash128Constructor(self):
|
|
1013
|
+
self.assertEqual(str(ipaddress.IPv6Interface('::1/128')),
|
|
1014
|
+
'::1/128')
|
|
1015
|
+
|
|
1016
|
+
def testSlash0Constructor(self):
|
|
1017
|
+
self.assertEqual(str(ipaddress.IPv4Interface('1.2.3.4/0.0.0.0')),
|
|
1018
|
+
'1.2.3.4/0')
|
|
1019
|
+
|
|
1020
|
+
def testCollapsing(self):
|
|
1021
|
+
# test only IP addresses including some duplicates
|
|
1022
|
+
ip1 = ipaddress.IPv4Address('1.1.1.0')
|
|
1023
|
+
ip2 = ipaddress.IPv4Address('1.1.1.1')
|
|
1024
|
+
ip3 = ipaddress.IPv4Address('1.1.1.2')
|
|
1025
|
+
ip4 = ipaddress.IPv4Address('1.1.1.3')
|
|
1026
|
+
ip5 = ipaddress.IPv4Address('1.1.1.4')
|
|
1027
|
+
ip6 = ipaddress.IPv4Address('1.1.1.0')
|
|
1028
|
+
# check that addreses are subsumed properly.
|
|
1029
|
+
collapsed = ipaddress.collapse_addresses(
|
|
1030
|
+
[ip1, ip2, ip3, ip4, ip5, ip6])
|
|
1031
|
+
self.assertEqual(list(collapsed),
|
|
1032
|
+
[ipaddress.IPv4Network('1.1.1.0/30'),
|
|
1033
|
+
ipaddress.IPv4Network('1.1.1.4/32')])
|
|
1034
|
+
|
|
1035
|
+
# test a mix of IP addresses and networks including some duplicates
|
|
1036
|
+
ip1 = ipaddress.IPv4Address('1.1.1.0')
|
|
1037
|
+
ip2 = ipaddress.IPv4Address('1.1.1.1')
|
|
1038
|
+
ip3 = ipaddress.IPv4Address('1.1.1.2')
|
|
1039
|
+
ip4 = ipaddress.IPv4Address('1.1.1.3')
|
|
1040
|
+
#ip5 = ipaddress.IPv4Interface('1.1.1.4/30')
|
|
1041
|
+
#ip6 = ipaddress.IPv4Interface('1.1.1.4/30')
|
|
1042
|
+
# check that addreses are subsumed properly.
|
|
1043
|
+
collapsed = ipaddress.collapse_addresses([ip1, ip2, ip3, ip4])
|
|
1044
|
+
self.assertEqual(list(collapsed),
|
|
1045
|
+
[ipaddress.IPv4Network('1.1.1.0/30')])
|
|
1046
|
+
|
|
1047
|
+
# test only IP networks
|
|
1048
|
+
ip1 = ipaddress.IPv4Network('1.1.0.0/24')
|
|
1049
|
+
ip2 = ipaddress.IPv4Network('1.1.1.0/24')
|
|
1050
|
+
ip3 = ipaddress.IPv4Network('1.1.2.0/24')
|
|
1051
|
+
ip4 = ipaddress.IPv4Network('1.1.3.0/24')
|
|
1052
|
+
ip5 = ipaddress.IPv4Network('1.1.4.0/24')
|
|
1053
|
+
# stored in no particular order b/c we want CollapseAddr to call
|
|
1054
|
+
# [].sort
|
|
1055
|
+
ip6 = ipaddress.IPv4Network('1.1.0.0/22')
|
|
1056
|
+
# check that addreses are subsumed properly.
|
|
1057
|
+
collapsed = ipaddress.collapse_addresses([ip1, ip2, ip3, ip4, ip5,
|
|
1058
|
+
ip6])
|
|
1059
|
+
self.assertEqual(list(collapsed),
|
|
1060
|
+
[ipaddress.IPv4Network('1.1.0.0/22'),
|
|
1061
|
+
ipaddress.IPv4Network('1.1.4.0/24')])
|
|
1062
|
+
|
|
1063
|
+
# test that two addresses are supernet'ed properly
|
|
1064
|
+
collapsed = ipaddress.collapse_addresses([ip1, ip2])
|
|
1065
|
+
self.assertEqual(list(collapsed),
|
|
1066
|
+
[ipaddress.IPv4Network('1.1.0.0/23')])
|
|
1067
|
+
|
|
1068
|
+
# test same IP networks
|
|
1069
|
+
ip_same1 = ip_same2 = ipaddress.IPv4Network('1.1.1.1/32')
|
|
1070
|
+
self.assertEqual(list(ipaddress.collapse_addresses(
|
|
1071
|
+
[ip_same1, ip_same2])),
|
|
1072
|
+
[ip_same1])
|
|
1073
|
+
|
|
1074
|
+
# test same IP addresses
|
|
1075
|
+
ip_same1 = ip_same2 = ipaddress.IPv4Address('1.1.1.1')
|
|
1076
|
+
self.assertEqual(list(ipaddress.collapse_addresses(
|
|
1077
|
+
[ip_same1, ip_same2])),
|
|
1078
|
+
[ipaddress.ip_network('1.1.1.1/32')])
|
|
1079
|
+
ip1 = ipaddress.IPv6Network('2001::/100')
|
|
1080
|
+
ip2 = ipaddress.IPv6Network('2001::/120')
|
|
1081
|
+
ip3 = ipaddress.IPv6Network('2001::/96')
|
|
1082
|
+
# test that ipv6 addresses are subsumed properly.
|
|
1083
|
+
collapsed = ipaddress.collapse_addresses([ip1, ip2, ip3])
|
|
1084
|
+
self.assertEqual(list(collapsed), [ip3])
|
|
1085
|
+
|
|
1086
|
+
# the toejam test
|
|
1087
|
+
addr_tuples = [
|
|
1088
|
+
(ipaddress.ip_address('1.1.1.1'),
|
|
1089
|
+
ipaddress.ip_address('::1')),
|
|
1090
|
+
(ipaddress.IPv4Network('1.1.0.0/24'),
|
|
1091
|
+
ipaddress.IPv6Network('2001::/120')),
|
|
1092
|
+
(ipaddress.IPv4Network('1.1.0.0/32'),
|
|
1093
|
+
ipaddress.IPv6Network('2001::/128')),
|
|
1094
|
+
]
|
|
1095
|
+
for ip1, ip2 in addr_tuples:
|
|
1096
|
+
self.assertRaises(TypeError, ipaddress.collapse_addresses,
|
|
1097
|
+
[ip1, ip2])
|
|
1098
|
+
|
|
1099
|
+
def testSummarizing(self):
|
|
1100
|
+
#ip = ipaddress.ip_address
|
|
1101
|
+
#ipnet = ipaddress.ip_network
|
|
1102
|
+
summarize = ipaddress.summarize_address_range
|
|
1103
|
+
ip1 = ipaddress.ip_address('1.1.1.0')
|
|
1104
|
+
ip2 = ipaddress.ip_address('1.1.1.255')
|
|
1105
|
+
|
|
1106
|
+
# summarize works only for IPv4 & IPv6
|
|
1107
|
+
class IPv7Address(ipaddress.IPv6Address):
|
|
1108
|
+
@property
|
|
1109
|
+
def version(self):
|
|
1110
|
+
return 7
|
|
1111
|
+
ip_invalid1 = IPv7Address('::1')
|
|
1112
|
+
ip_invalid2 = IPv7Address('::1')
|
|
1113
|
+
self.assertRaises(ValueError, list,
|
|
1114
|
+
summarize(ip_invalid1, ip_invalid2))
|
|
1115
|
+
# test that a summary over ip4 & ip6 fails
|
|
1116
|
+
self.assertRaises(TypeError, list,
|
|
1117
|
+
summarize(ip1, ipaddress.IPv6Address('::1')))
|
|
1118
|
+
# test a /24 is summarized properly
|
|
1119
|
+
self.assertEqual(list(summarize(ip1, ip2))[0],
|
|
1120
|
+
ipaddress.ip_network('1.1.1.0/24'))
|
|
1121
|
+
# test an IPv4 range that isn't on a network byte boundary
|
|
1122
|
+
ip2 = ipaddress.ip_address('1.1.1.8')
|
|
1123
|
+
self.assertEqual(list(summarize(ip1, ip2)),
|
|
1124
|
+
[ipaddress.ip_network('1.1.1.0/29'),
|
|
1125
|
+
ipaddress.ip_network('1.1.1.8')])
|
|
1126
|
+
# all!
|
|
1127
|
+
ip1 = ipaddress.IPv4Address(0)
|
|
1128
|
+
ip2 = ipaddress.IPv4Address(ipaddress.IPv4Address._ALL_ONES)
|
|
1129
|
+
self.assertEqual([ipaddress.IPv4Network('0.0.0.0/0')],
|
|
1130
|
+
list(summarize(ip1, ip2)))
|
|
1131
|
+
|
|
1132
|
+
ip1 = ipaddress.ip_address('1::')
|
|
1133
|
+
ip2 = ipaddress.ip_address('1:ffff:ffff:ffff:ffff:ffff:ffff:ffff')
|
|
1134
|
+
# test a IPv6 is sumamrized properly
|
|
1135
|
+
self.assertEqual(list(summarize(ip1, ip2))[0],
|
|
1136
|
+
ipaddress.ip_network('1::/16'))
|
|
1137
|
+
# test an IPv6 range that isn't on a network byte boundary
|
|
1138
|
+
ip2 = ipaddress.ip_address('2::')
|
|
1139
|
+
self.assertEqual(list(summarize(ip1, ip2)),
|
|
1140
|
+
[ipaddress.ip_network('1::/16'),
|
|
1141
|
+
ipaddress.ip_network('2::/128')])
|
|
1142
|
+
|
|
1143
|
+
# test exception raised when first is greater than last
|
|
1144
|
+
self.assertRaises(ValueError, list,
|
|
1145
|
+
summarize(ipaddress.ip_address('1.1.1.0'),
|
|
1146
|
+
ipaddress.ip_address('1.1.0.0')))
|
|
1147
|
+
# test exception raised when first and last aren't IP addresses
|
|
1148
|
+
self.assertRaises(TypeError, list,
|
|
1149
|
+
summarize(ipaddress.ip_network('1.1.1.0'),
|
|
1150
|
+
ipaddress.ip_network('1.1.0.0')))
|
|
1151
|
+
self.assertRaises(TypeError, list,
|
|
1152
|
+
summarize(ipaddress.ip_network('1.1.1.0'),
|
|
1153
|
+
ipaddress.ip_network('1.1.0.0')))
|
|
1154
|
+
# test exception raised when first and last are not same version
|
|
1155
|
+
self.assertRaises(TypeError, list,
|
|
1156
|
+
summarize(ipaddress.ip_address('::'),
|
|
1157
|
+
ipaddress.ip_network('1.1.0.0')))
|
|
1158
|
+
|
|
1159
|
+
def testAddressComparison(self):
|
|
1160
|
+
self.assertTrue(ipaddress.ip_address('1.1.1.1') <=
|
|
1161
|
+
ipaddress.ip_address('1.1.1.1'))
|
|
1162
|
+
self.assertTrue(ipaddress.ip_address('1.1.1.1') <=
|
|
1163
|
+
ipaddress.ip_address('1.1.1.2'))
|
|
1164
|
+
self.assertTrue(ipaddress.ip_address('::1') <=
|
|
1165
|
+
ipaddress.ip_address('::1'))
|
|
1166
|
+
self.assertTrue(ipaddress.ip_address('::1') <=
|
|
1167
|
+
ipaddress.ip_address('::2'))
|
|
1168
|
+
|
|
1169
|
+
def testInterfaceComparison(self):
|
|
1170
|
+
self.assertTrue(ipaddress.ip_interface('1.1.1.1') <=
|
|
1171
|
+
ipaddress.ip_interface('1.1.1.1'))
|
|
1172
|
+
self.assertTrue(ipaddress.ip_interface('1.1.1.1') <=
|
|
1173
|
+
ipaddress.ip_interface('1.1.1.2'))
|
|
1174
|
+
self.assertTrue(ipaddress.ip_interface('::1') <=
|
|
1175
|
+
ipaddress.ip_interface('::1'))
|
|
1176
|
+
self.assertTrue(ipaddress.ip_interface('::1') <=
|
|
1177
|
+
ipaddress.ip_interface('::2'))
|
|
1178
|
+
|
|
1179
|
+
def testNetworkComparison(self):
|
|
1180
|
+
# ip1 and ip2 have the same network address
|
|
1181
|
+
ip1 = ipaddress.IPv4Network('1.1.1.0/24')
|
|
1182
|
+
ip2 = ipaddress.IPv4Network('1.1.1.0/32')
|
|
1183
|
+
ip3 = ipaddress.IPv4Network('1.1.2.0/24')
|
|
1184
|
+
|
|
1185
|
+
self.assertTrue(ip1 < ip3)
|
|
1186
|
+
self.assertTrue(ip3 > ip2)
|
|
1187
|
+
|
|
1188
|
+
self.assertEqual(ip1.compare_networks(ip1), 0)
|
|
1189
|
+
|
|
1190
|
+
# if addresses are the same, sort by netmask
|
|
1191
|
+
self.assertEqual(ip1.compare_networks(ip2), -1)
|
|
1192
|
+
self.assertEqual(ip2.compare_networks(ip1), 1)
|
|
1193
|
+
|
|
1194
|
+
self.assertEqual(ip1.compare_networks(ip3), -1)
|
|
1195
|
+
self.assertEqual(ip3.compare_networks(ip1), 1)
|
|
1196
|
+
self.assertTrue(ip1._get_networks_key() < ip3._get_networks_key())
|
|
1197
|
+
|
|
1198
|
+
ip1 = ipaddress.IPv6Network('2001:2000::/96')
|
|
1199
|
+
ip2 = ipaddress.IPv6Network('2001:2001::/96')
|
|
1200
|
+
ip3 = ipaddress.IPv6Network('2001:ffff:2000::/96')
|
|
1201
|
+
|
|
1202
|
+
self.assertTrue(ip1 < ip3)
|
|
1203
|
+
self.assertTrue(ip3 > ip2)
|
|
1204
|
+
self.assertEqual(ip1.compare_networks(ip3), -1)
|
|
1205
|
+
self.assertTrue(ip1._get_networks_key() < ip3._get_networks_key())
|
|
1206
|
+
|
|
1207
|
+
# Test comparing different protocols.
|
|
1208
|
+
# Should always raise a TypeError.
|
|
1209
|
+
self.assertRaises(TypeError,
|
|
1210
|
+
self.ipv4_network.compare_networks,
|
|
1211
|
+
self.ipv6_network)
|
|
1212
|
+
ipv6 = ipaddress.IPv6Interface('::/0')
|
|
1213
|
+
ipv4 = ipaddress.IPv4Interface('0.0.0.0/0')
|
|
1214
|
+
self.assertRaises(TypeError, ipv4.__lt__, ipv6)
|
|
1215
|
+
self.assertRaises(TypeError, ipv4.__gt__, ipv6)
|
|
1216
|
+
self.assertRaises(TypeError, ipv6.__lt__, ipv4)
|
|
1217
|
+
self.assertRaises(TypeError, ipv6.__gt__, ipv4)
|
|
1218
|
+
|
|
1219
|
+
# Regression test for issue 19.
|
|
1220
|
+
ip1 = ipaddress.ip_network('10.1.2.128/25')
|
|
1221
|
+
self.assertFalse(ip1 < ip1)
|
|
1222
|
+
self.assertFalse(ip1 > ip1)
|
|
1223
|
+
ip2 = ipaddress.ip_network('10.1.3.0/24')
|
|
1224
|
+
self.assertTrue(ip1 < ip2)
|
|
1225
|
+
self.assertFalse(ip2 < ip1)
|
|
1226
|
+
self.assertFalse(ip1 > ip2)
|
|
1227
|
+
self.assertTrue(ip2 > ip1)
|
|
1228
|
+
ip3 = ipaddress.ip_network('10.1.3.0/25')
|
|
1229
|
+
self.assertTrue(ip2 < ip3)
|
|
1230
|
+
self.assertFalse(ip3 < ip2)
|
|
1231
|
+
self.assertFalse(ip2 > ip3)
|
|
1232
|
+
self.assertTrue(ip3 > ip2)
|
|
1233
|
+
|
|
1234
|
+
# Regression test for issue 28.
|
|
1235
|
+
ip1 = ipaddress.ip_network('10.10.10.0/31')
|
|
1236
|
+
ip2 = ipaddress.ip_network('10.10.10.0')
|
|
1237
|
+
ip3 = ipaddress.ip_network('10.10.10.2/31')
|
|
1238
|
+
ip4 = ipaddress.ip_network('10.10.10.2')
|
|
1239
|
+
sorted = [ip1, ip2, ip3, ip4]
|
|
1240
|
+
unsorted = [ip2, ip4, ip1, ip3]
|
|
1241
|
+
unsorted.sort()
|
|
1242
|
+
self.assertEqual(sorted, unsorted)
|
|
1243
|
+
unsorted = [ip4, ip1, ip3, ip2]
|
|
1244
|
+
unsorted.sort()
|
|
1245
|
+
self.assertEqual(sorted, unsorted)
|
|
1246
|
+
self.assertRaises(TypeError, ip1.__lt__,
|
|
1247
|
+
ipaddress.ip_address('10.10.10.0'))
|
|
1248
|
+
self.assertRaises(TypeError, ip2.__lt__,
|
|
1249
|
+
ipaddress.ip_address('10.10.10.0'))
|
|
1250
|
+
|
|
1251
|
+
# <=, >=
|
|
1252
|
+
self.assertTrue(ipaddress.ip_network('1.1.1.1') <=
|
|
1253
|
+
ipaddress.ip_network('1.1.1.1'))
|
|
1254
|
+
self.assertTrue(ipaddress.ip_network('1.1.1.1') <=
|
|
1255
|
+
ipaddress.ip_network('1.1.1.2'))
|
|
1256
|
+
self.assertFalse(ipaddress.ip_network('1.1.1.2') <=
|
|
1257
|
+
ipaddress.ip_network('1.1.1.1'))
|
|
1258
|
+
self.assertTrue(ipaddress.ip_network('::1') <=
|
|
1259
|
+
ipaddress.ip_network('::1'))
|
|
1260
|
+
self.assertTrue(ipaddress.ip_network('::1') <=
|
|
1261
|
+
ipaddress.ip_network('::2'))
|
|
1262
|
+
self.assertFalse(ipaddress.ip_network('::2') <=
|
|
1263
|
+
ipaddress.ip_network('::1'))
|
|
1264
|
+
|
|
1265
|
+
def testStrictNetworks(self):
|
|
1266
|
+
self.assertRaises(ValueError, ipaddress.ip_network, '192.168.1.1/24')
|
|
1267
|
+
self.assertRaises(ValueError, ipaddress.ip_network, '::1/120')
|
|
1268
|
+
|
|
1269
|
+
def testOverlaps(self):
|
|
1270
|
+
other = ipaddress.IPv4Network('1.2.3.0/30')
|
|
1271
|
+
other2 = ipaddress.IPv4Network('1.2.2.0/24')
|
|
1272
|
+
other3 = ipaddress.IPv4Network('1.2.2.64/26')
|
|
1273
|
+
self.assertTrue(self.ipv4_network.overlaps(other))
|
|
1274
|
+
self.assertFalse(self.ipv4_network.overlaps(other2))
|
|
1275
|
+
self.assertTrue(other2.overlaps(other3))
|
|
1276
|
+
|
|
1277
|
+
def testEmbeddedIpv4(self):
|
|
1278
|
+
ipv4_string = '192.168.0.1'
|
|
1279
|
+
ipv4 = ipaddress.IPv4Interface(ipv4_string)
|
|
1280
|
+
v4compat_ipv6 = ipaddress.IPv6Interface('::%s' % ipv4_string)
|
|
1281
|
+
self.assertEqual(int(v4compat_ipv6.ip), int(ipv4.ip))
|
|
1282
|
+
v4mapped_ipv6 = ipaddress.IPv6Interface('::ffff:%s' % ipv4_string)
|
|
1283
|
+
self.assertNotEqual(v4mapped_ipv6.ip, ipv4.ip)
|
|
1284
|
+
self.assertRaises(ipaddress.AddressValueError, ipaddress.IPv6Interface,
|
|
1285
|
+
'2001:1.1.1.1:1.1.1.1')
|
|
1286
|
+
|
|
1287
|
+
# Issue 67: IPv6 with embedded IPv4 address not recognized.
|
|
1288
|
+
def testIPv6AddressTooLarge(self):
|
|
1289
|
+
# RFC4291 2.5.5.2
|
|
1290
|
+
self.assertEqual(ipaddress.ip_address('::FFFF:192.0.2.1'),
|
|
1291
|
+
ipaddress.ip_address('::FFFF:c000:201'))
|
|
1292
|
+
# RFC4291 2.2 (part 3) x::d.d.d.d
|
|
1293
|
+
self.assertEqual(ipaddress.ip_address('FFFF::192.0.2.1'),
|
|
1294
|
+
ipaddress.ip_address('FFFF::c000:201'))
|
|
1295
|
+
|
|
1296
|
+
def testIPVersion(self):
|
|
1297
|
+
self.assertEqual(self.ipv4_address.version, 4)
|
|
1298
|
+
self.assertEqual(self.ipv6_address.version, 6)
|
|
1299
|
+
|
|
1300
|
+
def testMaxPrefixLength(self):
|
|
1301
|
+
self.assertEqual(self.ipv4_interface.max_prefixlen, 32)
|
|
1302
|
+
self.assertEqual(self.ipv6_interface.max_prefixlen, 128)
|
|
1303
|
+
|
|
1304
|
+
def testPacked(self):
|
|
1305
|
+
self.assertEqual(self.ipv4_address.packed,
|
|
1306
|
+
b'\x01\x02\x03\x04')
|
|
1307
|
+
self.assertEqual(ipaddress.IPv4Interface('255.254.253.252').packed,
|
|
1308
|
+
b'\xff\xfe\xfd\xfc')
|
|
1309
|
+
self.assertEqual(self.ipv6_address.packed,
|
|
1310
|
+
b'\x20\x01\x06\x58\x02\x2a\xca\xfe'
|
|
1311
|
+
b'\x02\x00\x00\x00\x00\x00\x00\x01')
|
|
1312
|
+
self.assertEqual(ipaddress.IPv6Interface('ffff:2:3:4:ffff::').packed,
|
|
1313
|
+
b'\xff\xff\x00\x02\x00\x03\x00\x04\xff\xff'
|
|
1314
|
+
+ b'\x00' * 6)
|
|
1315
|
+
self.assertEqual(ipaddress.IPv6Interface('::1:0:0:0:0').packed,
|
|
1316
|
+
b'\x00' * 6 + b'\x00\x01' + b'\x00' * 8)
|
|
1317
|
+
|
|
1318
|
+
def testIpType(self):
|
|
1319
|
+
ipv4net = ipaddress.ip_network('1.2.3.4')
|
|
1320
|
+
ipv4addr = ipaddress.ip_address('1.2.3.4')
|
|
1321
|
+
ipv6net = ipaddress.ip_network('::1.2.3.4')
|
|
1322
|
+
ipv6addr = ipaddress.ip_address('::1.2.3.4')
|
|
1323
|
+
self.assertEqual(ipaddress.IPv4Network, type(ipv4net))
|
|
1324
|
+
self.assertEqual(ipaddress.IPv4Address, type(ipv4addr))
|
|
1325
|
+
self.assertEqual(ipaddress.IPv6Network, type(ipv6net))
|
|
1326
|
+
self.assertEqual(ipaddress.IPv6Address, type(ipv6addr))
|
|
1327
|
+
|
|
1328
|
+
def testReservedIpv4(self):
|
|
1329
|
+
# test networks
|
|
1330
|
+
self.assertEqual(True, ipaddress.ip_interface(
|
|
1331
|
+
'224.1.1.1/31').is_multicast)
|
|
1332
|
+
self.assertEqual(False, ipaddress.ip_network('240.0.0.0').is_multicast)
|
|
1333
|
+
self.assertEqual(True, ipaddress.ip_network('240.0.0.0').is_reserved)
|
|
1334
|
+
|
|
1335
|
+
self.assertEqual(True, ipaddress.ip_interface(
|
|
1336
|
+
'192.168.1.1/17').is_private)
|
|
1337
|
+
self.assertEqual(False, ipaddress.ip_network('192.169.0.0').is_private)
|
|
1338
|
+
self.assertEqual(True, ipaddress.ip_network(
|
|
1339
|
+
'10.255.255.255').is_private)
|
|
1340
|
+
self.assertEqual(False, ipaddress.ip_network('11.0.0.0').is_private)
|
|
1341
|
+
self.assertEqual(False, ipaddress.ip_network('11.0.0.0').is_reserved)
|
|
1342
|
+
self.assertEqual(True, ipaddress.ip_network(
|
|
1343
|
+
'172.31.255.255').is_private)
|
|
1344
|
+
self.assertEqual(False, ipaddress.ip_network('172.32.0.0').is_private)
|
|
1345
|
+
self.assertEqual(True,
|
|
1346
|
+
ipaddress.ip_network('169.254.1.0/24').is_link_local)
|
|
1347
|
+
|
|
1348
|
+
self.assertEqual(True,
|
|
1349
|
+
ipaddress.ip_interface(
|
|
1350
|
+
'169.254.100.200/24').is_link_local)
|
|
1351
|
+
self.assertEqual(False,
|
|
1352
|
+
ipaddress.ip_interface(
|
|
1353
|
+
'169.255.100.200/24').is_link_local)
|
|
1354
|
+
|
|
1355
|
+
self.assertEqual(True,
|
|
1356
|
+
ipaddress.ip_network(
|
|
1357
|
+
'127.100.200.254/32').is_loopback)
|
|
1358
|
+
self.assertEqual(True, ipaddress.ip_network(
|
|
1359
|
+
'127.42.0.0/16').is_loopback)
|
|
1360
|
+
self.assertEqual(False, ipaddress.ip_network('128.0.0.0').is_loopback)
|
|
1361
|
+
self.assertEqual(False,
|
|
1362
|
+
ipaddress.ip_network('100.64.0.0/10').is_private)
|
|
1363
|
+
self.assertEqual(False, ipaddress.ip_network('100.64.0.0/10').is_global)
|
|
1364
|
+
|
|
1365
|
+
self.assertEqual(True,
|
|
1366
|
+
ipaddress.ip_network('192.0.2.128/25').is_private)
|
|
1367
|
+
self.assertEqual(True,
|
|
1368
|
+
ipaddress.ip_network('192.0.3.0/24').is_global)
|
|
1369
|
+
|
|
1370
|
+
# test addresses
|
|
1371
|
+
self.assertEqual(True, ipaddress.ip_address('0.0.0.0').is_unspecified)
|
|
1372
|
+
self.assertEqual(True, ipaddress.ip_address('224.1.1.1').is_multicast)
|
|
1373
|
+
self.assertEqual(False, ipaddress.ip_address('240.0.0.0').is_multicast)
|
|
1374
|
+
self.assertEqual(True, ipaddress.ip_address('240.0.0.1').is_reserved)
|
|
1375
|
+
self.assertEqual(False,
|
|
1376
|
+
ipaddress.ip_address('239.255.255.255').is_reserved)
|
|
1377
|
+
|
|
1378
|
+
self.assertEqual(True, ipaddress.ip_address('192.168.1.1').is_private)
|
|
1379
|
+
self.assertEqual(False, ipaddress.ip_address('192.169.0.0').is_private)
|
|
1380
|
+
self.assertEqual(True, ipaddress.ip_address(
|
|
1381
|
+
'10.255.255.255').is_private)
|
|
1382
|
+
self.assertEqual(False, ipaddress.ip_address('11.0.0.0').is_private)
|
|
1383
|
+
self.assertEqual(True, ipaddress.ip_address(
|
|
1384
|
+
'172.31.255.255').is_private)
|
|
1385
|
+
self.assertEqual(False, ipaddress.ip_address('172.32.0.0').is_private)
|
|
1386
|
+
|
|
1387
|
+
self.assertEqual(True,
|
|
1388
|
+
ipaddress.ip_address('169.254.100.200').is_link_local)
|
|
1389
|
+
self.assertEqual(False,
|
|
1390
|
+
ipaddress.ip_address('169.255.100.200').is_link_local)
|
|
1391
|
+
|
|
1392
|
+
self.assertEqual(True,
|
|
1393
|
+
ipaddress.ip_address('127.100.200.254').is_loopback)
|
|
1394
|
+
self.assertEqual(True, ipaddress.ip_address('127.42.0.0').is_loopback)
|
|
1395
|
+
self.assertEqual(False, ipaddress.ip_address('128.0.0.0').is_loopback)
|
|
1396
|
+
self.assertEqual(True, ipaddress.ip_network('0.0.0.0').is_unspecified)
|
|
1397
|
+
|
|
1398
|
+
def testReservedIpv6(self):
|
|
1399
|
+
|
|
1400
|
+
self.assertEqual(True, ipaddress.ip_network('ffff::').is_multicast)
|
|
1401
|
+
self.assertEqual(True, ipaddress.ip_network(2**128 - 1).is_multicast)
|
|
1402
|
+
self.assertEqual(True, ipaddress.ip_network('ff00::').is_multicast)
|
|
1403
|
+
self.assertEqual(False, ipaddress.ip_network('fdff::').is_multicast)
|
|
1404
|
+
|
|
1405
|
+
self.assertEqual(True, ipaddress.ip_network('fecf::').is_site_local)
|
|
1406
|
+
self.assertEqual(True, ipaddress.ip_network(
|
|
1407
|
+
'feff:ffff:ffff:ffff::').is_site_local)
|
|
1408
|
+
self.assertEqual(False, ipaddress.ip_network(
|
|
1409
|
+
'fbf:ffff::').is_site_local)
|
|
1410
|
+
self.assertEqual(False, ipaddress.ip_network('ff00::').is_site_local)
|
|
1411
|
+
|
|
1412
|
+
self.assertEqual(True, ipaddress.ip_network('fc00::').is_private)
|
|
1413
|
+
self.assertEqual(True, ipaddress.ip_network(
|
|
1414
|
+
'fc00:ffff:ffff:ffff::').is_private)
|
|
1415
|
+
self.assertEqual(False, ipaddress.ip_network('fbff:ffff::').is_private)
|
|
1416
|
+
self.assertEqual(False, ipaddress.ip_network('fe00::').is_private)
|
|
1417
|
+
|
|
1418
|
+
self.assertEqual(True, ipaddress.ip_network('fea0::').is_link_local)
|
|
1419
|
+
self.assertEqual(True, ipaddress.ip_network(
|
|
1420
|
+
'febf:ffff::').is_link_local)
|
|
1421
|
+
self.assertEqual(False, ipaddress.ip_network(
|
|
1422
|
+
'fe7f:ffff::').is_link_local)
|
|
1423
|
+
self.assertEqual(False, ipaddress.ip_network('fec0::').is_link_local)
|
|
1424
|
+
|
|
1425
|
+
self.assertEqual(True, ipaddress.ip_interface('0:0::0:01').is_loopback)
|
|
1426
|
+
self.assertEqual(False, ipaddress.ip_interface('::1/127').is_loopback)
|
|
1427
|
+
self.assertEqual(False, ipaddress.ip_network('::').is_loopback)
|
|
1428
|
+
self.assertEqual(False, ipaddress.ip_network('::2').is_loopback)
|
|
1429
|
+
|
|
1430
|
+
self.assertEqual(True, ipaddress.ip_network('0::0').is_unspecified)
|
|
1431
|
+
self.assertEqual(False, ipaddress.ip_network('::1').is_unspecified)
|
|
1432
|
+
self.assertEqual(False, ipaddress.ip_network('::/127').is_unspecified)
|
|
1433
|
+
|
|
1434
|
+
self.assertEqual(True,
|
|
1435
|
+
ipaddress.ip_network('2001::1/128').is_private)
|
|
1436
|
+
self.assertEqual(True,
|
|
1437
|
+
ipaddress.ip_network('200::1/128').is_global)
|
|
1438
|
+
# test addresses
|
|
1439
|
+
self.assertEqual(True, ipaddress.ip_address('ffff::').is_multicast)
|
|
1440
|
+
self.assertEqual(True, ipaddress.ip_address(2**128 - 1).is_multicast)
|
|
1441
|
+
self.assertEqual(True, ipaddress.ip_address('ff00::').is_multicast)
|
|
1442
|
+
self.assertEqual(False, ipaddress.ip_address('fdff::').is_multicast)
|
|
1443
|
+
|
|
1444
|
+
self.assertEqual(True, ipaddress.ip_address('fecf::').is_site_local)
|
|
1445
|
+
self.assertEqual(True, ipaddress.ip_address(
|
|
1446
|
+
'feff:ffff:ffff:ffff::').is_site_local)
|
|
1447
|
+
self.assertEqual(False, ipaddress.ip_address(
|
|
1448
|
+
'fbf:ffff::').is_site_local)
|
|
1449
|
+
self.assertEqual(False, ipaddress.ip_address('ff00::').is_site_local)
|
|
1450
|
+
|
|
1451
|
+
self.assertEqual(True, ipaddress.ip_address('fc00::').is_private)
|
|
1452
|
+
self.assertEqual(True, ipaddress.ip_address(
|
|
1453
|
+
'fc00:ffff:ffff:ffff::').is_private)
|
|
1454
|
+
self.assertEqual(False, ipaddress.ip_address('fbff:ffff::').is_private)
|
|
1455
|
+
self.assertEqual(False, ipaddress.ip_address('fe00::').is_private)
|
|
1456
|
+
|
|
1457
|
+
self.assertEqual(True, ipaddress.ip_address('fea0::').is_link_local)
|
|
1458
|
+
self.assertEqual(True, ipaddress.ip_address(
|
|
1459
|
+
'febf:ffff::').is_link_local)
|
|
1460
|
+
self.assertEqual(False, ipaddress.ip_address(
|
|
1461
|
+
'fe7f:ffff::').is_link_local)
|
|
1462
|
+
self.assertEqual(False, ipaddress.ip_address('fec0::').is_link_local)
|
|
1463
|
+
|
|
1464
|
+
self.assertEqual(True, ipaddress.ip_address('0:0::0:01').is_loopback)
|
|
1465
|
+
self.assertEqual(True, ipaddress.ip_address('::1').is_loopback)
|
|
1466
|
+
self.assertEqual(False, ipaddress.ip_address('::2').is_loopback)
|
|
1467
|
+
|
|
1468
|
+
self.assertEqual(True, ipaddress.ip_address('0::0').is_unspecified)
|
|
1469
|
+
self.assertEqual(False, ipaddress.ip_address('::1').is_unspecified)
|
|
1470
|
+
|
|
1471
|
+
# some generic IETF reserved addresses
|
|
1472
|
+
self.assertEqual(True, ipaddress.ip_address('100::').is_reserved)
|
|
1473
|
+
self.assertEqual(True, ipaddress.ip_network('4000::1/128').is_reserved)
|
|
1474
|
+
|
|
1475
|
+
def testIpv4Mapped(self):
|
|
1476
|
+
self.assertEqual(
|
|
1477
|
+
ipaddress.ip_address('::ffff:192.168.1.1').ipv4_mapped,
|
|
1478
|
+
ipaddress.ip_address('192.168.1.1'))
|
|
1479
|
+
self.assertEqual(ipaddress.ip_address('::c0a8:101').ipv4_mapped, None)
|
|
1480
|
+
self.assertEqual(ipaddress.ip_address('::ffff:c0a8:101').ipv4_mapped,
|
|
1481
|
+
ipaddress.ip_address('192.168.1.1'))
|
|
1482
|
+
|
|
1483
|
+
def testAddrExclude(self):
|
|
1484
|
+
addr1 = ipaddress.ip_network('10.1.1.0/24')
|
|
1485
|
+
addr2 = ipaddress.ip_network('10.1.1.0/26')
|
|
1486
|
+
addr3 = ipaddress.ip_network('10.2.1.0/24')
|
|
1487
|
+
addr4 = ipaddress.ip_address('10.1.1.0')
|
|
1488
|
+
addr5 = ipaddress.ip_network('2001:db8::0/32')
|
|
1489
|
+
self.assertEqual(sorted(list(addr1.address_exclude(addr2))),
|
|
1490
|
+
[ipaddress.ip_network('10.1.1.64/26'),
|
|
1491
|
+
ipaddress.ip_network('10.1.1.128/25')])
|
|
1492
|
+
self.assertRaises(ValueError, list, addr1.address_exclude(addr3))
|
|
1493
|
+
self.assertRaises(TypeError, list, addr1.address_exclude(addr4))
|
|
1494
|
+
self.assertRaises(TypeError, list, addr1.address_exclude(addr5))
|
|
1495
|
+
self.assertEqual(list(addr1.address_exclude(addr1)), [])
|
|
1496
|
+
|
|
1497
|
+
def testHash(self):
|
|
1498
|
+
self.assertEqual(hash(ipaddress.ip_interface('10.1.1.0/24')),
|
|
1499
|
+
hash(ipaddress.ip_interface('10.1.1.0/24')))
|
|
1500
|
+
self.assertEqual(hash(ipaddress.ip_network('10.1.1.0/24')),
|
|
1501
|
+
hash(ipaddress.ip_network('10.1.1.0/24')))
|
|
1502
|
+
self.assertEqual(hash(ipaddress.ip_address('10.1.1.0')),
|
|
1503
|
+
hash(ipaddress.ip_address('10.1.1.0')))
|
|
1504
|
+
# i70
|
|
1505
|
+
self.assertEqual(hash(ipaddress.ip_address('1.2.3.4')),
|
|
1506
|
+
hash(ipaddress.ip_address(
|
|
1507
|
+
int(ipaddress.ip_address('1.2.3.4')._ip))))
|
|
1508
|
+
ip1 = ipaddress.ip_address('10.1.1.0')
|
|
1509
|
+
ip2 = ipaddress.ip_address('1::')
|
|
1510
|
+
dummy = {}
|
|
1511
|
+
dummy[self.ipv4_address] = None
|
|
1512
|
+
dummy[self.ipv6_address] = None
|
|
1513
|
+
dummy[ip1] = None
|
|
1514
|
+
dummy[ip2] = None
|
|
1515
|
+
self.assertIn(self.ipv4_address, dummy)
|
|
1516
|
+
self.assertIn(ip2, dummy)
|
|
1517
|
+
|
|
1518
|
+
def testIPBases(self):
|
|
1519
|
+
net = self.ipv4_network
|
|
1520
|
+
self.assertEqual('1.2.3.0/24', net.compressed)
|
|
1521
|
+
net = self.ipv6_network
|
|
1522
|
+
self.assertRaises(ValueError, net._string_from_ip_int, 2**128 + 1)
|
|
1523
|
+
|
|
1524
|
+
def testIPv6NetworkHelpers(self):
|
|
1525
|
+
net = self.ipv6_network
|
|
1526
|
+
self.assertEqual('2001:658:22a:cafe::/64', net.with_prefixlen)
|
|
1527
|
+
self.assertEqual('2001:658:22a:cafe::/ffff:ffff:ffff:ffff::',
|
|
1528
|
+
net.with_netmask)
|
|
1529
|
+
self.assertEqual('2001:658:22a:cafe::/::ffff:ffff:ffff:ffff',
|
|
1530
|
+
net.with_hostmask)
|
|
1531
|
+
self.assertEqual('2001:658:22a:cafe::/64', str(net))
|
|
1532
|
+
|
|
1533
|
+
def testIPv4NetworkHelpers(self):
|
|
1534
|
+
net = self.ipv4_network
|
|
1535
|
+
self.assertEqual('1.2.3.0/24', net.with_prefixlen)
|
|
1536
|
+
self.assertEqual('1.2.3.0/255.255.255.0', net.with_netmask)
|
|
1537
|
+
self.assertEqual('1.2.3.0/0.0.0.255', net.with_hostmask)
|
|
1538
|
+
self.assertEqual('1.2.3.0/24', str(net))
|
|
1539
|
+
|
|
1540
|
+
def testCopyConstructor(self):
|
|
1541
|
+
addr1 = ipaddress.ip_network('10.1.1.0/24')
|
|
1542
|
+
addr2 = ipaddress.ip_network(addr1)
|
|
1543
|
+
addr3 = ipaddress.ip_interface('2001:658:22a:cafe:200::1/64')
|
|
1544
|
+
addr4 = ipaddress.ip_interface(addr3)
|
|
1545
|
+
addr5 = ipaddress.IPv4Address('1.1.1.1')
|
|
1546
|
+
addr6 = ipaddress.IPv6Address('2001:658:22a:cafe:200::1')
|
|
1547
|
+
|
|
1548
|
+
self.assertEqual(addr1, addr2)
|
|
1549
|
+
self.assertEqual(addr3, addr4)
|
|
1550
|
+
self.assertEqual(addr5, ipaddress.IPv4Address(addr5))
|
|
1551
|
+
self.assertEqual(addr6, ipaddress.IPv6Address(addr6))
|
|
1552
|
+
|
|
1553
|
+
def testCompressIPv6Address(self):
|
|
1554
|
+
test_addresses = {
|
|
1555
|
+
'1:2:3:4:5:6:7:8': '1:2:3:4:5:6:7:8/128',
|
|
1556
|
+
'2001:0:0:4:0:0:0:8': '2001:0:0:4::8/128',
|
|
1557
|
+
'2001:0:0:4:5:6:7:8': '2001::4:5:6:7:8/128',
|
|
1558
|
+
'2001:0:3:4:5:6:7:8': '2001:0:3:4:5:6:7:8/128',
|
|
1559
|
+
'2001:0:3:4:5:6:7:8': '2001:0:3:4:5:6:7:8/128',
|
|
1560
|
+
'0:0:3:0:0:0:0:ffff': '0:0:3::ffff/128',
|
|
1561
|
+
'0:0:0:4:0:0:0:ffff': '::4:0:0:0:ffff/128',
|
|
1562
|
+
'0:0:0:0:5:0:0:ffff': '::5:0:0:ffff/128',
|
|
1563
|
+
'1:0:0:4:0:0:7:8': '1::4:0:0:7:8/128',
|
|
1564
|
+
'0:0:0:0:0:0:0:0': '::/128',
|
|
1565
|
+
'0:0:0:0:0:0:0:0/0': '::/0',
|
|
1566
|
+
'0:0:0:0:0:0:0:1': '::1/128',
|
|
1567
|
+
'2001:0658:022a:cafe:0000:0000:0000:0000/66':
|
|
1568
|
+
'2001:658:22a:cafe::/66',
|
|
1569
|
+
'::1.2.3.4': '::102:304/128',
|
|
1570
|
+
'1:2:3:4:5:ffff:1.2.3.4': '1:2:3:4:5:ffff:102:304/128',
|
|
1571
|
+
'::7:6:5:4:3:2:1': '0:7:6:5:4:3:2:1/128',
|
|
1572
|
+
'::7:6:5:4:3:2:0': '0:7:6:5:4:3:2:0/128',
|
|
1573
|
+
'7:6:5:4:3:2:1::': '7:6:5:4:3:2:1:0/128',
|
|
1574
|
+
'0:6:5:4:3:2:1::': '0:6:5:4:3:2:1:0/128',
|
|
1575
|
+
}
|
|
1576
|
+
for uncompressed, compressed in list(test_addresses.items()):
|
|
1577
|
+
self.assertEqual(compressed, str(ipaddress.IPv6Interface(
|
|
1578
|
+
uncompressed)))
|
|
1579
|
+
|
|
1580
|
+
def testExplodeShortHandIpStr(self):
|
|
1581
|
+
addr1 = ipaddress.IPv6Interface('2001::1')
|
|
1582
|
+
addr2 = ipaddress.IPv6Address('2001:0:5ef5:79fd:0:59d:a0e5:ba1')
|
|
1583
|
+
addr3 = ipaddress.IPv6Network('2001::/96')
|
|
1584
|
+
addr4 = ipaddress.IPv4Address('192.168.178.1')
|
|
1585
|
+
self.assertEqual('2001:0000:0000:0000:0000:0000:0000:0001/128',
|
|
1586
|
+
addr1.exploded)
|
|
1587
|
+
self.assertEqual('0000:0000:0000:0000:0000:0000:0000:0001/128',
|
|
1588
|
+
ipaddress.IPv6Interface('::1/128').exploded)
|
|
1589
|
+
# issue 77
|
|
1590
|
+
self.assertEqual('2001:0000:5ef5:79fd:0000:059d:a0e5:0ba1',
|
|
1591
|
+
addr2.exploded)
|
|
1592
|
+
self.assertEqual('2001:0000:0000:0000:0000:0000:0000:0000/96',
|
|
1593
|
+
addr3.exploded)
|
|
1594
|
+
self.assertEqual('192.168.178.1', addr4.exploded)
|
|
1595
|
+
|
|
1596
|
+
def testIntRepresentation(self):
|
|
1597
|
+
self.assertEqual(16909060, int(self.ipv4_address))
|
|
1598
|
+
self.assertEqual(42540616829182469433547762482097946625,
|
|
1599
|
+
int(self.ipv6_address))
|
|
1600
|
+
|
|
1601
|
+
def testForceVersion(self):
|
|
1602
|
+
self.assertEqual(ipaddress.ip_network(1).version, 4)
|
|
1603
|
+
self.assertEqual(ipaddress.IPv6Network(1).version, 6)
|
|
1604
|
+
|
|
1605
|
+
def testWithStar(self):
|
|
1606
|
+
self.assertEqual(self.ipv4_interface.with_prefixlen, "1.2.3.4/24")
|
|
1607
|
+
self.assertEqual(self.ipv4_interface.with_netmask,
|
|
1608
|
+
"1.2.3.4/255.255.255.0")
|
|
1609
|
+
self.assertEqual(self.ipv4_interface.with_hostmask,
|
|
1610
|
+
"1.2.3.4/0.0.0.255")
|
|
1611
|
+
|
|
1612
|
+
self.assertEqual(self.ipv6_interface.with_prefixlen,
|
|
1613
|
+
'2001:658:22a:cafe:200::1/64')
|
|
1614
|
+
self.assertEqual(self.ipv6_interface.with_netmask,
|
|
1615
|
+
'2001:658:22a:cafe:200::1/ffff:ffff:ffff:ffff::')
|
|
1616
|
+
# this probably don't make much sense, but it's included for
|
|
1617
|
+
# compatibility with ipv4
|
|
1618
|
+
self.assertEqual(self.ipv6_interface.with_hostmask,
|
|
1619
|
+
'2001:658:22a:cafe:200::1/::ffff:ffff:ffff:ffff')
|
|
1620
|
+
|
|
1621
|
+
def testNetworkElementCaching(self):
|
|
1622
|
+
# V4 - make sure we're empty
|
|
1623
|
+
self.assertNotIn('network_address', self.ipv4_network._cache)
|
|
1624
|
+
self.assertNotIn('broadcast_address', self.ipv4_network._cache)
|
|
1625
|
+
self.assertNotIn('hostmask', self.ipv4_network._cache)
|
|
1626
|
+
|
|
1627
|
+
# V4 - populate and test
|
|
1628
|
+
self.assertEqual(self.ipv4_network.network_address,
|
|
1629
|
+
ipaddress.IPv4Address('1.2.3.0'))
|
|
1630
|
+
self.assertEqual(self.ipv4_network.broadcast_address,
|
|
1631
|
+
ipaddress.IPv4Address('1.2.3.255'))
|
|
1632
|
+
self.assertEqual(self.ipv4_network.hostmask,
|
|
1633
|
+
ipaddress.IPv4Address('0.0.0.255'))
|
|
1634
|
+
|
|
1635
|
+
# V4 - check we're cached
|
|
1636
|
+
self.assertIn('broadcast_address', self.ipv4_network._cache)
|
|
1637
|
+
self.assertIn('hostmask', self.ipv4_network._cache)
|
|
1638
|
+
|
|
1639
|
+
# V6 - make sure we're empty
|
|
1640
|
+
self.assertNotIn('broadcast_address', self.ipv6_network._cache)
|
|
1641
|
+
self.assertNotIn('hostmask', self.ipv6_network._cache)
|
|
1642
|
+
|
|
1643
|
+
# V6 - populate and test
|
|
1644
|
+
self.assertEqual(self.ipv6_network.network_address,
|
|
1645
|
+
ipaddress.IPv6Address('2001:658:22a:cafe::'))
|
|
1646
|
+
self.assertEqual(self.ipv6_interface.network.network_address,
|
|
1647
|
+
ipaddress.IPv6Address('2001:658:22a:cafe::'))
|
|
1648
|
+
|
|
1649
|
+
self.assertEqual(
|
|
1650
|
+
self.ipv6_network.broadcast_address,
|
|
1651
|
+
ipaddress.IPv6Address('2001:658:22a:cafe:ffff:ffff:ffff:ffff'))
|
|
1652
|
+
self.assertEqual(self.ipv6_network.hostmask,
|
|
1653
|
+
ipaddress.IPv6Address('::ffff:ffff:ffff:ffff'))
|
|
1654
|
+
self.assertEqual(
|
|
1655
|
+
self.ipv6_interface.network.broadcast_address,
|
|
1656
|
+
ipaddress.IPv6Address('2001:658:22a:cafe:ffff:ffff:ffff:ffff'))
|
|
1657
|
+
self.assertEqual(self.ipv6_interface.network.hostmask,
|
|
1658
|
+
ipaddress.IPv6Address('::ffff:ffff:ffff:ffff'))
|
|
1659
|
+
|
|
1660
|
+
# V6 - check we're cached
|
|
1661
|
+
self.assertIn('broadcast_address', self.ipv6_network._cache)
|
|
1662
|
+
self.assertIn('hostmask', self.ipv6_network._cache)
|
|
1663
|
+
self.assertIn('broadcast_address', self.ipv6_interface.network._cache)
|
|
1664
|
+
self.assertIn('hostmask', self.ipv6_interface.network._cache)
|
|
1665
|
+
|
|
1666
|
+
def testTeredo(self):
|
|
1667
|
+
# stolen from wikipedia
|
|
1668
|
+
server = ipaddress.IPv4Address('65.54.227.120')
|
|
1669
|
+
client = ipaddress.IPv4Address('192.0.2.45')
|
|
1670
|
+
teredo_addr = '2001:0000:4136:e378:8000:63bf:3fff:fdd2'
|
|
1671
|
+
self.assertEqual((server, client),
|
|
1672
|
+
ipaddress.ip_address(teredo_addr).teredo)
|
|
1673
|
+
bad_addr = '2000::4136:e378:8000:63bf:3fff:fdd2'
|
|
1674
|
+
self.assertFalse(ipaddress.ip_address(bad_addr).teredo)
|
|
1675
|
+
bad_addr = '2001:0001:4136:e378:8000:63bf:3fff:fdd2'
|
|
1676
|
+
self.assertFalse(ipaddress.ip_address(bad_addr).teredo)
|
|
1677
|
+
|
|
1678
|
+
# i77
|
|
1679
|
+
teredo_addr = ipaddress.IPv6Address('2001:0:5ef5:79fd:0:59d:a0e5:ba1')
|
|
1680
|
+
self.assertEqual((ipaddress.IPv4Address('94.245.121.253'),
|
|
1681
|
+
ipaddress.IPv4Address('95.26.244.94')),
|
|
1682
|
+
teredo_addr.teredo)
|
|
1683
|
+
|
|
1684
|
+
def testsixtofour(self):
|
|
1685
|
+
sixtofouraddr = ipaddress.ip_address('2002:ac1d:2d64::1')
|
|
1686
|
+
bad_addr = ipaddress.ip_address('2000:ac1d:2d64::1')
|
|
1687
|
+
self.assertEqual(ipaddress.IPv4Address('172.29.45.100'),
|
|
1688
|
+
sixtofouraddr.sixtofour)
|
|
1689
|
+
self.assertFalse(bad_addr.sixtofour)
|
|
1690
|
+
|
|
1691
|
+
|
|
1692
|
+
if __name__ == '__main__':
|
|
1693
|
+
unittest.main()
|