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,2506 @@
|
|
|
1
|
+
"""HTML character entity references."""
|
|
2
|
+
|
|
3
|
+
# maps the HTML entity name to the Unicode codepoint
|
|
4
|
+
name2codepoint = {
|
|
5
|
+
'AElig': 0x00c6, # latin capital letter AE = latin capital ligature AE, U+00C6 ISOlat1
|
|
6
|
+
'Aacute': 0x00c1, # latin capital letter A with acute, U+00C1 ISOlat1
|
|
7
|
+
'Acirc': 0x00c2, # latin capital letter A with circumflex, U+00C2 ISOlat1
|
|
8
|
+
'Agrave': 0x00c0, # latin capital letter A with grave = latin capital letter A grave, U+00C0 ISOlat1
|
|
9
|
+
'Alpha': 0x0391, # greek capital letter alpha, U+0391
|
|
10
|
+
'Aring': 0x00c5, # latin capital letter A with ring above = latin capital letter A ring, U+00C5 ISOlat1
|
|
11
|
+
'Atilde': 0x00c3, # latin capital letter A with tilde, U+00C3 ISOlat1
|
|
12
|
+
'Auml': 0x00c4, # latin capital letter A with diaeresis, U+00C4 ISOlat1
|
|
13
|
+
'Beta': 0x0392, # greek capital letter beta, U+0392
|
|
14
|
+
'Ccedil': 0x00c7, # latin capital letter C with cedilla, U+00C7 ISOlat1
|
|
15
|
+
'Chi': 0x03a7, # greek capital letter chi, U+03A7
|
|
16
|
+
'Dagger': 0x2021, # double dagger, U+2021 ISOpub
|
|
17
|
+
'Delta': 0x0394, # greek capital letter delta, U+0394 ISOgrk3
|
|
18
|
+
'ETH': 0x00d0, # latin capital letter ETH, U+00D0 ISOlat1
|
|
19
|
+
'Eacute': 0x00c9, # latin capital letter E with acute, U+00C9 ISOlat1
|
|
20
|
+
'Ecirc': 0x00ca, # latin capital letter E with circumflex, U+00CA ISOlat1
|
|
21
|
+
'Egrave': 0x00c8, # latin capital letter E with grave, U+00C8 ISOlat1
|
|
22
|
+
'Epsilon': 0x0395, # greek capital letter epsilon, U+0395
|
|
23
|
+
'Eta': 0x0397, # greek capital letter eta, U+0397
|
|
24
|
+
'Euml': 0x00cb, # latin capital letter E with diaeresis, U+00CB ISOlat1
|
|
25
|
+
'Gamma': 0x0393, # greek capital letter gamma, U+0393 ISOgrk3
|
|
26
|
+
'Iacute': 0x00cd, # latin capital letter I with acute, U+00CD ISOlat1
|
|
27
|
+
'Icirc': 0x00ce, # latin capital letter I with circumflex, U+00CE ISOlat1
|
|
28
|
+
'Igrave': 0x00cc, # latin capital letter I with grave, U+00CC ISOlat1
|
|
29
|
+
'Iota': 0x0399, # greek capital letter iota, U+0399
|
|
30
|
+
'Iuml': 0x00cf, # latin capital letter I with diaeresis, U+00CF ISOlat1
|
|
31
|
+
'Kappa': 0x039a, # greek capital letter kappa, U+039A
|
|
32
|
+
'Lambda': 0x039b, # greek capital letter lambda, U+039B ISOgrk3
|
|
33
|
+
'Mu': 0x039c, # greek capital letter mu, U+039C
|
|
34
|
+
'Ntilde': 0x00d1, # latin capital letter N with tilde, U+00D1 ISOlat1
|
|
35
|
+
'Nu': 0x039d, # greek capital letter nu, U+039D
|
|
36
|
+
'OElig': 0x0152, # latin capital ligature OE, U+0152 ISOlat2
|
|
37
|
+
'Oacute': 0x00d3, # latin capital letter O with acute, U+00D3 ISOlat1
|
|
38
|
+
'Ocirc': 0x00d4, # latin capital letter O with circumflex, U+00D4 ISOlat1
|
|
39
|
+
'Ograve': 0x00d2, # latin capital letter O with grave, U+00D2 ISOlat1
|
|
40
|
+
'Omega': 0x03a9, # greek capital letter omega, U+03A9 ISOgrk3
|
|
41
|
+
'Omicron': 0x039f, # greek capital letter omicron, U+039F
|
|
42
|
+
'Oslash': 0x00d8, # latin capital letter O with stroke = latin capital letter O slash, U+00D8 ISOlat1
|
|
43
|
+
'Otilde': 0x00d5, # latin capital letter O with tilde, U+00D5 ISOlat1
|
|
44
|
+
'Ouml': 0x00d6, # latin capital letter O with diaeresis, U+00D6 ISOlat1
|
|
45
|
+
'Phi': 0x03a6, # greek capital letter phi, U+03A6 ISOgrk3
|
|
46
|
+
'Pi': 0x03a0, # greek capital letter pi, U+03A0 ISOgrk3
|
|
47
|
+
'Prime': 0x2033, # double prime = seconds = inches, U+2033 ISOtech
|
|
48
|
+
'Psi': 0x03a8, # greek capital letter psi, U+03A8 ISOgrk3
|
|
49
|
+
'Rho': 0x03a1, # greek capital letter rho, U+03A1
|
|
50
|
+
'Scaron': 0x0160, # latin capital letter S with caron, U+0160 ISOlat2
|
|
51
|
+
'Sigma': 0x03a3, # greek capital letter sigma, U+03A3 ISOgrk3
|
|
52
|
+
'THORN': 0x00de, # latin capital letter THORN, U+00DE ISOlat1
|
|
53
|
+
'Tau': 0x03a4, # greek capital letter tau, U+03A4
|
|
54
|
+
'Theta': 0x0398, # greek capital letter theta, U+0398 ISOgrk3
|
|
55
|
+
'Uacute': 0x00da, # latin capital letter U with acute, U+00DA ISOlat1
|
|
56
|
+
'Ucirc': 0x00db, # latin capital letter U with circumflex, U+00DB ISOlat1
|
|
57
|
+
'Ugrave': 0x00d9, # latin capital letter U with grave, U+00D9 ISOlat1
|
|
58
|
+
'Upsilon': 0x03a5, # greek capital letter upsilon, U+03A5 ISOgrk3
|
|
59
|
+
'Uuml': 0x00dc, # latin capital letter U with diaeresis, U+00DC ISOlat1
|
|
60
|
+
'Xi': 0x039e, # greek capital letter xi, U+039E ISOgrk3
|
|
61
|
+
'Yacute': 0x00dd, # latin capital letter Y with acute, U+00DD ISOlat1
|
|
62
|
+
'Yuml': 0x0178, # latin capital letter Y with diaeresis, U+0178 ISOlat2
|
|
63
|
+
'Zeta': 0x0396, # greek capital letter zeta, U+0396
|
|
64
|
+
'aacute': 0x00e1, # latin small letter a with acute, U+00E1 ISOlat1
|
|
65
|
+
'acirc': 0x00e2, # latin small letter a with circumflex, U+00E2 ISOlat1
|
|
66
|
+
'acute': 0x00b4, # acute accent = spacing acute, U+00B4 ISOdia
|
|
67
|
+
'aelig': 0x00e6, # latin small letter ae = latin small ligature ae, U+00E6 ISOlat1
|
|
68
|
+
'agrave': 0x00e0, # latin small letter a with grave = latin small letter a grave, U+00E0 ISOlat1
|
|
69
|
+
'alefsym': 0x2135, # alef symbol = first transfinite cardinal, U+2135 NEW
|
|
70
|
+
'alpha': 0x03b1, # greek small letter alpha, U+03B1 ISOgrk3
|
|
71
|
+
'amp': 0x0026, # ampersand, U+0026 ISOnum
|
|
72
|
+
'and': 0x2227, # logical and = wedge, U+2227 ISOtech
|
|
73
|
+
'ang': 0x2220, # angle, U+2220 ISOamso
|
|
74
|
+
'aring': 0x00e5, # latin small letter a with ring above = latin small letter a ring, U+00E5 ISOlat1
|
|
75
|
+
'asymp': 0x2248, # almost equal to = asymptotic to, U+2248 ISOamsr
|
|
76
|
+
'atilde': 0x00e3, # latin small letter a with tilde, U+00E3 ISOlat1
|
|
77
|
+
'auml': 0x00e4, # latin small letter a with diaeresis, U+00E4 ISOlat1
|
|
78
|
+
'bdquo': 0x201e, # double low-9 quotation mark, U+201E NEW
|
|
79
|
+
'beta': 0x03b2, # greek small letter beta, U+03B2 ISOgrk3
|
|
80
|
+
'brvbar': 0x00a6, # broken bar = broken vertical bar, U+00A6 ISOnum
|
|
81
|
+
'bull': 0x2022, # bullet = black small circle, U+2022 ISOpub
|
|
82
|
+
'cap': 0x2229, # intersection = cap, U+2229 ISOtech
|
|
83
|
+
'ccedil': 0x00e7, # latin small letter c with cedilla, U+00E7 ISOlat1
|
|
84
|
+
'cedil': 0x00b8, # cedilla = spacing cedilla, U+00B8 ISOdia
|
|
85
|
+
'cent': 0x00a2, # cent sign, U+00A2 ISOnum
|
|
86
|
+
'chi': 0x03c7, # greek small letter chi, U+03C7 ISOgrk3
|
|
87
|
+
'circ': 0x02c6, # modifier letter circumflex accent, U+02C6 ISOpub
|
|
88
|
+
'clubs': 0x2663, # black club suit = shamrock, U+2663 ISOpub
|
|
89
|
+
'cong': 0x2245, # approximately equal to, U+2245 ISOtech
|
|
90
|
+
'copy': 0x00a9, # copyright sign, U+00A9 ISOnum
|
|
91
|
+
'crarr': 0x21b5, # downwards arrow with corner leftwards = carriage return, U+21B5 NEW
|
|
92
|
+
'cup': 0x222a, # union = cup, U+222A ISOtech
|
|
93
|
+
'curren': 0x00a4, # currency sign, U+00A4 ISOnum
|
|
94
|
+
'dArr': 0x21d3, # downwards double arrow, U+21D3 ISOamsa
|
|
95
|
+
'dagger': 0x2020, # dagger, U+2020 ISOpub
|
|
96
|
+
'darr': 0x2193, # downwards arrow, U+2193 ISOnum
|
|
97
|
+
'deg': 0x00b0, # degree sign, U+00B0 ISOnum
|
|
98
|
+
'delta': 0x03b4, # greek small letter delta, U+03B4 ISOgrk3
|
|
99
|
+
'diams': 0x2666, # black diamond suit, U+2666 ISOpub
|
|
100
|
+
'divide': 0x00f7, # division sign, U+00F7 ISOnum
|
|
101
|
+
'eacute': 0x00e9, # latin small letter e with acute, U+00E9 ISOlat1
|
|
102
|
+
'ecirc': 0x00ea, # latin small letter e with circumflex, U+00EA ISOlat1
|
|
103
|
+
'egrave': 0x00e8, # latin small letter e with grave, U+00E8 ISOlat1
|
|
104
|
+
'empty': 0x2205, # empty set = null set = diameter, U+2205 ISOamso
|
|
105
|
+
'emsp': 0x2003, # em space, U+2003 ISOpub
|
|
106
|
+
'ensp': 0x2002, # en space, U+2002 ISOpub
|
|
107
|
+
'epsilon': 0x03b5, # greek small letter epsilon, U+03B5 ISOgrk3
|
|
108
|
+
'equiv': 0x2261, # identical to, U+2261 ISOtech
|
|
109
|
+
'eta': 0x03b7, # greek small letter eta, U+03B7 ISOgrk3
|
|
110
|
+
'eth': 0x00f0, # latin small letter eth, U+00F0 ISOlat1
|
|
111
|
+
'euml': 0x00eb, # latin small letter e with diaeresis, U+00EB ISOlat1
|
|
112
|
+
'euro': 0x20ac, # euro sign, U+20AC NEW
|
|
113
|
+
'exist': 0x2203, # there exists, U+2203 ISOtech
|
|
114
|
+
'fnof': 0x0192, # latin small f with hook = function = florin, U+0192 ISOtech
|
|
115
|
+
'forall': 0x2200, # for all, U+2200 ISOtech
|
|
116
|
+
'frac12': 0x00bd, # vulgar fraction one half = fraction one half, U+00BD ISOnum
|
|
117
|
+
'frac14': 0x00bc, # vulgar fraction one quarter = fraction one quarter, U+00BC ISOnum
|
|
118
|
+
'frac34': 0x00be, # vulgar fraction three quarters = fraction three quarters, U+00BE ISOnum
|
|
119
|
+
'frasl': 0x2044, # fraction slash, U+2044 NEW
|
|
120
|
+
'gamma': 0x03b3, # greek small letter gamma, U+03B3 ISOgrk3
|
|
121
|
+
'ge': 0x2265, # greater-than or equal to, U+2265 ISOtech
|
|
122
|
+
'gt': 0x003e, # greater-than sign, U+003E ISOnum
|
|
123
|
+
'hArr': 0x21d4, # left right double arrow, U+21D4 ISOamsa
|
|
124
|
+
'harr': 0x2194, # left right arrow, U+2194 ISOamsa
|
|
125
|
+
'hearts': 0x2665, # black heart suit = valentine, U+2665 ISOpub
|
|
126
|
+
'hellip': 0x2026, # horizontal ellipsis = three dot leader, U+2026 ISOpub
|
|
127
|
+
'iacute': 0x00ed, # latin small letter i with acute, U+00ED ISOlat1
|
|
128
|
+
'icirc': 0x00ee, # latin small letter i with circumflex, U+00EE ISOlat1
|
|
129
|
+
'iexcl': 0x00a1, # inverted exclamation mark, U+00A1 ISOnum
|
|
130
|
+
'igrave': 0x00ec, # latin small letter i with grave, U+00EC ISOlat1
|
|
131
|
+
'image': 0x2111, # blackletter capital I = imaginary part, U+2111 ISOamso
|
|
132
|
+
'infin': 0x221e, # infinity, U+221E ISOtech
|
|
133
|
+
'int': 0x222b, # integral, U+222B ISOtech
|
|
134
|
+
'iota': 0x03b9, # greek small letter iota, U+03B9 ISOgrk3
|
|
135
|
+
'iquest': 0x00bf, # inverted question mark = turned question mark, U+00BF ISOnum
|
|
136
|
+
'isin': 0x2208, # element of, U+2208 ISOtech
|
|
137
|
+
'iuml': 0x00ef, # latin small letter i with diaeresis, U+00EF ISOlat1
|
|
138
|
+
'kappa': 0x03ba, # greek small letter kappa, U+03BA ISOgrk3
|
|
139
|
+
'lArr': 0x21d0, # leftwards double arrow, U+21D0 ISOtech
|
|
140
|
+
'lambda': 0x03bb, # greek small letter lambda, U+03BB ISOgrk3
|
|
141
|
+
'lang': 0x2329, # left-pointing angle bracket = bra, U+2329 ISOtech
|
|
142
|
+
'laquo': 0x00ab, # left-pointing double angle quotation mark = left pointing guillemet, U+00AB ISOnum
|
|
143
|
+
'larr': 0x2190, # leftwards arrow, U+2190 ISOnum
|
|
144
|
+
'lceil': 0x2308, # left ceiling = apl upstile, U+2308 ISOamsc
|
|
145
|
+
'ldquo': 0x201c, # left double quotation mark, U+201C ISOnum
|
|
146
|
+
'le': 0x2264, # less-than or equal to, U+2264 ISOtech
|
|
147
|
+
'lfloor': 0x230a, # left floor = apl downstile, U+230A ISOamsc
|
|
148
|
+
'lowast': 0x2217, # asterisk operator, U+2217 ISOtech
|
|
149
|
+
'loz': 0x25ca, # lozenge, U+25CA ISOpub
|
|
150
|
+
'lrm': 0x200e, # left-to-right mark, U+200E NEW RFC 2070
|
|
151
|
+
'lsaquo': 0x2039, # single left-pointing angle quotation mark, U+2039 ISO proposed
|
|
152
|
+
'lsquo': 0x2018, # left single quotation mark, U+2018 ISOnum
|
|
153
|
+
'lt': 0x003c, # less-than sign, U+003C ISOnum
|
|
154
|
+
'macr': 0x00af, # macron = spacing macron = overline = APL overbar, U+00AF ISOdia
|
|
155
|
+
'mdash': 0x2014, # em dash, U+2014 ISOpub
|
|
156
|
+
'micro': 0x00b5, # micro sign, U+00B5 ISOnum
|
|
157
|
+
'middot': 0x00b7, # middle dot = Georgian comma = Greek middle dot, U+00B7 ISOnum
|
|
158
|
+
'minus': 0x2212, # minus sign, U+2212 ISOtech
|
|
159
|
+
'mu': 0x03bc, # greek small letter mu, U+03BC ISOgrk3
|
|
160
|
+
'nabla': 0x2207, # nabla = backward difference, U+2207 ISOtech
|
|
161
|
+
'nbsp': 0x00a0, # no-break space = non-breaking space, U+00A0 ISOnum
|
|
162
|
+
'ndash': 0x2013, # en dash, U+2013 ISOpub
|
|
163
|
+
'ne': 0x2260, # not equal to, U+2260 ISOtech
|
|
164
|
+
'ni': 0x220b, # contains as member, U+220B ISOtech
|
|
165
|
+
'not': 0x00ac, # not sign, U+00AC ISOnum
|
|
166
|
+
'notin': 0x2209, # not an element of, U+2209 ISOtech
|
|
167
|
+
'nsub': 0x2284, # not a subset of, U+2284 ISOamsn
|
|
168
|
+
'ntilde': 0x00f1, # latin small letter n with tilde, U+00F1 ISOlat1
|
|
169
|
+
'nu': 0x03bd, # greek small letter nu, U+03BD ISOgrk3
|
|
170
|
+
'oacute': 0x00f3, # latin small letter o with acute, U+00F3 ISOlat1
|
|
171
|
+
'ocirc': 0x00f4, # latin small letter o with circumflex, U+00F4 ISOlat1
|
|
172
|
+
'oelig': 0x0153, # latin small ligature oe, U+0153 ISOlat2
|
|
173
|
+
'ograve': 0x00f2, # latin small letter o with grave, U+00F2 ISOlat1
|
|
174
|
+
'oline': 0x203e, # overline = spacing overscore, U+203E NEW
|
|
175
|
+
'omega': 0x03c9, # greek small letter omega, U+03C9 ISOgrk3
|
|
176
|
+
'omicron': 0x03bf, # greek small letter omicron, U+03BF NEW
|
|
177
|
+
'oplus': 0x2295, # circled plus = direct sum, U+2295 ISOamsb
|
|
178
|
+
'or': 0x2228, # logical or = vee, U+2228 ISOtech
|
|
179
|
+
'ordf': 0x00aa, # feminine ordinal indicator, U+00AA ISOnum
|
|
180
|
+
'ordm': 0x00ba, # masculine ordinal indicator, U+00BA ISOnum
|
|
181
|
+
'oslash': 0x00f8, # latin small letter o with stroke, = latin small letter o slash, U+00F8 ISOlat1
|
|
182
|
+
'otilde': 0x00f5, # latin small letter o with tilde, U+00F5 ISOlat1
|
|
183
|
+
'otimes': 0x2297, # circled times = vector product, U+2297 ISOamsb
|
|
184
|
+
'ouml': 0x00f6, # latin small letter o with diaeresis, U+00F6 ISOlat1
|
|
185
|
+
'para': 0x00b6, # pilcrow sign = paragraph sign, U+00B6 ISOnum
|
|
186
|
+
'part': 0x2202, # partial differential, U+2202 ISOtech
|
|
187
|
+
'permil': 0x2030, # per mille sign, U+2030 ISOtech
|
|
188
|
+
'perp': 0x22a5, # up tack = orthogonal to = perpendicular, U+22A5 ISOtech
|
|
189
|
+
'phi': 0x03c6, # greek small letter phi, U+03C6 ISOgrk3
|
|
190
|
+
'pi': 0x03c0, # greek small letter pi, U+03C0 ISOgrk3
|
|
191
|
+
'piv': 0x03d6, # greek pi symbol, U+03D6 ISOgrk3
|
|
192
|
+
'plusmn': 0x00b1, # plus-minus sign = plus-or-minus sign, U+00B1 ISOnum
|
|
193
|
+
'pound': 0x00a3, # pound sign, U+00A3 ISOnum
|
|
194
|
+
'prime': 0x2032, # prime = minutes = feet, U+2032 ISOtech
|
|
195
|
+
'prod': 0x220f, # n-ary product = product sign, U+220F ISOamsb
|
|
196
|
+
'prop': 0x221d, # proportional to, U+221D ISOtech
|
|
197
|
+
'psi': 0x03c8, # greek small letter psi, U+03C8 ISOgrk3
|
|
198
|
+
'quot': 0x0022, # quotation mark = APL quote, U+0022 ISOnum
|
|
199
|
+
'rArr': 0x21d2, # rightwards double arrow, U+21D2 ISOtech
|
|
200
|
+
'radic': 0x221a, # square root = radical sign, U+221A ISOtech
|
|
201
|
+
'rang': 0x232a, # right-pointing angle bracket = ket, U+232A ISOtech
|
|
202
|
+
'raquo': 0x00bb, # right-pointing double angle quotation mark = right pointing guillemet, U+00BB ISOnum
|
|
203
|
+
'rarr': 0x2192, # rightwards arrow, U+2192 ISOnum
|
|
204
|
+
'rceil': 0x2309, # right ceiling, U+2309 ISOamsc
|
|
205
|
+
'rdquo': 0x201d, # right double quotation mark, U+201D ISOnum
|
|
206
|
+
'real': 0x211c, # blackletter capital R = real part symbol, U+211C ISOamso
|
|
207
|
+
'reg': 0x00ae, # registered sign = registered trade mark sign, U+00AE ISOnum
|
|
208
|
+
'rfloor': 0x230b, # right floor, U+230B ISOamsc
|
|
209
|
+
'rho': 0x03c1, # greek small letter rho, U+03C1 ISOgrk3
|
|
210
|
+
'rlm': 0x200f, # right-to-left mark, U+200F NEW RFC 2070
|
|
211
|
+
'rsaquo': 0x203a, # single right-pointing angle quotation mark, U+203A ISO proposed
|
|
212
|
+
'rsquo': 0x2019, # right single quotation mark, U+2019 ISOnum
|
|
213
|
+
'sbquo': 0x201a, # single low-9 quotation mark, U+201A NEW
|
|
214
|
+
'scaron': 0x0161, # latin small letter s with caron, U+0161 ISOlat2
|
|
215
|
+
'sdot': 0x22c5, # dot operator, U+22C5 ISOamsb
|
|
216
|
+
'sect': 0x00a7, # section sign, U+00A7 ISOnum
|
|
217
|
+
'shy': 0x00ad, # soft hyphen = discretionary hyphen, U+00AD ISOnum
|
|
218
|
+
'sigma': 0x03c3, # greek small letter sigma, U+03C3 ISOgrk3
|
|
219
|
+
'sigmaf': 0x03c2, # greek small letter final sigma, U+03C2 ISOgrk3
|
|
220
|
+
'sim': 0x223c, # tilde operator = varies with = similar to, U+223C ISOtech
|
|
221
|
+
'spades': 0x2660, # black spade suit, U+2660 ISOpub
|
|
222
|
+
'sub': 0x2282, # subset of, U+2282 ISOtech
|
|
223
|
+
'sube': 0x2286, # subset of or equal to, U+2286 ISOtech
|
|
224
|
+
'sum': 0x2211, # n-ary sumation, U+2211 ISOamsb
|
|
225
|
+
'sup': 0x2283, # superset of, U+2283 ISOtech
|
|
226
|
+
'sup1': 0x00b9, # superscript one = superscript digit one, U+00B9 ISOnum
|
|
227
|
+
'sup2': 0x00b2, # superscript two = superscript digit two = squared, U+00B2 ISOnum
|
|
228
|
+
'sup3': 0x00b3, # superscript three = superscript digit three = cubed, U+00B3 ISOnum
|
|
229
|
+
'supe': 0x2287, # superset of or equal to, U+2287 ISOtech
|
|
230
|
+
'szlig': 0x00df, # latin small letter sharp s = ess-zed, U+00DF ISOlat1
|
|
231
|
+
'tau': 0x03c4, # greek small letter tau, U+03C4 ISOgrk3
|
|
232
|
+
'there4': 0x2234, # therefore, U+2234 ISOtech
|
|
233
|
+
'theta': 0x03b8, # greek small letter theta, U+03B8 ISOgrk3
|
|
234
|
+
'thetasym': 0x03d1, # greek small letter theta symbol, U+03D1 NEW
|
|
235
|
+
'thinsp': 0x2009, # thin space, U+2009 ISOpub
|
|
236
|
+
'thorn': 0x00fe, # latin small letter thorn with, U+00FE ISOlat1
|
|
237
|
+
'tilde': 0x02dc, # small tilde, U+02DC ISOdia
|
|
238
|
+
'times': 0x00d7, # multiplication sign, U+00D7 ISOnum
|
|
239
|
+
'trade': 0x2122, # trade mark sign, U+2122 ISOnum
|
|
240
|
+
'uArr': 0x21d1, # upwards double arrow, U+21D1 ISOamsa
|
|
241
|
+
'uacute': 0x00fa, # latin small letter u with acute, U+00FA ISOlat1
|
|
242
|
+
'uarr': 0x2191, # upwards arrow, U+2191 ISOnum
|
|
243
|
+
'ucirc': 0x00fb, # latin small letter u with circumflex, U+00FB ISOlat1
|
|
244
|
+
'ugrave': 0x00f9, # latin small letter u with grave, U+00F9 ISOlat1
|
|
245
|
+
'uml': 0x00a8, # diaeresis = spacing diaeresis, U+00A8 ISOdia
|
|
246
|
+
'upsih': 0x03d2, # greek upsilon with hook symbol, U+03D2 NEW
|
|
247
|
+
'upsilon': 0x03c5, # greek small letter upsilon, U+03C5 ISOgrk3
|
|
248
|
+
'uuml': 0x00fc, # latin small letter u with diaeresis, U+00FC ISOlat1
|
|
249
|
+
'weierp': 0x2118, # script capital P = power set = Weierstrass p, U+2118 ISOamso
|
|
250
|
+
'xi': 0x03be, # greek small letter xi, U+03BE ISOgrk3
|
|
251
|
+
'yacute': 0x00fd, # latin small letter y with acute, U+00FD ISOlat1
|
|
252
|
+
'yen': 0x00a5, # yen sign = yuan sign, U+00A5 ISOnum
|
|
253
|
+
'yuml': 0x00ff, # latin small letter y with diaeresis, U+00FF ISOlat1
|
|
254
|
+
'zeta': 0x03b6, # greek small letter zeta, U+03B6 ISOgrk3
|
|
255
|
+
'zwj': 0x200d, # zero width joiner, U+200D NEW RFC 2070
|
|
256
|
+
'zwnj': 0x200c, # zero width non-joiner, U+200C NEW RFC 2070
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
# maps the HTML5 named character references to the equivalent Unicode character(s)
|
|
261
|
+
html5 = {
|
|
262
|
+
'Aacute': '\xc1',
|
|
263
|
+
'aacute': '\xe1',
|
|
264
|
+
'Aacute;': '\xc1',
|
|
265
|
+
'aacute;': '\xe1',
|
|
266
|
+
'Abreve;': '\u0102',
|
|
267
|
+
'abreve;': '\u0103',
|
|
268
|
+
'ac;': '\u223e',
|
|
269
|
+
'acd;': '\u223f',
|
|
270
|
+
'acE;': '\u223e\u0333',
|
|
271
|
+
'Acirc': '\xc2',
|
|
272
|
+
'acirc': '\xe2',
|
|
273
|
+
'Acirc;': '\xc2',
|
|
274
|
+
'acirc;': '\xe2',
|
|
275
|
+
'acute': '\xb4',
|
|
276
|
+
'acute;': '\xb4',
|
|
277
|
+
'Acy;': '\u0410',
|
|
278
|
+
'acy;': '\u0430',
|
|
279
|
+
'AElig': '\xc6',
|
|
280
|
+
'aelig': '\xe6',
|
|
281
|
+
'AElig;': '\xc6',
|
|
282
|
+
'aelig;': '\xe6',
|
|
283
|
+
'af;': '\u2061',
|
|
284
|
+
'Afr;': '\U0001d504',
|
|
285
|
+
'afr;': '\U0001d51e',
|
|
286
|
+
'Agrave': '\xc0',
|
|
287
|
+
'agrave': '\xe0',
|
|
288
|
+
'Agrave;': '\xc0',
|
|
289
|
+
'agrave;': '\xe0',
|
|
290
|
+
'alefsym;': '\u2135',
|
|
291
|
+
'aleph;': '\u2135',
|
|
292
|
+
'Alpha;': '\u0391',
|
|
293
|
+
'alpha;': '\u03b1',
|
|
294
|
+
'Amacr;': '\u0100',
|
|
295
|
+
'amacr;': '\u0101',
|
|
296
|
+
'amalg;': '\u2a3f',
|
|
297
|
+
'AMP': '&',
|
|
298
|
+
'amp': '&',
|
|
299
|
+
'AMP;': '&',
|
|
300
|
+
'amp;': '&',
|
|
301
|
+
'And;': '\u2a53',
|
|
302
|
+
'and;': '\u2227',
|
|
303
|
+
'andand;': '\u2a55',
|
|
304
|
+
'andd;': '\u2a5c',
|
|
305
|
+
'andslope;': '\u2a58',
|
|
306
|
+
'andv;': '\u2a5a',
|
|
307
|
+
'ang;': '\u2220',
|
|
308
|
+
'ange;': '\u29a4',
|
|
309
|
+
'angle;': '\u2220',
|
|
310
|
+
'angmsd;': '\u2221',
|
|
311
|
+
'angmsdaa;': '\u29a8',
|
|
312
|
+
'angmsdab;': '\u29a9',
|
|
313
|
+
'angmsdac;': '\u29aa',
|
|
314
|
+
'angmsdad;': '\u29ab',
|
|
315
|
+
'angmsdae;': '\u29ac',
|
|
316
|
+
'angmsdaf;': '\u29ad',
|
|
317
|
+
'angmsdag;': '\u29ae',
|
|
318
|
+
'angmsdah;': '\u29af',
|
|
319
|
+
'angrt;': '\u221f',
|
|
320
|
+
'angrtvb;': '\u22be',
|
|
321
|
+
'angrtvbd;': '\u299d',
|
|
322
|
+
'angsph;': '\u2222',
|
|
323
|
+
'angst;': '\xc5',
|
|
324
|
+
'angzarr;': '\u237c',
|
|
325
|
+
'Aogon;': '\u0104',
|
|
326
|
+
'aogon;': '\u0105',
|
|
327
|
+
'Aopf;': '\U0001d538',
|
|
328
|
+
'aopf;': '\U0001d552',
|
|
329
|
+
'ap;': '\u2248',
|
|
330
|
+
'apacir;': '\u2a6f',
|
|
331
|
+
'apE;': '\u2a70',
|
|
332
|
+
'ape;': '\u224a',
|
|
333
|
+
'apid;': '\u224b',
|
|
334
|
+
'apos;': "'",
|
|
335
|
+
'ApplyFunction;': '\u2061',
|
|
336
|
+
'approx;': '\u2248',
|
|
337
|
+
'approxeq;': '\u224a',
|
|
338
|
+
'Aring': '\xc5',
|
|
339
|
+
'aring': '\xe5',
|
|
340
|
+
'Aring;': '\xc5',
|
|
341
|
+
'aring;': '\xe5',
|
|
342
|
+
'Ascr;': '\U0001d49c',
|
|
343
|
+
'ascr;': '\U0001d4b6',
|
|
344
|
+
'Assign;': '\u2254',
|
|
345
|
+
'ast;': '*',
|
|
346
|
+
'asymp;': '\u2248',
|
|
347
|
+
'asympeq;': '\u224d',
|
|
348
|
+
'Atilde': '\xc3',
|
|
349
|
+
'atilde': '\xe3',
|
|
350
|
+
'Atilde;': '\xc3',
|
|
351
|
+
'atilde;': '\xe3',
|
|
352
|
+
'Auml': '\xc4',
|
|
353
|
+
'auml': '\xe4',
|
|
354
|
+
'Auml;': '\xc4',
|
|
355
|
+
'auml;': '\xe4',
|
|
356
|
+
'awconint;': '\u2233',
|
|
357
|
+
'awint;': '\u2a11',
|
|
358
|
+
'backcong;': '\u224c',
|
|
359
|
+
'backepsilon;': '\u03f6',
|
|
360
|
+
'backprime;': '\u2035',
|
|
361
|
+
'backsim;': '\u223d',
|
|
362
|
+
'backsimeq;': '\u22cd',
|
|
363
|
+
'Backslash;': '\u2216',
|
|
364
|
+
'Barv;': '\u2ae7',
|
|
365
|
+
'barvee;': '\u22bd',
|
|
366
|
+
'Barwed;': '\u2306',
|
|
367
|
+
'barwed;': '\u2305',
|
|
368
|
+
'barwedge;': '\u2305',
|
|
369
|
+
'bbrk;': '\u23b5',
|
|
370
|
+
'bbrktbrk;': '\u23b6',
|
|
371
|
+
'bcong;': '\u224c',
|
|
372
|
+
'Bcy;': '\u0411',
|
|
373
|
+
'bcy;': '\u0431',
|
|
374
|
+
'bdquo;': '\u201e',
|
|
375
|
+
'becaus;': '\u2235',
|
|
376
|
+
'Because;': '\u2235',
|
|
377
|
+
'because;': '\u2235',
|
|
378
|
+
'bemptyv;': '\u29b0',
|
|
379
|
+
'bepsi;': '\u03f6',
|
|
380
|
+
'bernou;': '\u212c',
|
|
381
|
+
'Bernoullis;': '\u212c',
|
|
382
|
+
'Beta;': '\u0392',
|
|
383
|
+
'beta;': '\u03b2',
|
|
384
|
+
'beth;': '\u2136',
|
|
385
|
+
'between;': '\u226c',
|
|
386
|
+
'Bfr;': '\U0001d505',
|
|
387
|
+
'bfr;': '\U0001d51f',
|
|
388
|
+
'bigcap;': '\u22c2',
|
|
389
|
+
'bigcirc;': '\u25ef',
|
|
390
|
+
'bigcup;': '\u22c3',
|
|
391
|
+
'bigodot;': '\u2a00',
|
|
392
|
+
'bigoplus;': '\u2a01',
|
|
393
|
+
'bigotimes;': '\u2a02',
|
|
394
|
+
'bigsqcup;': '\u2a06',
|
|
395
|
+
'bigstar;': '\u2605',
|
|
396
|
+
'bigtriangledown;': '\u25bd',
|
|
397
|
+
'bigtriangleup;': '\u25b3',
|
|
398
|
+
'biguplus;': '\u2a04',
|
|
399
|
+
'bigvee;': '\u22c1',
|
|
400
|
+
'bigwedge;': '\u22c0',
|
|
401
|
+
'bkarow;': '\u290d',
|
|
402
|
+
'blacklozenge;': '\u29eb',
|
|
403
|
+
'blacksquare;': '\u25aa',
|
|
404
|
+
'blacktriangle;': '\u25b4',
|
|
405
|
+
'blacktriangledown;': '\u25be',
|
|
406
|
+
'blacktriangleleft;': '\u25c2',
|
|
407
|
+
'blacktriangleright;': '\u25b8',
|
|
408
|
+
'blank;': '\u2423',
|
|
409
|
+
'blk12;': '\u2592',
|
|
410
|
+
'blk14;': '\u2591',
|
|
411
|
+
'blk34;': '\u2593',
|
|
412
|
+
'block;': '\u2588',
|
|
413
|
+
'bne;': '=\u20e5',
|
|
414
|
+
'bnequiv;': '\u2261\u20e5',
|
|
415
|
+
'bNot;': '\u2aed',
|
|
416
|
+
'bnot;': '\u2310',
|
|
417
|
+
'Bopf;': '\U0001d539',
|
|
418
|
+
'bopf;': '\U0001d553',
|
|
419
|
+
'bot;': '\u22a5',
|
|
420
|
+
'bottom;': '\u22a5',
|
|
421
|
+
'bowtie;': '\u22c8',
|
|
422
|
+
'boxbox;': '\u29c9',
|
|
423
|
+
'boxDL;': '\u2557',
|
|
424
|
+
'boxDl;': '\u2556',
|
|
425
|
+
'boxdL;': '\u2555',
|
|
426
|
+
'boxdl;': '\u2510',
|
|
427
|
+
'boxDR;': '\u2554',
|
|
428
|
+
'boxDr;': '\u2553',
|
|
429
|
+
'boxdR;': '\u2552',
|
|
430
|
+
'boxdr;': '\u250c',
|
|
431
|
+
'boxH;': '\u2550',
|
|
432
|
+
'boxh;': '\u2500',
|
|
433
|
+
'boxHD;': '\u2566',
|
|
434
|
+
'boxHd;': '\u2564',
|
|
435
|
+
'boxhD;': '\u2565',
|
|
436
|
+
'boxhd;': '\u252c',
|
|
437
|
+
'boxHU;': '\u2569',
|
|
438
|
+
'boxHu;': '\u2567',
|
|
439
|
+
'boxhU;': '\u2568',
|
|
440
|
+
'boxhu;': '\u2534',
|
|
441
|
+
'boxminus;': '\u229f',
|
|
442
|
+
'boxplus;': '\u229e',
|
|
443
|
+
'boxtimes;': '\u22a0',
|
|
444
|
+
'boxUL;': '\u255d',
|
|
445
|
+
'boxUl;': '\u255c',
|
|
446
|
+
'boxuL;': '\u255b',
|
|
447
|
+
'boxul;': '\u2518',
|
|
448
|
+
'boxUR;': '\u255a',
|
|
449
|
+
'boxUr;': '\u2559',
|
|
450
|
+
'boxuR;': '\u2558',
|
|
451
|
+
'boxur;': '\u2514',
|
|
452
|
+
'boxV;': '\u2551',
|
|
453
|
+
'boxv;': '\u2502',
|
|
454
|
+
'boxVH;': '\u256c',
|
|
455
|
+
'boxVh;': '\u256b',
|
|
456
|
+
'boxvH;': '\u256a',
|
|
457
|
+
'boxvh;': '\u253c',
|
|
458
|
+
'boxVL;': '\u2563',
|
|
459
|
+
'boxVl;': '\u2562',
|
|
460
|
+
'boxvL;': '\u2561',
|
|
461
|
+
'boxvl;': '\u2524',
|
|
462
|
+
'boxVR;': '\u2560',
|
|
463
|
+
'boxVr;': '\u255f',
|
|
464
|
+
'boxvR;': '\u255e',
|
|
465
|
+
'boxvr;': '\u251c',
|
|
466
|
+
'bprime;': '\u2035',
|
|
467
|
+
'Breve;': '\u02d8',
|
|
468
|
+
'breve;': '\u02d8',
|
|
469
|
+
'brvbar': '\xa6',
|
|
470
|
+
'brvbar;': '\xa6',
|
|
471
|
+
'Bscr;': '\u212c',
|
|
472
|
+
'bscr;': '\U0001d4b7',
|
|
473
|
+
'bsemi;': '\u204f',
|
|
474
|
+
'bsim;': '\u223d',
|
|
475
|
+
'bsime;': '\u22cd',
|
|
476
|
+
'bsol;': '\\',
|
|
477
|
+
'bsolb;': '\u29c5',
|
|
478
|
+
'bsolhsub;': '\u27c8',
|
|
479
|
+
'bull;': '\u2022',
|
|
480
|
+
'bullet;': '\u2022',
|
|
481
|
+
'bump;': '\u224e',
|
|
482
|
+
'bumpE;': '\u2aae',
|
|
483
|
+
'bumpe;': '\u224f',
|
|
484
|
+
'Bumpeq;': '\u224e',
|
|
485
|
+
'bumpeq;': '\u224f',
|
|
486
|
+
'Cacute;': '\u0106',
|
|
487
|
+
'cacute;': '\u0107',
|
|
488
|
+
'Cap;': '\u22d2',
|
|
489
|
+
'cap;': '\u2229',
|
|
490
|
+
'capand;': '\u2a44',
|
|
491
|
+
'capbrcup;': '\u2a49',
|
|
492
|
+
'capcap;': '\u2a4b',
|
|
493
|
+
'capcup;': '\u2a47',
|
|
494
|
+
'capdot;': '\u2a40',
|
|
495
|
+
'CapitalDifferentialD;': '\u2145',
|
|
496
|
+
'caps;': '\u2229\ufe00',
|
|
497
|
+
'caret;': '\u2041',
|
|
498
|
+
'caron;': '\u02c7',
|
|
499
|
+
'Cayleys;': '\u212d',
|
|
500
|
+
'ccaps;': '\u2a4d',
|
|
501
|
+
'Ccaron;': '\u010c',
|
|
502
|
+
'ccaron;': '\u010d',
|
|
503
|
+
'Ccedil': '\xc7',
|
|
504
|
+
'ccedil': '\xe7',
|
|
505
|
+
'Ccedil;': '\xc7',
|
|
506
|
+
'ccedil;': '\xe7',
|
|
507
|
+
'Ccirc;': '\u0108',
|
|
508
|
+
'ccirc;': '\u0109',
|
|
509
|
+
'Cconint;': '\u2230',
|
|
510
|
+
'ccups;': '\u2a4c',
|
|
511
|
+
'ccupssm;': '\u2a50',
|
|
512
|
+
'Cdot;': '\u010a',
|
|
513
|
+
'cdot;': '\u010b',
|
|
514
|
+
'cedil': '\xb8',
|
|
515
|
+
'cedil;': '\xb8',
|
|
516
|
+
'Cedilla;': '\xb8',
|
|
517
|
+
'cemptyv;': '\u29b2',
|
|
518
|
+
'cent': '\xa2',
|
|
519
|
+
'cent;': '\xa2',
|
|
520
|
+
'CenterDot;': '\xb7',
|
|
521
|
+
'centerdot;': '\xb7',
|
|
522
|
+
'Cfr;': '\u212d',
|
|
523
|
+
'cfr;': '\U0001d520',
|
|
524
|
+
'CHcy;': '\u0427',
|
|
525
|
+
'chcy;': '\u0447',
|
|
526
|
+
'check;': '\u2713',
|
|
527
|
+
'checkmark;': '\u2713',
|
|
528
|
+
'Chi;': '\u03a7',
|
|
529
|
+
'chi;': '\u03c7',
|
|
530
|
+
'cir;': '\u25cb',
|
|
531
|
+
'circ;': '\u02c6',
|
|
532
|
+
'circeq;': '\u2257',
|
|
533
|
+
'circlearrowleft;': '\u21ba',
|
|
534
|
+
'circlearrowright;': '\u21bb',
|
|
535
|
+
'circledast;': '\u229b',
|
|
536
|
+
'circledcirc;': '\u229a',
|
|
537
|
+
'circleddash;': '\u229d',
|
|
538
|
+
'CircleDot;': '\u2299',
|
|
539
|
+
'circledR;': '\xae',
|
|
540
|
+
'circledS;': '\u24c8',
|
|
541
|
+
'CircleMinus;': '\u2296',
|
|
542
|
+
'CirclePlus;': '\u2295',
|
|
543
|
+
'CircleTimes;': '\u2297',
|
|
544
|
+
'cirE;': '\u29c3',
|
|
545
|
+
'cire;': '\u2257',
|
|
546
|
+
'cirfnint;': '\u2a10',
|
|
547
|
+
'cirmid;': '\u2aef',
|
|
548
|
+
'cirscir;': '\u29c2',
|
|
549
|
+
'ClockwiseContourIntegral;': '\u2232',
|
|
550
|
+
'CloseCurlyDoubleQuote;': '\u201d',
|
|
551
|
+
'CloseCurlyQuote;': '\u2019',
|
|
552
|
+
'clubs;': '\u2663',
|
|
553
|
+
'clubsuit;': '\u2663',
|
|
554
|
+
'Colon;': '\u2237',
|
|
555
|
+
'colon;': ':',
|
|
556
|
+
'Colone;': '\u2a74',
|
|
557
|
+
'colone;': '\u2254',
|
|
558
|
+
'coloneq;': '\u2254',
|
|
559
|
+
'comma;': ',',
|
|
560
|
+
'commat;': '@',
|
|
561
|
+
'comp;': '\u2201',
|
|
562
|
+
'compfn;': '\u2218',
|
|
563
|
+
'complement;': '\u2201',
|
|
564
|
+
'complexes;': '\u2102',
|
|
565
|
+
'cong;': '\u2245',
|
|
566
|
+
'congdot;': '\u2a6d',
|
|
567
|
+
'Congruent;': '\u2261',
|
|
568
|
+
'Conint;': '\u222f',
|
|
569
|
+
'conint;': '\u222e',
|
|
570
|
+
'ContourIntegral;': '\u222e',
|
|
571
|
+
'Copf;': '\u2102',
|
|
572
|
+
'copf;': '\U0001d554',
|
|
573
|
+
'coprod;': '\u2210',
|
|
574
|
+
'Coproduct;': '\u2210',
|
|
575
|
+
'COPY': '\xa9',
|
|
576
|
+
'copy': '\xa9',
|
|
577
|
+
'COPY;': '\xa9',
|
|
578
|
+
'copy;': '\xa9',
|
|
579
|
+
'copysr;': '\u2117',
|
|
580
|
+
'CounterClockwiseContourIntegral;': '\u2233',
|
|
581
|
+
'crarr;': '\u21b5',
|
|
582
|
+
'Cross;': '\u2a2f',
|
|
583
|
+
'cross;': '\u2717',
|
|
584
|
+
'Cscr;': '\U0001d49e',
|
|
585
|
+
'cscr;': '\U0001d4b8',
|
|
586
|
+
'csub;': '\u2acf',
|
|
587
|
+
'csube;': '\u2ad1',
|
|
588
|
+
'csup;': '\u2ad0',
|
|
589
|
+
'csupe;': '\u2ad2',
|
|
590
|
+
'ctdot;': '\u22ef',
|
|
591
|
+
'cudarrl;': '\u2938',
|
|
592
|
+
'cudarrr;': '\u2935',
|
|
593
|
+
'cuepr;': '\u22de',
|
|
594
|
+
'cuesc;': '\u22df',
|
|
595
|
+
'cularr;': '\u21b6',
|
|
596
|
+
'cularrp;': '\u293d',
|
|
597
|
+
'Cup;': '\u22d3',
|
|
598
|
+
'cup;': '\u222a',
|
|
599
|
+
'cupbrcap;': '\u2a48',
|
|
600
|
+
'CupCap;': '\u224d',
|
|
601
|
+
'cupcap;': '\u2a46',
|
|
602
|
+
'cupcup;': '\u2a4a',
|
|
603
|
+
'cupdot;': '\u228d',
|
|
604
|
+
'cupor;': '\u2a45',
|
|
605
|
+
'cups;': '\u222a\ufe00',
|
|
606
|
+
'curarr;': '\u21b7',
|
|
607
|
+
'curarrm;': '\u293c',
|
|
608
|
+
'curlyeqprec;': '\u22de',
|
|
609
|
+
'curlyeqsucc;': '\u22df',
|
|
610
|
+
'curlyvee;': '\u22ce',
|
|
611
|
+
'curlywedge;': '\u22cf',
|
|
612
|
+
'curren': '\xa4',
|
|
613
|
+
'curren;': '\xa4',
|
|
614
|
+
'curvearrowleft;': '\u21b6',
|
|
615
|
+
'curvearrowright;': '\u21b7',
|
|
616
|
+
'cuvee;': '\u22ce',
|
|
617
|
+
'cuwed;': '\u22cf',
|
|
618
|
+
'cwconint;': '\u2232',
|
|
619
|
+
'cwint;': '\u2231',
|
|
620
|
+
'cylcty;': '\u232d',
|
|
621
|
+
'Dagger;': '\u2021',
|
|
622
|
+
'dagger;': '\u2020',
|
|
623
|
+
'daleth;': '\u2138',
|
|
624
|
+
'Darr;': '\u21a1',
|
|
625
|
+
'dArr;': '\u21d3',
|
|
626
|
+
'darr;': '\u2193',
|
|
627
|
+
'dash;': '\u2010',
|
|
628
|
+
'Dashv;': '\u2ae4',
|
|
629
|
+
'dashv;': '\u22a3',
|
|
630
|
+
'dbkarow;': '\u290f',
|
|
631
|
+
'dblac;': '\u02dd',
|
|
632
|
+
'Dcaron;': '\u010e',
|
|
633
|
+
'dcaron;': '\u010f',
|
|
634
|
+
'Dcy;': '\u0414',
|
|
635
|
+
'dcy;': '\u0434',
|
|
636
|
+
'DD;': '\u2145',
|
|
637
|
+
'dd;': '\u2146',
|
|
638
|
+
'ddagger;': '\u2021',
|
|
639
|
+
'ddarr;': '\u21ca',
|
|
640
|
+
'DDotrahd;': '\u2911',
|
|
641
|
+
'ddotseq;': '\u2a77',
|
|
642
|
+
'deg': '\xb0',
|
|
643
|
+
'deg;': '\xb0',
|
|
644
|
+
'Del;': '\u2207',
|
|
645
|
+
'Delta;': '\u0394',
|
|
646
|
+
'delta;': '\u03b4',
|
|
647
|
+
'demptyv;': '\u29b1',
|
|
648
|
+
'dfisht;': '\u297f',
|
|
649
|
+
'Dfr;': '\U0001d507',
|
|
650
|
+
'dfr;': '\U0001d521',
|
|
651
|
+
'dHar;': '\u2965',
|
|
652
|
+
'dharl;': '\u21c3',
|
|
653
|
+
'dharr;': '\u21c2',
|
|
654
|
+
'DiacriticalAcute;': '\xb4',
|
|
655
|
+
'DiacriticalDot;': '\u02d9',
|
|
656
|
+
'DiacriticalDoubleAcute;': '\u02dd',
|
|
657
|
+
'DiacriticalGrave;': '`',
|
|
658
|
+
'DiacriticalTilde;': '\u02dc',
|
|
659
|
+
'diam;': '\u22c4',
|
|
660
|
+
'Diamond;': '\u22c4',
|
|
661
|
+
'diamond;': '\u22c4',
|
|
662
|
+
'diamondsuit;': '\u2666',
|
|
663
|
+
'diams;': '\u2666',
|
|
664
|
+
'die;': '\xa8',
|
|
665
|
+
'DifferentialD;': '\u2146',
|
|
666
|
+
'digamma;': '\u03dd',
|
|
667
|
+
'disin;': '\u22f2',
|
|
668
|
+
'div;': '\xf7',
|
|
669
|
+
'divide': '\xf7',
|
|
670
|
+
'divide;': '\xf7',
|
|
671
|
+
'divideontimes;': '\u22c7',
|
|
672
|
+
'divonx;': '\u22c7',
|
|
673
|
+
'DJcy;': '\u0402',
|
|
674
|
+
'djcy;': '\u0452',
|
|
675
|
+
'dlcorn;': '\u231e',
|
|
676
|
+
'dlcrop;': '\u230d',
|
|
677
|
+
'dollar;': '$',
|
|
678
|
+
'Dopf;': '\U0001d53b',
|
|
679
|
+
'dopf;': '\U0001d555',
|
|
680
|
+
'Dot;': '\xa8',
|
|
681
|
+
'dot;': '\u02d9',
|
|
682
|
+
'DotDot;': '\u20dc',
|
|
683
|
+
'doteq;': '\u2250',
|
|
684
|
+
'doteqdot;': '\u2251',
|
|
685
|
+
'DotEqual;': '\u2250',
|
|
686
|
+
'dotminus;': '\u2238',
|
|
687
|
+
'dotplus;': '\u2214',
|
|
688
|
+
'dotsquare;': '\u22a1',
|
|
689
|
+
'doublebarwedge;': '\u2306',
|
|
690
|
+
'DoubleContourIntegral;': '\u222f',
|
|
691
|
+
'DoubleDot;': '\xa8',
|
|
692
|
+
'DoubleDownArrow;': '\u21d3',
|
|
693
|
+
'DoubleLeftArrow;': '\u21d0',
|
|
694
|
+
'DoubleLeftRightArrow;': '\u21d4',
|
|
695
|
+
'DoubleLeftTee;': '\u2ae4',
|
|
696
|
+
'DoubleLongLeftArrow;': '\u27f8',
|
|
697
|
+
'DoubleLongLeftRightArrow;': '\u27fa',
|
|
698
|
+
'DoubleLongRightArrow;': '\u27f9',
|
|
699
|
+
'DoubleRightArrow;': '\u21d2',
|
|
700
|
+
'DoubleRightTee;': '\u22a8',
|
|
701
|
+
'DoubleUpArrow;': '\u21d1',
|
|
702
|
+
'DoubleUpDownArrow;': '\u21d5',
|
|
703
|
+
'DoubleVerticalBar;': '\u2225',
|
|
704
|
+
'DownArrow;': '\u2193',
|
|
705
|
+
'Downarrow;': '\u21d3',
|
|
706
|
+
'downarrow;': '\u2193',
|
|
707
|
+
'DownArrowBar;': '\u2913',
|
|
708
|
+
'DownArrowUpArrow;': '\u21f5',
|
|
709
|
+
'DownBreve;': '\u0311',
|
|
710
|
+
'downdownarrows;': '\u21ca',
|
|
711
|
+
'downharpoonleft;': '\u21c3',
|
|
712
|
+
'downharpoonright;': '\u21c2',
|
|
713
|
+
'DownLeftRightVector;': '\u2950',
|
|
714
|
+
'DownLeftTeeVector;': '\u295e',
|
|
715
|
+
'DownLeftVector;': '\u21bd',
|
|
716
|
+
'DownLeftVectorBar;': '\u2956',
|
|
717
|
+
'DownRightTeeVector;': '\u295f',
|
|
718
|
+
'DownRightVector;': '\u21c1',
|
|
719
|
+
'DownRightVectorBar;': '\u2957',
|
|
720
|
+
'DownTee;': '\u22a4',
|
|
721
|
+
'DownTeeArrow;': '\u21a7',
|
|
722
|
+
'drbkarow;': '\u2910',
|
|
723
|
+
'drcorn;': '\u231f',
|
|
724
|
+
'drcrop;': '\u230c',
|
|
725
|
+
'Dscr;': '\U0001d49f',
|
|
726
|
+
'dscr;': '\U0001d4b9',
|
|
727
|
+
'DScy;': '\u0405',
|
|
728
|
+
'dscy;': '\u0455',
|
|
729
|
+
'dsol;': '\u29f6',
|
|
730
|
+
'Dstrok;': '\u0110',
|
|
731
|
+
'dstrok;': '\u0111',
|
|
732
|
+
'dtdot;': '\u22f1',
|
|
733
|
+
'dtri;': '\u25bf',
|
|
734
|
+
'dtrif;': '\u25be',
|
|
735
|
+
'duarr;': '\u21f5',
|
|
736
|
+
'duhar;': '\u296f',
|
|
737
|
+
'dwangle;': '\u29a6',
|
|
738
|
+
'DZcy;': '\u040f',
|
|
739
|
+
'dzcy;': '\u045f',
|
|
740
|
+
'dzigrarr;': '\u27ff',
|
|
741
|
+
'Eacute': '\xc9',
|
|
742
|
+
'eacute': '\xe9',
|
|
743
|
+
'Eacute;': '\xc9',
|
|
744
|
+
'eacute;': '\xe9',
|
|
745
|
+
'easter;': '\u2a6e',
|
|
746
|
+
'Ecaron;': '\u011a',
|
|
747
|
+
'ecaron;': '\u011b',
|
|
748
|
+
'ecir;': '\u2256',
|
|
749
|
+
'Ecirc': '\xca',
|
|
750
|
+
'ecirc': '\xea',
|
|
751
|
+
'Ecirc;': '\xca',
|
|
752
|
+
'ecirc;': '\xea',
|
|
753
|
+
'ecolon;': '\u2255',
|
|
754
|
+
'Ecy;': '\u042d',
|
|
755
|
+
'ecy;': '\u044d',
|
|
756
|
+
'eDDot;': '\u2a77',
|
|
757
|
+
'Edot;': '\u0116',
|
|
758
|
+
'eDot;': '\u2251',
|
|
759
|
+
'edot;': '\u0117',
|
|
760
|
+
'ee;': '\u2147',
|
|
761
|
+
'efDot;': '\u2252',
|
|
762
|
+
'Efr;': '\U0001d508',
|
|
763
|
+
'efr;': '\U0001d522',
|
|
764
|
+
'eg;': '\u2a9a',
|
|
765
|
+
'Egrave': '\xc8',
|
|
766
|
+
'egrave': '\xe8',
|
|
767
|
+
'Egrave;': '\xc8',
|
|
768
|
+
'egrave;': '\xe8',
|
|
769
|
+
'egs;': '\u2a96',
|
|
770
|
+
'egsdot;': '\u2a98',
|
|
771
|
+
'el;': '\u2a99',
|
|
772
|
+
'Element;': '\u2208',
|
|
773
|
+
'elinters;': '\u23e7',
|
|
774
|
+
'ell;': '\u2113',
|
|
775
|
+
'els;': '\u2a95',
|
|
776
|
+
'elsdot;': '\u2a97',
|
|
777
|
+
'Emacr;': '\u0112',
|
|
778
|
+
'emacr;': '\u0113',
|
|
779
|
+
'empty;': '\u2205',
|
|
780
|
+
'emptyset;': '\u2205',
|
|
781
|
+
'EmptySmallSquare;': '\u25fb',
|
|
782
|
+
'emptyv;': '\u2205',
|
|
783
|
+
'EmptyVerySmallSquare;': '\u25ab',
|
|
784
|
+
'emsp13;': '\u2004',
|
|
785
|
+
'emsp14;': '\u2005',
|
|
786
|
+
'emsp;': '\u2003',
|
|
787
|
+
'ENG;': '\u014a',
|
|
788
|
+
'eng;': '\u014b',
|
|
789
|
+
'ensp;': '\u2002',
|
|
790
|
+
'Eogon;': '\u0118',
|
|
791
|
+
'eogon;': '\u0119',
|
|
792
|
+
'Eopf;': '\U0001d53c',
|
|
793
|
+
'eopf;': '\U0001d556',
|
|
794
|
+
'epar;': '\u22d5',
|
|
795
|
+
'eparsl;': '\u29e3',
|
|
796
|
+
'eplus;': '\u2a71',
|
|
797
|
+
'epsi;': '\u03b5',
|
|
798
|
+
'Epsilon;': '\u0395',
|
|
799
|
+
'epsilon;': '\u03b5',
|
|
800
|
+
'epsiv;': '\u03f5',
|
|
801
|
+
'eqcirc;': '\u2256',
|
|
802
|
+
'eqcolon;': '\u2255',
|
|
803
|
+
'eqsim;': '\u2242',
|
|
804
|
+
'eqslantgtr;': '\u2a96',
|
|
805
|
+
'eqslantless;': '\u2a95',
|
|
806
|
+
'Equal;': '\u2a75',
|
|
807
|
+
'equals;': '=',
|
|
808
|
+
'EqualTilde;': '\u2242',
|
|
809
|
+
'equest;': '\u225f',
|
|
810
|
+
'Equilibrium;': '\u21cc',
|
|
811
|
+
'equiv;': '\u2261',
|
|
812
|
+
'equivDD;': '\u2a78',
|
|
813
|
+
'eqvparsl;': '\u29e5',
|
|
814
|
+
'erarr;': '\u2971',
|
|
815
|
+
'erDot;': '\u2253',
|
|
816
|
+
'Escr;': '\u2130',
|
|
817
|
+
'escr;': '\u212f',
|
|
818
|
+
'esdot;': '\u2250',
|
|
819
|
+
'Esim;': '\u2a73',
|
|
820
|
+
'esim;': '\u2242',
|
|
821
|
+
'Eta;': '\u0397',
|
|
822
|
+
'eta;': '\u03b7',
|
|
823
|
+
'ETH': '\xd0',
|
|
824
|
+
'eth': '\xf0',
|
|
825
|
+
'ETH;': '\xd0',
|
|
826
|
+
'eth;': '\xf0',
|
|
827
|
+
'Euml': '\xcb',
|
|
828
|
+
'euml': '\xeb',
|
|
829
|
+
'Euml;': '\xcb',
|
|
830
|
+
'euml;': '\xeb',
|
|
831
|
+
'euro;': '\u20ac',
|
|
832
|
+
'excl;': '!',
|
|
833
|
+
'exist;': '\u2203',
|
|
834
|
+
'Exists;': '\u2203',
|
|
835
|
+
'expectation;': '\u2130',
|
|
836
|
+
'ExponentialE;': '\u2147',
|
|
837
|
+
'exponentiale;': '\u2147',
|
|
838
|
+
'fallingdotseq;': '\u2252',
|
|
839
|
+
'Fcy;': '\u0424',
|
|
840
|
+
'fcy;': '\u0444',
|
|
841
|
+
'female;': '\u2640',
|
|
842
|
+
'ffilig;': '\ufb03',
|
|
843
|
+
'fflig;': '\ufb00',
|
|
844
|
+
'ffllig;': '\ufb04',
|
|
845
|
+
'Ffr;': '\U0001d509',
|
|
846
|
+
'ffr;': '\U0001d523',
|
|
847
|
+
'filig;': '\ufb01',
|
|
848
|
+
'FilledSmallSquare;': '\u25fc',
|
|
849
|
+
'FilledVerySmallSquare;': '\u25aa',
|
|
850
|
+
'fjlig;': 'fj',
|
|
851
|
+
'flat;': '\u266d',
|
|
852
|
+
'fllig;': '\ufb02',
|
|
853
|
+
'fltns;': '\u25b1',
|
|
854
|
+
'fnof;': '\u0192',
|
|
855
|
+
'Fopf;': '\U0001d53d',
|
|
856
|
+
'fopf;': '\U0001d557',
|
|
857
|
+
'ForAll;': '\u2200',
|
|
858
|
+
'forall;': '\u2200',
|
|
859
|
+
'fork;': '\u22d4',
|
|
860
|
+
'forkv;': '\u2ad9',
|
|
861
|
+
'Fouriertrf;': '\u2131',
|
|
862
|
+
'fpartint;': '\u2a0d',
|
|
863
|
+
'frac12': '\xbd',
|
|
864
|
+
'frac12;': '\xbd',
|
|
865
|
+
'frac13;': '\u2153',
|
|
866
|
+
'frac14': '\xbc',
|
|
867
|
+
'frac14;': '\xbc',
|
|
868
|
+
'frac15;': '\u2155',
|
|
869
|
+
'frac16;': '\u2159',
|
|
870
|
+
'frac18;': '\u215b',
|
|
871
|
+
'frac23;': '\u2154',
|
|
872
|
+
'frac25;': '\u2156',
|
|
873
|
+
'frac34': '\xbe',
|
|
874
|
+
'frac34;': '\xbe',
|
|
875
|
+
'frac35;': '\u2157',
|
|
876
|
+
'frac38;': '\u215c',
|
|
877
|
+
'frac45;': '\u2158',
|
|
878
|
+
'frac56;': '\u215a',
|
|
879
|
+
'frac58;': '\u215d',
|
|
880
|
+
'frac78;': '\u215e',
|
|
881
|
+
'frasl;': '\u2044',
|
|
882
|
+
'frown;': '\u2322',
|
|
883
|
+
'Fscr;': '\u2131',
|
|
884
|
+
'fscr;': '\U0001d4bb',
|
|
885
|
+
'gacute;': '\u01f5',
|
|
886
|
+
'Gamma;': '\u0393',
|
|
887
|
+
'gamma;': '\u03b3',
|
|
888
|
+
'Gammad;': '\u03dc',
|
|
889
|
+
'gammad;': '\u03dd',
|
|
890
|
+
'gap;': '\u2a86',
|
|
891
|
+
'Gbreve;': '\u011e',
|
|
892
|
+
'gbreve;': '\u011f',
|
|
893
|
+
'Gcedil;': '\u0122',
|
|
894
|
+
'Gcirc;': '\u011c',
|
|
895
|
+
'gcirc;': '\u011d',
|
|
896
|
+
'Gcy;': '\u0413',
|
|
897
|
+
'gcy;': '\u0433',
|
|
898
|
+
'Gdot;': '\u0120',
|
|
899
|
+
'gdot;': '\u0121',
|
|
900
|
+
'gE;': '\u2267',
|
|
901
|
+
'ge;': '\u2265',
|
|
902
|
+
'gEl;': '\u2a8c',
|
|
903
|
+
'gel;': '\u22db',
|
|
904
|
+
'geq;': '\u2265',
|
|
905
|
+
'geqq;': '\u2267',
|
|
906
|
+
'geqslant;': '\u2a7e',
|
|
907
|
+
'ges;': '\u2a7e',
|
|
908
|
+
'gescc;': '\u2aa9',
|
|
909
|
+
'gesdot;': '\u2a80',
|
|
910
|
+
'gesdoto;': '\u2a82',
|
|
911
|
+
'gesdotol;': '\u2a84',
|
|
912
|
+
'gesl;': '\u22db\ufe00',
|
|
913
|
+
'gesles;': '\u2a94',
|
|
914
|
+
'Gfr;': '\U0001d50a',
|
|
915
|
+
'gfr;': '\U0001d524',
|
|
916
|
+
'Gg;': '\u22d9',
|
|
917
|
+
'gg;': '\u226b',
|
|
918
|
+
'ggg;': '\u22d9',
|
|
919
|
+
'gimel;': '\u2137',
|
|
920
|
+
'GJcy;': '\u0403',
|
|
921
|
+
'gjcy;': '\u0453',
|
|
922
|
+
'gl;': '\u2277',
|
|
923
|
+
'gla;': '\u2aa5',
|
|
924
|
+
'glE;': '\u2a92',
|
|
925
|
+
'glj;': '\u2aa4',
|
|
926
|
+
'gnap;': '\u2a8a',
|
|
927
|
+
'gnapprox;': '\u2a8a',
|
|
928
|
+
'gnE;': '\u2269',
|
|
929
|
+
'gne;': '\u2a88',
|
|
930
|
+
'gneq;': '\u2a88',
|
|
931
|
+
'gneqq;': '\u2269',
|
|
932
|
+
'gnsim;': '\u22e7',
|
|
933
|
+
'Gopf;': '\U0001d53e',
|
|
934
|
+
'gopf;': '\U0001d558',
|
|
935
|
+
'grave;': '`',
|
|
936
|
+
'GreaterEqual;': '\u2265',
|
|
937
|
+
'GreaterEqualLess;': '\u22db',
|
|
938
|
+
'GreaterFullEqual;': '\u2267',
|
|
939
|
+
'GreaterGreater;': '\u2aa2',
|
|
940
|
+
'GreaterLess;': '\u2277',
|
|
941
|
+
'GreaterSlantEqual;': '\u2a7e',
|
|
942
|
+
'GreaterTilde;': '\u2273',
|
|
943
|
+
'Gscr;': '\U0001d4a2',
|
|
944
|
+
'gscr;': '\u210a',
|
|
945
|
+
'gsim;': '\u2273',
|
|
946
|
+
'gsime;': '\u2a8e',
|
|
947
|
+
'gsiml;': '\u2a90',
|
|
948
|
+
'GT': '>',
|
|
949
|
+
'gt': '>',
|
|
950
|
+
'GT;': '>',
|
|
951
|
+
'Gt;': '\u226b',
|
|
952
|
+
'gt;': '>',
|
|
953
|
+
'gtcc;': '\u2aa7',
|
|
954
|
+
'gtcir;': '\u2a7a',
|
|
955
|
+
'gtdot;': '\u22d7',
|
|
956
|
+
'gtlPar;': '\u2995',
|
|
957
|
+
'gtquest;': '\u2a7c',
|
|
958
|
+
'gtrapprox;': '\u2a86',
|
|
959
|
+
'gtrarr;': '\u2978',
|
|
960
|
+
'gtrdot;': '\u22d7',
|
|
961
|
+
'gtreqless;': '\u22db',
|
|
962
|
+
'gtreqqless;': '\u2a8c',
|
|
963
|
+
'gtrless;': '\u2277',
|
|
964
|
+
'gtrsim;': '\u2273',
|
|
965
|
+
'gvertneqq;': '\u2269\ufe00',
|
|
966
|
+
'gvnE;': '\u2269\ufe00',
|
|
967
|
+
'Hacek;': '\u02c7',
|
|
968
|
+
'hairsp;': '\u200a',
|
|
969
|
+
'half;': '\xbd',
|
|
970
|
+
'hamilt;': '\u210b',
|
|
971
|
+
'HARDcy;': '\u042a',
|
|
972
|
+
'hardcy;': '\u044a',
|
|
973
|
+
'hArr;': '\u21d4',
|
|
974
|
+
'harr;': '\u2194',
|
|
975
|
+
'harrcir;': '\u2948',
|
|
976
|
+
'harrw;': '\u21ad',
|
|
977
|
+
'Hat;': '^',
|
|
978
|
+
'hbar;': '\u210f',
|
|
979
|
+
'Hcirc;': '\u0124',
|
|
980
|
+
'hcirc;': '\u0125',
|
|
981
|
+
'hearts;': '\u2665',
|
|
982
|
+
'heartsuit;': '\u2665',
|
|
983
|
+
'hellip;': '\u2026',
|
|
984
|
+
'hercon;': '\u22b9',
|
|
985
|
+
'Hfr;': '\u210c',
|
|
986
|
+
'hfr;': '\U0001d525',
|
|
987
|
+
'HilbertSpace;': '\u210b',
|
|
988
|
+
'hksearow;': '\u2925',
|
|
989
|
+
'hkswarow;': '\u2926',
|
|
990
|
+
'hoarr;': '\u21ff',
|
|
991
|
+
'homtht;': '\u223b',
|
|
992
|
+
'hookleftarrow;': '\u21a9',
|
|
993
|
+
'hookrightarrow;': '\u21aa',
|
|
994
|
+
'Hopf;': '\u210d',
|
|
995
|
+
'hopf;': '\U0001d559',
|
|
996
|
+
'horbar;': '\u2015',
|
|
997
|
+
'HorizontalLine;': '\u2500',
|
|
998
|
+
'Hscr;': '\u210b',
|
|
999
|
+
'hscr;': '\U0001d4bd',
|
|
1000
|
+
'hslash;': '\u210f',
|
|
1001
|
+
'Hstrok;': '\u0126',
|
|
1002
|
+
'hstrok;': '\u0127',
|
|
1003
|
+
'HumpDownHump;': '\u224e',
|
|
1004
|
+
'HumpEqual;': '\u224f',
|
|
1005
|
+
'hybull;': '\u2043',
|
|
1006
|
+
'hyphen;': '\u2010',
|
|
1007
|
+
'Iacute': '\xcd',
|
|
1008
|
+
'iacute': '\xed',
|
|
1009
|
+
'Iacute;': '\xcd',
|
|
1010
|
+
'iacute;': '\xed',
|
|
1011
|
+
'ic;': '\u2063',
|
|
1012
|
+
'Icirc': '\xce',
|
|
1013
|
+
'icirc': '\xee',
|
|
1014
|
+
'Icirc;': '\xce',
|
|
1015
|
+
'icirc;': '\xee',
|
|
1016
|
+
'Icy;': '\u0418',
|
|
1017
|
+
'icy;': '\u0438',
|
|
1018
|
+
'Idot;': '\u0130',
|
|
1019
|
+
'IEcy;': '\u0415',
|
|
1020
|
+
'iecy;': '\u0435',
|
|
1021
|
+
'iexcl': '\xa1',
|
|
1022
|
+
'iexcl;': '\xa1',
|
|
1023
|
+
'iff;': '\u21d4',
|
|
1024
|
+
'Ifr;': '\u2111',
|
|
1025
|
+
'ifr;': '\U0001d526',
|
|
1026
|
+
'Igrave': '\xcc',
|
|
1027
|
+
'igrave': '\xec',
|
|
1028
|
+
'Igrave;': '\xcc',
|
|
1029
|
+
'igrave;': '\xec',
|
|
1030
|
+
'ii;': '\u2148',
|
|
1031
|
+
'iiiint;': '\u2a0c',
|
|
1032
|
+
'iiint;': '\u222d',
|
|
1033
|
+
'iinfin;': '\u29dc',
|
|
1034
|
+
'iiota;': '\u2129',
|
|
1035
|
+
'IJlig;': '\u0132',
|
|
1036
|
+
'ijlig;': '\u0133',
|
|
1037
|
+
'Im;': '\u2111',
|
|
1038
|
+
'Imacr;': '\u012a',
|
|
1039
|
+
'imacr;': '\u012b',
|
|
1040
|
+
'image;': '\u2111',
|
|
1041
|
+
'ImaginaryI;': '\u2148',
|
|
1042
|
+
'imagline;': '\u2110',
|
|
1043
|
+
'imagpart;': '\u2111',
|
|
1044
|
+
'imath;': '\u0131',
|
|
1045
|
+
'imof;': '\u22b7',
|
|
1046
|
+
'imped;': '\u01b5',
|
|
1047
|
+
'Implies;': '\u21d2',
|
|
1048
|
+
'in;': '\u2208',
|
|
1049
|
+
'incare;': '\u2105',
|
|
1050
|
+
'infin;': '\u221e',
|
|
1051
|
+
'infintie;': '\u29dd',
|
|
1052
|
+
'inodot;': '\u0131',
|
|
1053
|
+
'Int;': '\u222c',
|
|
1054
|
+
'int;': '\u222b',
|
|
1055
|
+
'intcal;': '\u22ba',
|
|
1056
|
+
'integers;': '\u2124',
|
|
1057
|
+
'Integral;': '\u222b',
|
|
1058
|
+
'intercal;': '\u22ba',
|
|
1059
|
+
'Intersection;': '\u22c2',
|
|
1060
|
+
'intlarhk;': '\u2a17',
|
|
1061
|
+
'intprod;': '\u2a3c',
|
|
1062
|
+
'InvisibleComma;': '\u2063',
|
|
1063
|
+
'InvisibleTimes;': '\u2062',
|
|
1064
|
+
'IOcy;': '\u0401',
|
|
1065
|
+
'iocy;': '\u0451',
|
|
1066
|
+
'Iogon;': '\u012e',
|
|
1067
|
+
'iogon;': '\u012f',
|
|
1068
|
+
'Iopf;': '\U0001d540',
|
|
1069
|
+
'iopf;': '\U0001d55a',
|
|
1070
|
+
'Iota;': '\u0399',
|
|
1071
|
+
'iota;': '\u03b9',
|
|
1072
|
+
'iprod;': '\u2a3c',
|
|
1073
|
+
'iquest': '\xbf',
|
|
1074
|
+
'iquest;': '\xbf',
|
|
1075
|
+
'Iscr;': '\u2110',
|
|
1076
|
+
'iscr;': '\U0001d4be',
|
|
1077
|
+
'isin;': '\u2208',
|
|
1078
|
+
'isindot;': '\u22f5',
|
|
1079
|
+
'isinE;': '\u22f9',
|
|
1080
|
+
'isins;': '\u22f4',
|
|
1081
|
+
'isinsv;': '\u22f3',
|
|
1082
|
+
'isinv;': '\u2208',
|
|
1083
|
+
'it;': '\u2062',
|
|
1084
|
+
'Itilde;': '\u0128',
|
|
1085
|
+
'itilde;': '\u0129',
|
|
1086
|
+
'Iukcy;': '\u0406',
|
|
1087
|
+
'iukcy;': '\u0456',
|
|
1088
|
+
'Iuml': '\xcf',
|
|
1089
|
+
'iuml': '\xef',
|
|
1090
|
+
'Iuml;': '\xcf',
|
|
1091
|
+
'iuml;': '\xef',
|
|
1092
|
+
'Jcirc;': '\u0134',
|
|
1093
|
+
'jcirc;': '\u0135',
|
|
1094
|
+
'Jcy;': '\u0419',
|
|
1095
|
+
'jcy;': '\u0439',
|
|
1096
|
+
'Jfr;': '\U0001d50d',
|
|
1097
|
+
'jfr;': '\U0001d527',
|
|
1098
|
+
'jmath;': '\u0237',
|
|
1099
|
+
'Jopf;': '\U0001d541',
|
|
1100
|
+
'jopf;': '\U0001d55b',
|
|
1101
|
+
'Jscr;': '\U0001d4a5',
|
|
1102
|
+
'jscr;': '\U0001d4bf',
|
|
1103
|
+
'Jsercy;': '\u0408',
|
|
1104
|
+
'jsercy;': '\u0458',
|
|
1105
|
+
'Jukcy;': '\u0404',
|
|
1106
|
+
'jukcy;': '\u0454',
|
|
1107
|
+
'Kappa;': '\u039a',
|
|
1108
|
+
'kappa;': '\u03ba',
|
|
1109
|
+
'kappav;': '\u03f0',
|
|
1110
|
+
'Kcedil;': '\u0136',
|
|
1111
|
+
'kcedil;': '\u0137',
|
|
1112
|
+
'Kcy;': '\u041a',
|
|
1113
|
+
'kcy;': '\u043a',
|
|
1114
|
+
'Kfr;': '\U0001d50e',
|
|
1115
|
+
'kfr;': '\U0001d528',
|
|
1116
|
+
'kgreen;': '\u0138',
|
|
1117
|
+
'KHcy;': '\u0425',
|
|
1118
|
+
'khcy;': '\u0445',
|
|
1119
|
+
'KJcy;': '\u040c',
|
|
1120
|
+
'kjcy;': '\u045c',
|
|
1121
|
+
'Kopf;': '\U0001d542',
|
|
1122
|
+
'kopf;': '\U0001d55c',
|
|
1123
|
+
'Kscr;': '\U0001d4a6',
|
|
1124
|
+
'kscr;': '\U0001d4c0',
|
|
1125
|
+
'lAarr;': '\u21da',
|
|
1126
|
+
'Lacute;': '\u0139',
|
|
1127
|
+
'lacute;': '\u013a',
|
|
1128
|
+
'laemptyv;': '\u29b4',
|
|
1129
|
+
'lagran;': '\u2112',
|
|
1130
|
+
'Lambda;': '\u039b',
|
|
1131
|
+
'lambda;': '\u03bb',
|
|
1132
|
+
'Lang;': '\u27ea',
|
|
1133
|
+
'lang;': '\u27e8',
|
|
1134
|
+
'langd;': '\u2991',
|
|
1135
|
+
'langle;': '\u27e8',
|
|
1136
|
+
'lap;': '\u2a85',
|
|
1137
|
+
'Laplacetrf;': '\u2112',
|
|
1138
|
+
'laquo': '\xab',
|
|
1139
|
+
'laquo;': '\xab',
|
|
1140
|
+
'Larr;': '\u219e',
|
|
1141
|
+
'lArr;': '\u21d0',
|
|
1142
|
+
'larr;': '\u2190',
|
|
1143
|
+
'larrb;': '\u21e4',
|
|
1144
|
+
'larrbfs;': '\u291f',
|
|
1145
|
+
'larrfs;': '\u291d',
|
|
1146
|
+
'larrhk;': '\u21a9',
|
|
1147
|
+
'larrlp;': '\u21ab',
|
|
1148
|
+
'larrpl;': '\u2939',
|
|
1149
|
+
'larrsim;': '\u2973',
|
|
1150
|
+
'larrtl;': '\u21a2',
|
|
1151
|
+
'lat;': '\u2aab',
|
|
1152
|
+
'lAtail;': '\u291b',
|
|
1153
|
+
'latail;': '\u2919',
|
|
1154
|
+
'late;': '\u2aad',
|
|
1155
|
+
'lates;': '\u2aad\ufe00',
|
|
1156
|
+
'lBarr;': '\u290e',
|
|
1157
|
+
'lbarr;': '\u290c',
|
|
1158
|
+
'lbbrk;': '\u2772',
|
|
1159
|
+
'lbrace;': '{',
|
|
1160
|
+
'lbrack;': '[',
|
|
1161
|
+
'lbrke;': '\u298b',
|
|
1162
|
+
'lbrksld;': '\u298f',
|
|
1163
|
+
'lbrkslu;': '\u298d',
|
|
1164
|
+
'Lcaron;': '\u013d',
|
|
1165
|
+
'lcaron;': '\u013e',
|
|
1166
|
+
'Lcedil;': '\u013b',
|
|
1167
|
+
'lcedil;': '\u013c',
|
|
1168
|
+
'lceil;': '\u2308',
|
|
1169
|
+
'lcub;': '{',
|
|
1170
|
+
'Lcy;': '\u041b',
|
|
1171
|
+
'lcy;': '\u043b',
|
|
1172
|
+
'ldca;': '\u2936',
|
|
1173
|
+
'ldquo;': '\u201c',
|
|
1174
|
+
'ldquor;': '\u201e',
|
|
1175
|
+
'ldrdhar;': '\u2967',
|
|
1176
|
+
'ldrushar;': '\u294b',
|
|
1177
|
+
'ldsh;': '\u21b2',
|
|
1178
|
+
'lE;': '\u2266',
|
|
1179
|
+
'le;': '\u2264',
|
|
1180
|
+
'LeftAngleBracket;': '\u27e8',
|
|
1181
|
+
'LeftArrow;': '\u2190',
|
|
1182
|
+
'Leftarrow;': '\u21d0',
|
|
1183
|
+
'leftarrow;': '\u2190',
|
|
1184
|
+
'LeftArrowBar;': '\u21e4',
|
|
1185
|
+
'LeftArrowRightArrow;': '\u21c6',
|
|
1186
|
+
'leftarrowtail;': '\u21a2',
|
|
1187
|
+
'LeftCeiling;': '\u2308',
|
|
1188
|
+
'LeftDoubleBracket;': '\u27e6',
|
|
1189
|
+
'LeftDownTeeVector;': '\u2961',
|
|
1190
|
+
'LeftDownVector;': '\u21c3',
|
|
1191
|
+
'LeftDownVectorBar;': '\u2959',
|
|
1192
|
+
'LeftFloor;': '\u230a',
|
|
1193
|
+
'leftharpoondown;': '\u21bd',
|
|
1194
|
+
'leftharpoonup;': '\u21bc',
|
|
1195
|
+
'leftleftarrows;': '\u21c7',
|
|
1196
|
+
'LeftRightArrow;': '\u2194',
|
|
1197
|
+
'Leftrightarrow;': '\u21d4',
|
|
1198
|
+
'leftrightarrow;': '\u2194',
|
|
1199
|
+
'leftrightarrows;': '\u21c6',
|
|
1200
|
+
'leftrightharpoons;': '\u21cb',
|
|
1201
|
+
'leftrightsquigarrow;': '\u21ad',
|
|
1202
|
+
'LeftRightVector;': '\u294e',
|
|
1203
|
+
'LeftTee;': '\u22a3',
|
|
1204
|
+
'LeftTeeArrow;': '\u21a4',
|
|
1205
|
+
'LeftTeeVector;': '\u295a',
|
|
1206
|
+
'leftthreetimes;': '\u22cb',
|
|
1207
|
+
'LeftTriangle;': '\u22b2',
|
|
1208
|
+
'LeftTriangleBar;': '\u29cf',
|
|
1209
|
+
'LeftTriangleEqual;': '\u22b4',
|
|
1210
|
+
'LeftUpDownVector;': '\u2951',
|
|
1211
|
+
'LeftUpTeeVector;': '\u2960',
|
|
1212
|
+
'LeftUpVector;': '\u21bf',
|
|
1213
|
+
'LeftUpVectorBar;': '\u2958',
|
|
1214
|
+
'LeftVector;': '\u21bc',
|
|
1215
|
+
'LeftVectorBar;': '\u2952',
|
|
1216
|
+
'lEg;': '\u2a8b',
|
|
1217
|
+
'leg;': '\u22da',
|
|
1218
|
+
'leq;': '\u2264',
|
|
1219
|
+
'leqq;': '\u2266',
|
|
1220
|
+
'leqslant;': '\u2a7d',
|
|
1221
|
+
'les;': '\u2a7d',
|
|
1222
|
+
'lescc;': '\u2aa8',
|
|
1223
|
+
'lesdot;': '\u2a7f',
|
|
1224
|
+
'lesdoto;': '\u2a81',
|
|
1225
|
+
'lesdotor;': '\u2a83',
|
|
1226
|
+
'lesg;': '\u22da\ufe00',
|
|
1227
|
+
'lesges;': '\u2a93',
|
|
1228
|
+
'lessapprox;': '\u2a85',
|
|
1229
|
+
'lessdot;': '\u22d6',
|
|
1230
|
+
'lesseqgtr;': '\u22da',
|
|
1231
|
+
'lesseqqgtr;': '\u2a8b',
|
|
1232
|
+
'LessEqualGreater;': '\u22da',
|
|
1233
|
+
'LessFullEqual;': '\u2266',
|
|
1234
|
+
'LessGreater;': '\u2276',
|
|
1235
|
+
'lessgtr;': '\u2276',
|
|
1236
|
+
'LessLess;': '\u2aa1',
|
|
1237
|
+
'lesssim;': '\u2272',
|
|
1238
|
+
'LessSlantEqual;': '\u2a7d',
|
|
1239
|
+
'LessTilde;': '\u2272',
|
|
1240
|
+
'lfisht;': '\u297c',
|
|
1241
|
+
'lfloor;': '\u230a',
|
|
1242
|
+
'Lfr;': '\U0001d50f',
|
|
1243
|
+
'lfr;': '\U0001d529',
|
|
1244
|
+
'lg;': '\u2276',
|
|
1245
|
+
'lgE;': '\u2a91',
|
|
1246
|
+
'lHar;': '\u2962',
|
|
1247
|
+
'lhard;': '\u21bd',
|
|
1248
|
+
'lharu;': '\u21bc',
|
|
1249
|
+
'lharul;': '\u296a',
|
|
1250
|
+
'lhblk;': '\u2584',
|
|
1251
|
+
'LJcy;': '\u0409',
|
|
1252
|
+
'ljcy;': '\u0459',
|
|
1253
|
+
'Ll;': '\u22d8',
|
|
1254
|
+
'll;': '\u226a',
|
|
1255
|
+
'llarr;': '\u21c7',
|
|
1256
|
+
'llcorner;': '\u231e',
|
|
1257
|
+
'Lleftarrow;': '\u21da',
|
|
1258
|
+
'llhard;': '\u296b',
|
|
1259
|
+
'lltri;': '\u25fa',
|
|
1260
|
+
'Lmidot;': '\u013f',
|
|
1261
|
+
'lmidot;': '\u0140',
|
|
1262
|
+
'lmoust;': '\u23b0',
|
|
1263
|
+
'lmoustache;': '\u23b0',
|
|
1264
|
+
'lnap;': '\u2a89',
|
|
1265
|
+
'lnapprox;': '\u2a89',
|
|
1266
|
+
'lnE;': '\u2268',
|
|
1267
|
+
'lne;': '\u2a87',
|
|
1268
|
+
'lneq;': '\u2a87',
|
|
1269
|
+
'lneqq;': '\u2268',
|
|
1270
|
+
'lnsim;': '\u22e6',
|
|
1271
|
+
'loang;': '\u27ec',
|
|
1272
|
+
'loarr;': '\u21fd',
|
|
1273
|
+
'lobrk;': '\u27e6',
|
|
1274
|
+
'LongLeftArrow;': '\u27f5',
|
|
1275
|
+
'Longleftarrow;': '\u27f8',
|
|
1276
|
+
'longleftarrow;': '\u27f5',
|
|
1277
|
+
'LongLeftRightArrow;': '\u27f7',
|
|
1278
|
+
'Longleftrightarrow;': '\u27fa',
|
|
1279
|
+
'longleftrightarrow;': '\u27f7',
|
|
1280
|
+
'longmapsto;': '\u27fc',
|
|
1281
|
+
'LongRightArrow;': '\u27f6',
|
|
1282
|
+
'Longrightarrow;': '\u27f9',
|
|
1283
|
+
'longrightarrow;': '\u27f6',
|
|
1284
|
+
'looparrowleft;': '\u21ab',
|
|
1285
|
+
'looparrowright;': '\u21ac',
|
|
1286
|
+
'lopar;': '\u2985',
|
|
1287
|
+
'Lopf;': '\U0001d543',
|
|
1288
|
+
'lopf;': '\U0001d55d',
|
|
1289
|
+
'loplus;': '\u2a2d',
|
|
1290
|
+
'lotimes;': '\u2a34',
|
|
1291
|
+
'lowast;': '\u2217',
|
|
1292
|
+
'lowbar;': '_',
|
|
1293
|
+
'LowerLeftArrow;': '\u2199',
|
|
1294
|
+
'LowerRightArrow;': '\u2198',
|
|
1295
|
+
'loz;': '\u25ca',
|
|
1296
|
+
'lozenge;': '\u25ca',
|
|
1297
|
+
'lozf;': '\u29eb',
|
|
1298
|
+
'lpar;': '(',
|
|
1299
|
+
'lparlt;': '\u2993',
|
|
1300
|
+
'lrarr;': '\u21c6',
|
|
1301
|
+
'lrcorner;': '\u231f',
|
|
1302
|
+
'lrhar;': '\u21cb',
|
|
1303
|
+
'lrhard;': '\u296d',
|
|
1304
|
+
'lrm;': '\u200e',
|
|
1305
|
+
'lrtri;': '\u22bf',
|
|
1306
|
+
'lsaquo;': '\u2039',
|
|
1307
|
+
'Lscr;': '\u2112',
|
|
1308
|
+
'lscr;': '\U0001d4c1',
|
|
1309
|
+
'Lsh;': '\u21b0',
|
|
1310
|
+
'lsh;': '\u21b0',
|
|
1311
|
+
'lsim;': '\u2272',
|
|
1312
|
+
'lsime;': '\u2a8d',
|
|
1313
|
+
'lsimg;': '\u2a8f',
|
|
1314
|
+
'lsqb;': '[',
|
|
1315
|
+
'lsquo;': '\u2018',
|
|
1316
|
+
'lsquor;': '\u201a',
|
|
1317
|
+
'Lstrok;': '\u0141',
|
|
1318
|
+
'lstrok;': '\u0142',
|
|
1319
|
+
'LT': '<',
|
|
1320
|
+
'lt': '<',
|
|
1321
|
+
'LT;': '<',
|
|
1322
|
+
'Lt;': '\u226a',
|
|
1323
|
+
'lt;': '<',
|
|
1324
|
+
'ltcc;': '\u2aa6',
|
|
1325
|
+
'ltcir;': '\u2a79',
|
|
1326
|
+
'ltdot;': '\u22d6',
|
|
1327
|
+
'lthree;': '\u22cb',
|
|
1328
|
+
'ltimes;': '\u22c9',
|
|
1329
|
+
'ltlarr;': '\u2976',
|
|
1330
|
+
'ltquest;': '\u2a7b',
|
|
1331
|
+
'ltri;': '\u25c3',
|
|
1332
|
+
'ltrie;': '\u22b4',
|
|
1333
|
+
'ltrif;': '\u25c2',
|
|
1334
|
+
'ltrPar;': '\u2996',
|
|
1335
|
+
'lurdshar;': '\u294a',
|
|
1336
|
+
'luruhar;': '\u2966',
|
|
1337
|
+
'lvertneqq;': '\u2268\ufe00',
|
|
1338
|
+
'lvnE;': '\u2268\ufe00',
|
|
1339
|
+
'macr': '\xaf',
|
|
1340
|
+
'macr;': '\xaf',
|
|
1341
|
+
'male;': '\u2642',
|
|
1342
|
+
'malt;': '\u2720',
|
|
1343
|
+
'maltese;': '\u2720',
|
|
1344
|
+
'Map;': '\u2905',
|
|
1345
|
+
'map;': '\u21a6',
|
|
1346
|
+
'mapsto;': '\u21a6',
|
|
1347
|
+
'mapstodown;': '\u21a7',
|
|
1348
|
+
'mapstoleft;': '\u21a4',
|
|
1349
|
+
'mapstoup;': '\u21a5',
|
|
1350
|
+
'marker;': '\u25ae',
|
|
1351
|
+
'mcomma;': '\u2a29',
|
|
1352
|
+
'Mcy;': '\u041c',
|
|
1353
|
+
'mcy;': '\u043c',
|
|
1354
|
+
'mdash;': '\u2014',
|
|
1355
|
+
'mDDot;': '\u223a',
|
|
1356
|
+
'measuredangle;': '\u2221',
|
|
1357
|
+
'MediumSpace;': '\u205f',
|
|
1358
|
+
'Mellintrf;': '\u2133',
|
|
1359
|
+
'Mfr;': '\U0001d510',
|
|
1360
|
+
'mfr;': '\U0001d52a',
|
|
1361
|
+
'mho;': '\u2127',
|
|
1362
|
+
'micro': '\xb5',
|
|
1363
|
+
'micro;': '\xb5',
|
|
1364
|
+
'mid;': '\u2223',
|
|
1365
|
+
'midast;': '*',
|
|
1366
|
+
'midcir;': '\u2af0',
|
|
1367
|
+
'middot': '\xb7',
|
|
1368
|
+
'middot;': '\xb7',
|
|
1369
|
+
'minus;': '\u2212',
|
|
1370
|
+
'minusb;': '\u229f',
|
|
1371
|
+
'minusd;': '\u2238',
|
|
1372
|
+
'minusdu;': '\u2a2a',
|
|
1373
|
+
'MinusPlus;': '\u2213',
|
|
1374
|
+
'mlcp;': '\u2adb',
|
|
1375
|
+
'mldr;': '\u2026',
|
|
1376
|
+
'mnplus;': '\u2213',
|
|
1377
|
+
'models;': '\u22a7',
|
|
1378
|
+
'Mopf;': '\U0001d544',
|
|
1379
|
+
'mopf;': '\U0001d55e',
|
|
1380
|
+
'mp;': '\u2213',
|
|
1381
|
+
'Mscr;': '\u2133',
|
|
1382
|
+
'mscr;': '\U0001d4c2',
|
|
1383
|
+
'mstpos;': '\u223e',
|
|
1384
|
+
'Mu;': '\u039c',
|
|
1385
|
+
'mu;': '\u03bc',
|
|
1386
|
+
'multimap;': '\u22b8',
|
|
1387
|
+
'mumap;': '\u22b8',
|
|
1388
|
+
'nabla;': '\u2207',
|
|
1389
|
+
'Nacute;': '\u0143',
|
|
1390
|
+
'nacute;': '\u0144',
|
|
1391
|
+
'nang;': '\u2220\u20d2',
|
|
1392
|
+
'nap;': '\u2249',
|
|
1393
|
+
'napE;': '\u2a70\u0338',
|
|
1394
|
+
'napid;': '\u224b\u0338',
|
|
1395
|
+
'napos;': '\u0149',
|
|
1396
|
+
'napprox;': '\u2249',
|
|
1397
|
+
'natur;': '\u266e',
|
|
1398
|
+
'natural;': '\u266e',
|
|
1399
|
+
'naturals;': '\u2115',
|
|
1400
|
+
'nbsp': '\xa0',
|
|
1401
|
+
'nbsp;': '\xa0',
|
|
1402
|
+
'nbump;': '\u224e\u0338',
|
|
1403
|
+
'nbumpe;': '\u224f\u0338',
|
|
1404
|
+
'ncap;': '\u2a43',
|
|
1405
|
+
'Ncaron;': '\u0147',
|
|
1406
|
+
'ncaron;': '\u0148',
|
|
1407
|
+
'Ncedil;': '\u0145',
|
|
1408
|
+
'ncedil;': '\u0146',
|
|
1409
|
+
'ncong;': '\u2247',
|
|
1410
|
+
'ncongdot;': '\u2a6d\u0338',
|
|
1411
|
+
'ncup;': '\u2a42',
|
|
1412
|
+
'Ncy;': '\u041d',
|
|
1413
|
+
'ncy;': '\u043d',
|
|
1414
|
+
'ndash;': '\u2013',
|
|
1415
|
+
'ne;': '\u2260',
|
|
1416
|
+
'nearhk;': '\u2924',
|
|
1417
|
+
'neArr;': '\u21d7',
|
|
1418
|
+
'nearr;': '\u2197',
|
|
1419
|
+
'nearrow;': '\u2197',
|
|
1420
|
+
'nedot;': '\u2250\u0338',
|
|
1421
|
+
'NegativeMediumSpace;': '\u200b',
|
|
1422
|
+
'NegativeThickSpace;': '\u200b',
|
|
1423
|
+
'NegativeThinSpace;': '\u200b',
|
|
1424
|
+
'NegativeVeryThinSpace;': '\u200b',
|
|
1425
|
+
'nequiv;': '\u2262',
|
|
1426
|
+
'nesear;': '\u2928',
|
|
1427
|
+
'nesim;': '\u2242\u0338',
|
|
1428
|
+
'NestedGreaterGreater;': '\u226b',
|
|
1429
|
+
'NestedLessLess;': '\u226a',
|
|
1430
|
+
'NewLine;': '\n',
|
|
1431
|
+
'nexist;': '\u2204',
|
|
1432
|
+
'nexists;': '\u2204',
|
|
1433
|
+
'Nfr;': '\U0001d511',
|
|
1434
|
+
'nfr;': '\U0001d52b',
|
|
1435
|
+
'ngE;': '\u2267\u0338',
|
|
1436
|
+
'nge;': '\u2271',
|
|
1437
|
+
'ngeq;': '\u2271',
|
|
1438
|
+
'ngeqq;': '\u2267\u0338',
|
|
1439
|
+
'ngeqslant;': '\u2a7e\u0338',
|
|
1440
|
+
'nges;': '\u2a7e\u0338',
|
|
1441
|
+
'nGg;': '\u22d9\u0338',
|
|
1442
|
+
'ngsim;': '\u2275',
|
|
1443
|
+
'nGt;': '\u226b\u20d2',
|
|
1444
|
+
'ngt;': '\u226f',
|
|
1445
|
+
'ngtr;': '\u226f',
|
|
1446
|
+
'nGtv;': '\u226b\u0338',
|
|
1447
|
+
'nhArr;': '\u21ce',
|
|
1448
|
+
'nharr;': '\u21ae',
|
|
1449
|
+
'nhpar;': '\u2af2',
|
|
1450
|
+
'ni;': '\u220b',
|
|
1451
|
+
'nis;': '\u22fc',
|
|
1452
|
+
'nisd;': '\u22fa',
|
|
1453
|
+
'niv;': '\u220b',
|
|
1454
|
+
'NJcy;': '\u040a',
|
|
1455
|
+
'njcy;': '\u045a',
|
|
1456
|
+
'nlArr;': '\u21cd',
|
|
1457
|
+
'nlarr;': '\u219a',
|
|
1458
|
+
'nldr;': '\u2025',
|
|
1459
|
+
'nlE;': '\u2266\u0338',
|
|
1460
|
+
'nle;': '\u2270',
|
|
1461
|
+
'nLeftarrow;': '\u21cd',
|
|
1462
|
+
'nleftarrow;': '\u219a',
|
|
1463
|
+
'nLeftrightarrow;': '\u21ce',
|
|
1464
|
+
'nleftrightarrow;': '\u21ae',
|
|
1465
|
+
'nleq;': '\u2270',
|
|
1466
|
+
'nleqq;': '\u2266\u0338',
|
|
1467
|
+
'nleqslant;': '\u2a7d\u0338',
|
|
1468
|
+
'nles;': '\u2a7d\u0338',
|
|
1469
|
+
'nless;': '\u226e',
|
|
1470
|
+
'nLl;': '\u22d8\u0338',
|
|
1471
|
+
'nlsim;': '\u2274',
|
|
1472
|
+
'nLt;': '\u226a\u20d2',
|
|
1473
|
+
'nlt;': '\u226e',
|
|
1474
|
+
'nltri;': '\u22ea',
|
|
1475
|
+
'nltrie;': '\u22ec',
|
|
1476
|
+
'nLtv;': '\u226a\u0338',
|
|
1477
|
+
'nmid;': '\u2224',
|
|
1478
|
+
'NoBreak;': '\u2060',
|
|
1479
|
+
'NonBreakingSpace;': '\xa0',
|
|
1480
|
+
'Nopf;': '\u2115',
|
|
1481
|
+
'nopf;': '\U0001d55f',
|
|
1482
|
+
'not': '\xac',
|
|
1483
|
+
'Not;': '\u2aec',
|
|
1484
|
+
'not;': '\xac',
|
|
1485
|
+
'NotCongruent;': '\u2262',
|
|
1486
|
+
'NotCupCap;': '\u226d',
|
|
1487
|
+
'NotDoubleVerticalBar;': '\u2226',
|
|
1488
|
+
'NotElement;': '\u2209',
|
|
1489
|
+
'NotEqual;': '\u2260',
|
|
1490
|
+
'NotEqualTilde;': '\u2242\u0338',
|
|
1491
|
+
'NotExists;': '\u2204',
|
|
1492
|
+
'NotGreater;': '\u226f',
|
|
1493
|
+
'NotGreaterEqual;': '\u2271',
|
|
1494
|
+
'NotGreaterFullEqual;': '\u2267\u0338',
|
|
1495
|
+
'NotGreaterGreater;': '\u226b\u0338',
|
|
1496
|
+
'NotGreaterLess;': '\u2279',
|
|
1497
|
+
'NotGreaterSlantEqual;': '\u2a7e\u0338',
|
|
1498
|
+
'NotGreaterTilde;': '\u2275',
|
|
1499
|
+
'NotHumpDownHump;': '\u224e\u0338',
|
|
1500
|
+
'NotHumpEqual;': '\u224f\u0338',
|
|
1501
|
+
'notin;': '\u2209',
|
|
1502
|
+
'notindot;': '\u22f5\u0338',
|
|
1503
|
+
'notinE;': '\u22f9\u0338',
|
|
1504
|
+
'notinva;': '\u2209',
|
|
1505
|
+
'notinvb;': '\u22f7',
|
|
1506
|
+
'notinvc;': '\u22f6',
|
|
1507
|
+
'NotLeftTriangle;': '\u22ea',
|
|
1508
|
+
'NotLeftTriangleBar;': '\u29cf\u0338',
|
|
1509
|
+
'NotLeftTriangleEqual;': '\u22ec',
|
|
1510
|
+
'NotLess;': '\u226e',
|
|
1511
|
+
'NotLessEqual;': '\u2270',
|
|
1512
|
+
'NotLessGreater;': '\u2278',
|
|
1513
|
+
'NotLessLess;': '\u226a\u0338',
|
|
1514
|
+
'NotLessSlantEqual;': '\u2a7d\u0338',
|
|
1515
|
+
'NotLessTilde;': '\u2274',
|
|
1516
|
+
'NotNestedGreaterGreater;': '\u2aa2\u0338',
|
|
1517
|
+
'NotNestedLessLess;': '\u2aa1\u0338',
|
|
1518
|
+
'notni;': '\u220c',
|
|
1519
|
+
'notniva;': '\u220c',
|
|
1520
|
+
'notnivb;': '\u22fe',
|
|
1521
|
+
'notnivc;': '\u22fd',
|
|
1522
|
+
'NotPrecedes;': '\u2280',
|
|
1523
|
+
'NotPrecedesEqual;': '\u2aaf\u0338',
|
|
1524
|
+
'NotPrecedesSlantEqual;': '\u22e0',
|
|
1525
|
+
'NotReverseElement;': '\u220c',
|
|
1526
|
+
'NotRightTriangle;': '\u22eb',
|
|
1527
|
+
'NotRightTriangleBar;': '\u29d0\u0338',
|
|
1528
|
+
'NotRightTriangleEqual;': '\u22ed',
|
|
1529
|
+
'NotSquareSubset;': '\u228f\u0338',
|
|
1530
|
+
'NotSquareSubsetEqual;': '\u22e2',
|
|
1531
|
+
'NotSquareSuperset;': '\u2290\u0338',
|
|
1532
|
+
'NotSquareSupersetEqual;': '\u22e3',
|
|
1533
|
+
'NotSubset;': '\u2282\u20d2',
|
|
1534
|
+
'NotSubsetEqual;': '\u2288',
|
|
1535
|
+
'NotSucceeds;': '\u2281',
|
|
1536
|
+
'NotSucceedsEqual;': '\u2ab0\u0338',
|
|
1537
|
+
'NotSucceedsSlantEqual;': '\u22e1',
|
|
1538
|
+
'NotSucceedsTilde;': '\u227f\u0338',
|
|
1539
|
+
'NotSuperset;': '\u2283\u20d2',
|
|
1540
|
+
'NotSupersetEqual;': '\u2289',
|
|
1541
|
+
'NotTilde;': '\u2241',
|
|
1542
|
+
'NotTildeEqual;': '\u2244',
|
|
1543
|
+
'NotTildeFullEqual;': '\u2247',
|
|
1544
|
+
'NotTildeTilde;': '\u2249',
|
|
1545
|
+
'NotVerticalBar;': '\u2224',
|
|
1546
|
+
'npar;': '\u2226',
|
|
1547
|
+
'nparallel;': '\u2226',
|
|
1548
|
+
'nparsl;': '\u2afd\u20e5',
|
|
1549
|
+
'npart;': '\u2202\u0338',
|
|
1550
|
+
'npolint;': '\u2a14',
|
|
1551
|
+
'npr;': '\u2280',
|
|
1552
|
+
'nprcue;': '\u22e0',
|
|
1553
|
+
'npre;': '\u2aaf\u0338',
|
|
1554
|
+
'nprec;': '\u2280',
|
|
1555
|
+
'npreceq;': '\u2aaf\u0338',
|
|
1556
|
+
'nrArr;': '\u21cf',
|
|
1557
|
+
'nrarr;': '\u219b',
|
|
1558
|
+
'nrarrc;': '\u2933\u0338',
|
|
1559
|
+
'nrarrw;': '\u219d\u0338',
|
|
1560
|
+
'nRightarrow;': '\u21cf',
|
|
1561
|
+
'nrightarrow;': '\u219b',
|
|
1562
|
+
'nrtri;': '\u22eb',
|
|
1563
|
+
'nrtrie;': '\u22ed',
|
|
1564
|
+
'nsc;': '\u2281',
|
|
1565
|
+
'nsccue;': '\u22e1',
|
|
1566
|
+
'nsce;': '\u2ab0\u0338',
|
|
1567
|
+
'Nscr;': '\U0001d4a9',
|
|
1568
|
+
'nscr;': '\U0001d4c3',
|
|
1569
|
+
'nshortmid;': '\u2224',
|
|
1570
|
+
'nshortparallel;': '\u2226',
|
|
1571
|
+
'nsim;': '\u2241',
|
|
1572
|
+
'nsime;': '\u2244',
|
|
1573
|
+
'nsimeq;': '\u2244',
|
|
1574
|
+
'nsmid;': '\u2224',
|
|
1575
|
+
'nspar;': '\u2226',
|
|
1576
|
+
'nsqsube;': '\u22e2',
|
|
1577
|
+
'nsqsupe;': '\u22e3',
|
|
1578
|
+
'nsub;': '\u2284',
|
|
1579
|
+
'nsubE;': '\u2ac5\u0338',
|
|
1580
|
+
'nsube;': '\u2288',
|
|
1581
|
+
'nsubset;': '\u2282\u20d2',
|
|
1582
|
+
'nsubseteq;': '\u2288',
|
|
1583
|
+
'nsubseteqq;': '\u2ac5\u0338',
|
|
1584
|
+
'nsucc;': '\u2281',
|
|
1585
|
+
'nsucceq;': '\u2ab0\u0338',
|
|
1586
|
+
'nsup;': '\u2285',
|
|
1587
|
+
'nsupE;': '\u2ac6\u0338',
|
|
1588
|
+
'nsupe;': '\u2289',
|
|
1589
|
+
'nsupset;': '\u2283\u20d2',
|
|
1590
|
+
'nsupseteq;': '\u2289',
|
|
1591
|
+
'nsupseteqq;': '\u2ac6\u0338',
|
|
1592
|
+
'ntgl;': '\u2279',
|
|
1593
|
+
'Ntilde': '\xd1',
|
|
1594
|
+
'ntilde': '\xf1',
|
|
1595
|
+
'Ntilde;': '\xd1',
|
|
1596
|
+
'ntilde;': '\xf1',
|
|
1597
|
+
'ntlg;': '\u2278',
|
|
1598
|
+
'ntriangleleft;': '\u22ea',
|
|
1599
|
+
'ntrianglelefteq;': '\u22ec',
|
|
1600
|
+
'ntriangleright;': '\u22eb',
|
|
1601
|
+
'ntrianglerighteq;': '\u22ed',
|
|
1602
|
+
'Nu;': '\u039d',
|
|
1603
|
+
'nu;': '\u03bd',
|
|
1604
|
+
'num;': '#',
|
|
1605
|
+
'numero;': '\u2116',
|
|
1606
|
+
'numsp;': '\u2007',
|
|
1607
|
+
'nvap;': '\u224d\u20d2',
|
|
1608
|
+
'nVDash;': '\u22af',
|
|
1609
|
+
'nVdash;': '\u22ae',
|
|
1610
|
+
'nvDash;': '\u22ad',
|
|
1611
|
+
'nvdash;': '\u22ac',
|
|
1612
|
+
'nvge;': '\u2265\u20d2',
|
|
1613
|
+
'nvgt;': '>\u20d2',
|
|
1614
|
+
'nvHarr;': '\u2904',
|
|
1615
|
+
'nvinfin;': '\u29de',
|
|
1616
|
+
'nvlArr;': '\u2902',
|
|
1617
|
+
'nvle;': '\u2264\u20d2',
|
|
1618
|
+
'nvlt;': '<\u20d2',
|
|
1619
|
+
'nvltrie;': '\u22b4\u20d2',
|
|
1620
|
+
'nvrArr;': '\u2903',
|
|
1621
|
+
'nvrtrie;': '\u22b5\u20d2',
|
|
1622
|
+
'nvsim;': '\u223c\u20d2',
|
|
1623
|
+
'nwarhk;': '\u2923',
|
|
1624
|
+
'nwArr;': '\u21d6',
|
|
1625
|
+
'nwarr;': '\u2196',
|
|
1626
|
+
'nwarrow;': '\u2196',
|
|
1627
|
+
'nwnear;': '\u2927',
|
|
1628
|
+
'Oacute': '\xd3',
|
|
1629
|
+
'oacute': '\xf3',
|
|
1630
|
+
'Oacute;': '\xd3',
|
|
1631
|
+
'oacute;': '\xf3',
|
|
1632
|
+
'oast;': '\u229b',
|
|
1633
|
+
'ocir;': '\u229a',
|
|
1634
|
+
'Ocirc': '\xd4',
|
|
1635
|
+
'ocirc': '\xf4',
|
|
1636
|
+
'Ocirc;': '\xd4',
|
|
1637
|
+
'ocirc;': '\xf4',
|
|
1638
|
+
'Ocy;': '\u041e',
|
|
1639
|
+
'ocy;': '\u043e',
|
|
1640
|
+
'odash;': '\u229d',
|
|
1641
|
+
'Odblac;': '\u0150',
|
|
1642
|
+
'odblac;': '\u0151',
|
|
1643
|
+
'odiv;': '\u2a38',
|
|
1644
|
+
'odot;': '\u2299',
|
|
1645
|
+
'odsold;': '\u29bc',
|
|
1646
|
+
'OElig;': '\u0152',
|
|
1647
|
+
'oelig;': '\u0153',
|
|
1648
|
+
'ofcir;': '\u29bf',
|
|
1649
|
+
'Ofr;': '\U0001d512',
|
|
1650
|
+
'ofr;': '\U0001d52c',
|
|
1651
|
+
'ogon;': '\u02db',
|
|
1652
|
+
'Ograve': '\xd2',
|
|
1653
|
+
'ograve': '\xf2',
|
|
1654
|
+
'Ograve;': '\xd2',
|
|
1655
|
+
'ograve;': '\xf2',
|
|
1656
|
+
'ogt;': '\u29c1',
|
|
1657
|
+
'ohbar;': '\u29b5',
|
|
1658
|
+
'ohm;': '\u03a9',
|
|
1659
|
+
'oint;': '\u222e',
|
|
1660
|
+
'olarr;': '\u21ba',
|
|
1661
|
+
'olcir;': '\u29be',
|
|
1662
|
+
'olcross;': '\u29bb',
|
|
1663
|
+
'oline;': '\u203e',
|
|
1664
|
+
'olt;': '\u29c0',
|
|
1665
|
+
'Omacr;': '\u014c',
|
|
1666
|
+
'omacr;': '\u014d',
|
|
1667
|
+
'Omega;': '\u03a9',
|
|
1668
|
+
'omega;': '\u03c9',
|
|
1669
|
+
'Omicron;': '\u039f',
|
|
1670
|
+
'omicron;': '\u03bf',
|
|
1671
|
+
'omid;': '\u29b6',
|
|
1672
|
+
'ominus;': '\u2296',
|
|
1673
|
+
'Oopf;': '\U0001d546',
|
|
1674
|
+
'oopf;': '\U0001d560',
|
|
1675
|
+
'opar;': '\u29b7',
|
|
1676
|
+
'OpenCurlyDoubleQuote;': '\u201c',
|
|
1677
|
+
'OpenCurlyQuote;': '\u2018',
|
|
1678
|
+
'operp;': '\u29b9',
|
|
1679
|
+
'oplus;': '\u2295',
|
|
1680
|
+
'Or;': '\u2a54',
|
|
1681
|
+
'or;': '\u2228',
|
|
1682
|
+
'orarr;': '\u21bb',
|
|
1683
|
+
'ord;': '\u2a5d',
|
|
1684
|
+
'order;': '\u2134',
|
|
1685
|
+
'orderof;': '\u2134',
|
|
1686
|
+
'ordf': '\xaa',
|
|
1687
|
+
'ordf;': '\xaa',
|
|
1688
|
+
'ordm': '\xba',
|
|
1689
|
+
'ordm;': '\xba',
|
|
1690
|
+
'origof;': '\u22b6',
|
|
1691
|
+
'oror;': '\u2a56',
|
|
1692
|
+
'orslope;': '\u2a57',
|
|
1693
|
+
'orv;': '\u2a5b',
|
|
1694
|
+
'oS;': '\u24c8',
|
|
1695
|
+
'Oscr;': '\U0001d4aa',
|
|
1696
|
+
'oscr;': '\u2134',
|
|
1697
|
+
'Oslash': '\xd8',
|
|
1698
|
+
'oslash': '\xf8',
|
|
1699
|
+
'Oslash;': '\xd8',
|
|
1700
|
+
'oslash;': '\xf8',
|
|
1701
|
+
'osol;': '\u2298',
|
|
1702
|
+
'Otilde': '\xd5',
|
|
1703
|
+
'otilde': '\xf5',
|
|
1704
|
+
'Otilde;': '\xd5',
|
|
1705
|
+
'otilde;': '\xf5',
|
|
1706
|
+
'Otimes;': '\u2a37',
|
|
1707
|
+
'otimes;': '\u2297',
|
|
1708
|
+
'otimesas;': '\u2a36',
|
|
1709
|
+
'Ouml': '\xd6',
|
|
1710
|
+
'ouml': '\xf6',
|
|
1711
|
+
'Ouml;': '\xd6',
|
|
1712
|
+
'ouml;': '\xf6',
|
|
1713
|
+
'ovbar;': '\u233d',
|
|
1714
|
+
'OverBar;': '\u203e',
|
|
1715
|
+
'OverBrace;': '\u23de',
|
|
1716
|
+
'OverBracket;': '\u23b4',
|
|
1717
|
+
'OverParenthesis;': '\u23dc',
|
|
1718
|
+
'par;': '\u2225',
|
|
1719
|
+
'para': '\xb6',
|
|
1720
|
+
'para;': '\xb6',
|
|
1721
|
+
'parallel;': '\u2225',
|
|
1722
|
+
'parsim;': '\u2af3',
|
|
1723
|
+
'parsl;': '\u2afd',
|
|
1724
|
+
'part;': '\u2202',
|
|
1725
|
+
'PartialD;': '\u2202',
|
|
1726
|
+
'Pcy;': '\u041f',
|
|
1727
|
+
'pcy;': '\u043f',
|
|
1728
|
+
'percnt;': '%',
|
|
1729
|
+
'period;': '.',
|
|
1730
|
+
'permil;': '\u2030',
|
|
1731
|
+
'perp;': '\u22a5',
|
|
1732
|
+
'pertenk;': '\u2031',
|
|
1733
|
+
'Pfr;': '\U0001d513',
|
|
1734
|
+
'pfr;': '\U0001d52d',
|
|
1735
|
+
'Phi;': '\u03a6',
|
|
1736
|
+
'phi;': '\u03c6',
|
|
1737
|
+
'phiv;': '\u03d5',
|
|
1738
|
+
'phmmat;': '\u2133',
|
|
1739
|
+
'phone;': '\u260e',
|
|
1740
|
+
'Pi;': '\u03a0',
|
|
1741
|
+
'pi;': '\u03c0',
|
|
1742
|
+
'pitchfork;': '\u22d4',
|
|
1743
|
+
'piv;': '\u03d6',
|
|
1744
|
+
'planck;': '\u210f',
|
|
1745
|
+
'planckh;': '\u210e',
|
|
1746
|
+
'plankv;': '\u210f',
|
|
1747
|
+
'plus;': '+',
|
|
1748
|
+
'plusacir;': '\u2a23',
|
|
1749
|
+
'plusb;': '\u229e',
|
|
1750
|
+
'pluscir;': '\u2a22',
|
|
1751
|
+
'plusdo;': '\u2214',
|
|
1752
|
+
'plusdu;': '\u2a25',
|
|
1753
|
+
'pluse;': '\u2a72',
|
|
1754
|
+
'PlusMinus;': '\xb1',
|
|
1755
|
+
'plusmn': '\xb1',
|
|
1756
|
+
'plusmn;': '\xb1',
|
|
1757
|
+
'plussim;': '\u2a26',
|
|
1758
|
+
'plustwo;': '\u2a27',
|
|
1759
|
+
'pm;': '\xb1',
|
|
1760
|
+
'Poincareplane;': '\u210c',
|
|
1761
|
+
'pointint;': '\u2a15',
|
|
1762
|
+
'Popf;': '\u2119',
|
|
1763
|
+
'popf;': '\U0001d561',
|
|
1764
|
+
'pound': '\xa3',
|
|
1765
|
+
'pound;': '\xa3',
|
|
1766
|
+
'Pr;': '\u2abb',
|
|
1767
|
+
'pr;': '\u227a',
|
|
1768
|
+
'prap;': '\u2ab7',
|
|
1769
|
+
'prcue;': '\u227c',
|
|
1770
|
+
'prE;': '\u2ab3',
|
|
1771
|
+
'pre;': '\u2aaf',
|
|
1772
|
+
'prec;': '\u227a',
|
|
1773
|
+
'precapprox;': '\u2ab7',
|
|
1774
|
+
'preccurlyeq;': '\u227c',
|
|
1775
|
+
'Precedes;': '\u227a',
|
|
1776
|
+
'PrecedesEqual;': '\u2aaf',
|
|
1777
|
+
'PrecedesSlantEqual;': '\u227c',
|
|
1778
|
+
'PrecedesTilde;': '\u227e',
|
|
1779
|
+
'preceq;': '\u2aaf',
|
|
1780
|
+
'precnapprox;': '\u2ab9',
|
|
1781
|
+
'precneqq;': '\u2ab5',
|
|
1782
|
+
'precnsim;': '\u22e8',
|
|
1783
|
+
'precsim;': '\u227e',
|
|
1784
|
+
'Prime;': '\u2033',
|
|
1785
|
+
'prime;': '\u2032',
|
|
1786
|
+
'primes;': '\u2119',
|
|
1787
|
+
'prnap;': '\u2ab9',
|
|
1788
|
+
'prnE;': '\u2ab5',
|
|
1789
|
+
'prnsim;': '\u22e8',
|
|
1790
|
+
'prod;': '\u220f',
|
|
1791
|
+
'Product;': '\u220f',
|
|
1792
|
+
'profalar;': '\u232e',
|
|
1793
|
+
'profline;': '\u2312',
|
|
1794
|
+
'profsurf;': '\u2313',
|
|
1795
|
+
'prop;': '\u221d',
|
|
1796
|
+
'Proportion;': '\u2237',
|
|
1797
|
+
'Proportional;': '\u221d',
|
|
1798
|
+
'propto;': '\u221d',
|
|
1799
|
+
'prsim;': '\u227e',
|
|
1800
|
+
'prurel;': '\u22b0',
|
|
1801
|
+
'Pscr;': '\U0001d4ab',
|
|
1802
|
+
'pscr;': '\U0001d4c5',
|
|
1803
|
+
'Psi;': '\u03a8',
|
|
1804
|
+
'psi;': '\u03c8',
|
|
1805
|
+
'puncsp;': '\u2008',
|
|
1806
|
+
'Qfr;': '\U0001d514',
|
|
1807
|
+
'qfr;': '\U0001d52e',
|
|
1808
|
+
'qint;': '\u2a0c',
|
|
1809
|
+
'Qopf;': '\u211a',
|
|
1810
|
+
'qopf;': '\U0001d562',
|
|
1811
|
+
'qprime;': '\u2057',
|
|
1812
|
+
'Qscr;': '\U0001d4ac',
|
|
1813
|
+
'qscr;': '\U0001d4c6',
|
|
1814
|
+
'quaternions;': '\u210d',
|
|
1815
|
+
'quatint;': '\u2a16',
|
|
1816
|
+
'quest;': '?',
|
|
1817
|
+
'questeq;': '\u225f',
|
|
1818
|
+
'QUOT': '"',
|
|
1819
|
+
'quot': '"',
|
|
1820
|
+
'QUOT;': '"',
|
|
1821
|
+
'quot;': '"',
|
|
1822
|
+
'rAarr;': '\u21db',
|
|
1823
|
+
'race;': '\u223d\u0331',
|
|
1824
|
+
'Racute;': '\u0154',
|
|
1825
|
+
'racute;': '\u0155',
|
|
1826
|
+
'radic;': '\u221a',
|
|
1827
|
+
'raemptyv;': '\u29b3',
|
|
1828
|
+
'Rang;': '\u27eb',
|
|
1829
|
+
'rang;': '\u27e9',
|
|
1830
|
+
'rangd;': '\u2992',
|
|
1831
|
+
'range;': '\u29a5',
|
|
1832
|
+
'rangle;': '\u27e9',
|
|
1833
|
+
'raquo': '\xbb',
|
|
1834
|
+
'raquo;': '\xbb',
|
|
1835
|
+
'Rarr;': '\u21a0',
|
|
1836
|
+
'rArr;': '\u21d2',
|
|
1837
|
+
'rarr;': '\u2192',
|
|
1838
|
+
'rarrap;': '\u2975',
|
|
1839
|
+
'rarrb;': '\u21e5',
|
|
1840
|
+
'rarrbfs;': '\u2920',
|
|
1841
|
+
'rarrc;': '\u2933',
|
|
1842
|
+
'rarrfs;': '\u291e',
|
|
1843
|
+
'rarrhk;': '\u21aa',
|
|
1844
|
+
'rarrlp;': '\u21ac',
|
|
1845
|
+
'rarrpl;': '\u2945',
|
|
1846
|
+
'rarrsim;': '\u2974',
|
|
1847
|
+
'Rarrtl;': '\u2916',
|
|
1848
|
+
'rarrtl;': '\u21a3',
|
|
1849
|
+
'rarrw;': '\u219d',
|
|
1850
|
+
'rAtail;': '\u291c',
|
|
1851
|
+
'ratail;': '\u291a',
|
|
1852
|
+
'ratio;': '\u2236',
|
|
1853
|
+
'rationals;': '\u211a',
|
|
1854
|
+
'RBarr;': '\u2910',
|
|
1855
|
+
'rBarr;': '\u290f',
|
|
1856
|
+
'rbarr;': '\u290d',
|
|
1857
|
+
'rbbrk;': '\u2773',
|
|
1858
|
+
'rbrace;': '}',
|
|
1859
|
+
'rbrack;': ']',
|
|
1860
|
+
'rbrke;': '\u298c',
|
|
1861
|
+
'rbrksld;': '\u298e',
|
|
1862
|
+
'rbrkslu;': '\u2990',
|
|
1863
|
+
'Rcaron;': '\u0158',
|
|
1864
|
+
'rcaron;': '\u0159',
|
|
1865
|
+
'Rcedil;': '\u0156',
|
|
1866
|
+
'rcedil;': '\u0157',
|
|
1867
|
+
'rceil;': '\u2309',
|
|
1868
|
+
'rcub;': '}',
|
|
1869
|
+
'Rcy;': '\u0420',
|
|
1870
|
+
'rcy;': '\u0440',
|
|
1871
|
+
'rdca;': '\u2937',
|
|
1872
|
+
'rdldhar;': '\u2969',
|
|
1873
|
+
'rdquo;': '\u201d',
|
|
1874
|
+
'rdquor;': '\u201d',
|
|
1875
|
+
'rdsh;': '\u21b3',
|
|
1876
|
+
'Re;': '\u211c',
|
|
1877
|
+
'real;': '\u211c',
|
|
1878
|
+
'realine;': '\u211b',
|
|
1879
|
+
'realpart;': '\u211c',
|
|
1880
|
+
'reals;': '\u211d',
|
|
1881
|
+
'rect;': '\u25ad',
|
|
1882
|
+
'REG': '\xae',
|
|
1883
|
+
'reg': '\xae',
|
|
1884
|
+
'REG;': '\xae',
|
|
1885
|
+
'reg;': '\xae',
|
|
1886
|
+
'ReverseElement;': '\u220b',
|
|
1887
|
+
'ReverseEquilibrium;': '\u21cb',
|
|
1888
|
+
'ReverseUpEquilibrium;': '\u296f',
|
|
1889
|
+
'rfisht;': '\u297d',
|
|
1890
|
+
'rfloor;': '\u230b',
|
|
1891
|
+
'Rfr;': '\u211c',
|
|
1892
|
+
'rfr;': '\U0001d52f',
|
|
1893
|
+
'rHar;': '\u2964',
|
|
1894
|
+
'rhard;': '\u21c1',
|
|
1895
|
+
'rharu;': '\u21c0',
|
|
1896
|
+
'rharul;': '\u296c',
|
|
1897
|
+
'Rho;': '\u03a1',
|
|
1898
|
+
'rho;': '\u03c1',
|
|
1899
|
+
'rhov;': '\u03f1',
|
|
1900
|
+
'RightAngleBracket;': '\u27e9',
|
|
1901
|
+
'RightArrow;': '\u2192',
|
|
1902
|
+
'Rightarrow;': '\u21d2',
|
|
1903
|
+
'rightarrow;': '\u2192',
|
|
1904
|
+
'RightArrowBar;': '\u21e5',
|
|
1905
|
+
'RightArrowLeftArrow;': '\u21c4',
|
|
1906
|
+
'rightarrowtail;': '\u21a3',
|
|
1907
|
+
'RightCeiling;': '\u2309',
|
|
1908
|
+
'RightDoubleBracket;': '\u27e7',
|
|
1909
|
+
'RightDownTeeVector;': '\u295d',
|
|
1910
|
+
'RightDownVector;': '\u21c2',
|
|
1911
|
+
'RightDownVectorBar;': '\u2955',
|
|
1912
|
+
'RightFloor;': '\u230b',
|
|
1913
|
+
'rightharpoondown;': '\u21c1',
|
|
1914
|
+
'rightharpoonup;': '\u21c0',
|
|
1915
|
+
'rightleftarrows;': '\u21c4',
|
|
1916
|
+
'rightleftharpoons;': '\u21cc',
|
|
1917
|
+
'rightrightarrows;': '\u21c9',
|
|
1918
|
+
'rightsquigarrow;': '\u219d',
|
|
1919
|
+
'RightTee;': '\u22a2',
|
|
1920
|
+
'RightTeeArrow;': '\u21a6',
|
|
1921
|
+
'RightTeeVector;': '\u295b',
|
|
1922
|
+
'rightthreetimes;': '\u22cc',
|
|
1923
|
+
'RightTriangle;': '\u22b3',
|
|
1924
|
+
'RightTriangleBar;': '\u29d0',
|
|
1925
|
+
'RightTriangleEqual;': '\u22b5',
|
|
1926
|
+
'RightUpDownVector;': '\u294f',
|
|
1927
|
+
'RightUpTeeVector;': '\u295c',
|
|
1928
|
+
'RightUpVector;': '\u21be',
|
|
1929
|
+
'RightUpVectorBar;': '\u2954',
|
|
1930
|
+
'RightVector;': '\u21c0',
|
|
1931
|
+
'RightVectorBar;': '\u2953',
|
|
1932
|
+
'ring;': '\u02da',
|
|
1933
|
+
'risingdotseq;': '\u2253',
|
|
1934
|
+
'rlarr;': '\u21c4',
|
|
1935
|
+
'rlhar;': '\u21cc',
|
|
1936
|
+
'rlm;': '\u200f',
|
|
1937
|
+
'rmoust;': '\u23b1',
|
|
1938
|
+
'rmoustache;': '\u23b1',
|
|
1939
|
+
'rnmid;': '\u2aee',
|
|
1940
|
+
'roang;': '\u27ed',
|
|
1941
|
+
'roarr;': '\u21fe',
|
|
1942
|
+
'robrk;': '\u27e7',
|
|
1943
|
+
'ropar;': '\u2986',
|
|
1944
|
+
'Ropf;': '\u211d',
|
|
1945
|
+
'ropf;': '\U0001d563',
|
|
1946
|
+
'roplus;': '\u2a2e',
|
|
1947
|
+
'rotimes;': '\u2a35',
|
|
1948
|
+
'RoundImplies;': '\u2970',
|
|
1949
|
+
'rpar;': ')',
|
|
1950
|
+
'rpargt;': '\u2994',
|
|
1951
|
+
'rppolint;': '\u2a12',
|
|
1952
|
+
'rrarr;': '\u21c9',
|
|
1953
|
+
'Rrightarrow;': '\u21db',
|
|
1954
|
+
'rsaquo;': '\u203a',
|
|
1955
|
+
'Rscr;': '\u211b',
|
|
1956
|
+
'rscr;': '\U0001d4c7',
|
|
1957
|
+
'Rsh;': '\u21b1',
|
|
1958
|
+
'rsh;': '\u21b1',
|
|
1959
|
+
'rsqb;': ']',
|
|
1960
|
+
'rsquo;': '\u2019',
|
|
1961
|
+
'rsquor;': '\u2019',
|
|
1962
|
+
'rthree;': '\u22cc',
|
|
1963
|
+
'rtimes;': '\u22ca',
|
|
1964
|
+
'rtri;': '\u25b9',
|
|
1965
|
+
'rtrie;': '\u22b5',
|
|
1966
|
+
'rtrif;': '\u25b8',
|
|
1967
|
+
'rtriltri;': '\u29ce',
|
|
1968
|
+
'RuleDelayed;': '\u29f4',
|
|
1969
|
+
'ruluhar;': '\u2968',
|
|
1970
|
+
'rx;': '\u211e',
|
|
1971
|
+
'Sacute;': '\u015a',
|
|
1972
|
+
'sacute;': '\u015b',
|
|
1973
|
+
'sbquo;': '\u201a',
|
|
1974
|
+
'Sc;': '\u2abc',
|
|
1975
|
+
'sc;': '\u227b',
|
|
1976
|
+
'scap;': '\u2ab8',
|
|
1977
|
+
'Scaron;': '\u0160',
|
|
1978
|
+
'scaron;': '\u0161',
|
|
1979
|
+
'sccue;': '\u227d',
|
|
1980
|
+
'scE;': '\u2ab4',
|
|
1981
|
+
'sce;': '\u2ab0',
|
|
1982
|
+
'Scedil;': '\u015e',
|
|
1983
|
+
'scedil;': '\u015f',
|
|
1984
|
+
'Scirc;': '\u015c',
|
|
1985
|
+
'scirc;': '\u015d',
|
|
1986
|
+
'scnap;': '\u2aba',
|
|
1987
|
+
'scnE;': '\u2ab6',
|
|
1988
|
+
'scnsim;': '\u22e9',
|
|
1989
|
+
'scpolint;': '\u2a13',
|
|
1990
|
+
'scsim;': '\u227f',
|
|
1991
|
+
'Scy;': '\u0421',
|
|
1992
|
+
'scy;': '\u0441',
|
|
1993
|
+
'sdot;': '\u22c5',
|
|
1994
|
+
'sdotb;': '\u22a1',
|
|
1995
|
+
'sdote;': '\u2a66',
|
|
1996
|
+
'searhk;': '\u2925',
|
|
1997
|
+
'seArr;': '\u21d8',
|
|
1998
|
+
'searr;': '\u2198',
|
|
1999
|
+
'searrow;': '\u2198',
|
|
2000
|
+
'sect': '\xa7',
|
|
2001
|
+
'sect;': '\xa7',
|
|
2002
|
+
'semi;': ';',
|
|
2003
|
+
'seswar;': '\u2929',
|
|
2004
|
+
'setminus;': '\u2216',
|
|
2005
|
+
'setmn;': '\u2216',
|
|
2006
|
+
'sext;': '\u2736',
|
|
2007
|
+
'Sfr;': '\U0001d516',
|
|
2008
|
+
'sfr;': '\U0001d530',
|
|
2009
|
+
'sfrown;': '\u2322',
|
|
2010
|
+
'sharp;': '\u266f',
|
|
2011
|
+
'SHCHcy;': '\u0429',
|
|
2012
|
+
'shchcy;': '\u0449',
|
|
2013
|
+
'SHcy;': '\u0428',
|
|
2014
|
+
'shcy;': '\u0448',
|
|
2015
|
+
'ShortDownArrow;': '\u2193',
|
|
2016
|
+
'ShortLeftArrow;': '\u2190',
|
|
2017
|
+
'shortmid;': '\u2223',
|
|
2018
|
+
'shortparallel;': '\u2225',
|
|
2019
|
+
'ShortRightArrow;': '\u2192',
|
|
2020
|
+
'ShortUpArrow;': '\u2191',
|
|
2021
|
+
'shy': '\xad',
|
|
2022
|
+
'shy;': '\xad',
|
|
2023
|
+
'Sigma;': '\u03a3',
|
|
2024
|
+
'sigma;': '\u03c3',
|
|
2025
|
+
'sigmaf;': '\u03c2',
|
|
2026
|
+
'sigmav;': '\u03c2',
|
|
2027
|
+
'sim;': '\u223c',
|
|
2028
|
+
'simdot;': '\u2a6a',
|
|
2029
|
+
'sime;': '\u2243',
|
|
2030
|
+
'simeq;': '\u2243',
|
|
2031
|
+
'simg;': '\u2a9e',
|
|
2032
|
+
'simgE;': '\u2aa0',
|
|
2033
|
+
'siml;': '\u2a9d',
|
|
2034
|
+
'simlE;': '\u2a9f',
|
|
2035
|
+
'simne;': '\u2246',
|
|
2036
|
+
'simplus;': '\u2a24',
|
|
2037
|
+
'simrarr;': '\u2972',
|
|
2038
|
+
'slarr;': '\u2190',
|
|
2039
|
+
'SmallCircle;': '\u2218',
|
|
2040
|
+
'smallsetminus;': '\u2216',
|
|
2041
|
+
'smashp;': '\u2a33',
|
|
2042
|
+
'smeparsl;': '\u29e4',
|
|
2043
|
+
'smid;': '\u2223',
|
|
2044
|
+
'smile;': '\u2323',
|
|
2045
|
+
'smt;': '\u2aaa',
|
|
2046
|
+
'smte;': '\u2aac',
|
|
2047
|
+
'smtes;': '\u2aac\ufe00',
|
|
2048
|
+
'SOFTcy;': '\u042c',
|
|
2049
|
+
'softcy;': '\u044c',
|
|
2050
|
+
'sol;': '/',
|
|
2051
|
+
'solb;': '\u29c4',
|
|
2052
|
+
'solbar;': '\u233f',
|
|
2053
|
+
'Sopf;': '\U0001d54a',
|
|
2054
|
+
'sopf;': '\U0001d564',
|
|
2055
|
+
'spades;': '\u2660',
|
|
2056
|
+
'spadesuit;': '\u2660',
|
|
2057
|
+
'spar;': '\u2225',
|
|
2058
|
+
'sqcap;': '\u2293',
|
|
2059
|
+
'sqcaps;': '\u2293\ufe00',
|
|
2060
|
+
'sqcup;': '\u2294',
|
|
2061
|
+
'sqcups;': '\u2294\ufe00',
|
|
2062
|
+
'Sqrt;': '\u221a',
|
|
2063
|
+
'sqsub;': '\u228f',
|
|
2064
|
+
'sqsube;': '\u2291',
|
|
2065
|
+
'sqsubset;': '\u228f',
|
|
2066
|
+
'sqsubseteq;': '\u2291',
|
|
2067
|
+
'sqsup;': '\u2290',
|
|
2068
|
+
'sqsupe;': '\u2292',
|
|
2069
|
+
'sqsupset;': '\u2290',
|
|
2070
|
+
'sqsupseteq;': '\u2292',
|
|
2071
|
+
'squ;': '\u25a1',
|
|
2072
|
+
'Square;': '\u25a1',
|
|
2073
|
+
'square;': '\u25a1',
|
|
2074
|
+
'SquareIntersection;': '\u2293',
|
|
2075
|
+
'SquareSubset;': '\u228f',
|
|
2076
|
+
'SquareSubsetEqual;': '\u2291',
|
|
2077
|
+
'SquareSuperset;': '\u2290',
|
|
2078
|
+
'SquareSupersetEqual;': '\u2292',
|
|
2079
|
+
'SquareUnion;': '\u2294',
|
|
2080
|
+
'squarf;': '\u25aa',
|
|
2081
|
+
'squf;': '\u25aa',
|
|
2082
|
+
'srarr;': '\u2192',
|
|
2083
|
+
'Sscr;': '\U0001d4ae',
|
|
2084
|
+
'sscr;': '\U0001d4c8',
|
|
2085
|
+
'ssetmn;': '\u2216',
|
|
2086
|
+
'ssmile;': '\u2323',
|
|
2087
|
+
'sstarf;': '\u22c6',
|
|
2088
|
+
'Star;': '\u22c6',
|
|
2089
|
+
'star;': '\u2606',
|
|
2090
|
+
'starf;': '\u2605',
|
|
2091
|
+
'straightepsilon;': '\u03f5',
|
|
2092
|
+
'straightphi;': '\u03d5',
|
|
2093
|
+
'strns;': '\xaf',
|
|
2094
|
+
'Sub;': '\u22d0',
|
|
2095
|
+
'sub;': '\u2282',
|
|
2096
|
+
'subdot;': '\u2abd',
|
|
2097
|
+
'subE;': '\u2ac5',
|
|
2098
|
+
'sube;': '\u2286',
|
|
2099
|
+
'subedot;': '\u2ac3',
|
|
2100
|
+
'submult;': '\u2ac1',
|
|
2101
|
+
'subnE;': '\u2acb',
|
|
2102
|
+
'subne;': '\u228a',
|
|
2103
|
+
'subplus;': '\u2abf',
|
|
2104
|
+
'subrarr;': '\u2979',
|
|
2105
|
+
'Subset;': '\u22d0',
|
|
2106
|
+
'subset;': '\u2282',
|
|
2107
|
+
'subseteq;': '\u2286',
|
|
2108
|
+
'subseteqq;': '\u2ac5',
|
|
2109
|
+
'SubsetEqual;': '\u2286',
|
|
2110
|
+
'subsetneq;': '\u228a',
|
|
2111
|
+
'subsetneqq;': '\u2acb',
|
|
2112
|
+
'subsim;': '\u2ac7',
|
|
2113
|
+
'subsub;': '\u2ad5',
|
|
2114
|
+
'subsup;': '\u2ad3',
|
|
2115
|
+
'succ;': '\u227b',
|
|
2116
|
+
'succapprox;': '\u2ab8',
|
|
2117
|
+
'succcurlyeq;': '\u227d',
|
|
2118
|
+
'Succeeds;': '\u227b',
|
|
2119
|
+
'SucceedsEqual;': '\u2ab0',
|
|
2120
|
+
'SucceedsSlantEqual;': '\u227d',
|
|
2121
|
+
'SucceedsTilde;': '\u227f',
|
|
2122
|
+
'succeq;': '\u2ab0',
|
|
2123
|
+
'succnapprox;': '\u2aba',
|
|
2124
|
+
'succneqq;': '\u2ab6',
|
|
2125
|
+
'succnsim;': '\u22e9',
|
|
2126
|
+
'succsim;': '\u227f',
|
|
2127
|
+
'SuchThat;': '\u220b',
|
|
2128
|
+
'Sum;': '\u2211',
|
|
2129
|
+
'sum;': '\u2211',
|
|
2130
|
+
'sung;': '\u266a',
|
|
2131
|
+
'sup1': '\xb9',
|
|
2132
|
+
'sup1;': '\xb9',
|
|
2133
|
+
'sup2': '\xb2',
|
|
2134
|
+
'sup2;': '\xb2',
|
|
2135
|
+
'sup3': '\xb3',
|
|
2136
|
+
'sup3;': '\xb3',
|
|
2137
|
+
'Sup;': '\u22d1',
|
|
2138
|
+
'sup;': '\u2283',
|
|
2139
|
+
'supdot;': '\u2abe',
|
|
2140
|
+
'supdsub;': '\u2ad8',
|
|
2141
|
+
'supE;': '\u2ac6',
|
|
2142
|
+
'supe;': '\u2287',
|
|
2143
|
+
'supedot;': '\u2ac4',
|
|
2144
|
+
'Superset;': '\u2283',
|
|
2145
|
+
'SupersetEqual;': '\u2287',
|
|
2146
|
+
'suphsol;': '\u27c9',
|
|
2147
|
+
'suphsub;': '\u2ad7',
|
|
2148
|
+
'suplarr;': '\u297b',
|
|
2149
|
+
'supmult;': '\u2ac2',
|
|
2150
|
+
'supnE;': '\u2acc',
|
|
2151
|
+
'supne;': '\u228b',
|
|
2152
|
+
'supplus;': '\u2ac0',
|
|
2153
|
+
'Supset;': '\u22d1',
|
|
2154
|
+
'supset;': '\u2283',
|
|
2155
|
+
'supseteq;': '\u2287',
|
|
2156
|
+
'supseteqq;': '\u2ac6',
|
|
2157
|
+
'supsetneq;': '\u228b',
|
|
2158
|
+
'supsetneqq;': '\u2acc',
|
|
2159
|
+
'supsim;': '\u2ac8',
|
|
2160
|
+
'supsub;': '\u2ad4',
|
|
2161
|
+
'supsup;': '\u2ad6',
|
|
2162
|
+
'swarhk;': '\u2926',
|
|
2163
|
+
'swArr;': '\u21d9',
|
|
2164
|
+
'swarr;': '\u2199',
|
|
2165
|
+
'swarrow;': '\u2199',
|
|
2166
|
+
'swnwar;': '\u292a',
|
|
2167
|
+
'szlig': '\xdf',
|
|
2168
|
+
'szlig;': '\xdf',
|
|
2169
|
+
'Tab;': '\t',
|
|
2170
|
+
'target;': '\u2316',
|
|
2171
|
+
'Tau;': '\u03a4',
|
|
2172
|
+
'tau;': '\u03c4',
|
|
2173
|
+
'tbrk;': '\u23b4',
|
|
2174
|
+
'Tcaron;': '\u0164',
|
|
2175
|
+
'tcaron;': '\u0165',
|
|
2176
|
+
'Tcedil;': '\u0162',
|
|
2177
|
+
'tcedil;': '\u0163',
|
|
2178
|
+
'Tcy;': '\u0422',
|
|
2179
|
+
'tcy;': '\u0442',
|
|
2180
|
+
'tdot;': '\u20db',
|
|
2181
|
+
'telrec;': '\u2315',
|
|
2182
|
+
'Tfr;': '\U0001d517',
|
|
2183
|
+
'tfr;': '\U0001d531',
|
|
2184
|
+
'there4;': '\u2234',
|
|
2185
|
+
'Therefore;': '\u2234',
|
|
2186
|
+
'therefore;': '\u2234',
|
|
2187
|
+
'Theta;': '\u0398',
|
|
2188
|
+
'theta;': '\u03b8',
|
|
2189
|
+
'thetasym;': '\u03d1',
|
|
2190
|
+
'thetav;': '\u03d1',
|
|
2191
|
+
'thickapprox;': '\u2248',
|
|
2192
|
+
'thicksim;': '\u223c',
|
|
2193
|
+
'ThickSpace;': '\u205f\u200a',
|
|
2194
|
+
'thinsp;': '\u2009',
|
|
2195
|
+
'ThinSpace;': '\u2009',
|
|
2196
|
+
'thkap;': '\u2248',
|
|
2197
|
+
'thksim;': '\u223c',
|
|
2198
|
+
'THORN': '\xde',
|
|
2199
|
+
'thorn': '\xfe',
|
|
2200
|
+
'THORN;': '\xde',
|
|
2201
|
+
'thorn;': '\xfe',
|
|
2202
|
+
'Tilde;': '\u223c',
|
|
2203
|
+
'tilde;': '\u02dc',
|
|
2204
|
+
'TildeEqual;': '\u2243',
|
|
2205
|
+
'TildeFullEqual;': '\u2245',
|
|
2206
|
+
'TildeTilde;': '\u2248',
|
|
2207
|
+
'times': '\xd7',
|
|
2208
|
+
'times;': '\xd7',
|
|
2209
|
+
'timesb;': '\u22a0',
|
|
2210
|
+
'timesbar;': '\u2a31',
|
|
2211
|
+
'timesd;': '\u2a30',
|
|
2212
|
+
'tint;': '\u222d',
|
|
2213
|
+
'toea;': '\u2928',
|
|
2214
|
+
'top;': '\u22a4',
|
|
2215
|
+
'topbot;': '\u2336',
|
|
2216
|
+
'topcir;': '\u2af1',
|
|
2217
|
+
'Topf;': '\U0001d54b',
|
|
2218
|
+
'topf;': '\U0001d565',
|
|
2219
|
+
'topfork;': '\u2ada',
|
|
2220
|
+
'tosa;': '\u2929',
|
|
2221
|
+
'tprime;': '\u2034',
|
|
2222
|
+
'TRADE;': '\u2122',
|
|
2223
|
+
'trade;': '\u2122',
|
|
2224
|
+
'triangle;': '\u25b5',
|
|
2225
|
+
'triangledown;': '\u25bf',
|
|
2226
|
+
'triangleleft;': '\u25c3',
|
|
2227
|
+
'trianglelefteq;': '\u22b4',
|
|
2228
|
+
'triangleq;': '\u225c',
|
|
2229
|
+
'triangleright;': '\u25b9',
|
|
2230
|
+
'trianglerighteq;': '\u22b5',
|
|
2231
|
+
'tridot;': '\u25ec',
|
|
2232
|
+
'trie;': '\u225c',
|
|
2233
|
+
'triminus;': '\u2a3a',
|
|
2234
|
+
'TripleDot;': '\u20db',
|
|
2235
|
+
'triplus;': '\u2a39',
|
|
2236
|
+
'trisb;': '\u29cd',
|
|
2237
|
+
'tritime;': '\u2a3b',
|
|
2238
|
+
'trpezium;': '\u23e2',
|
|
2239
|
+
'Tscr;': '\U0001d4af',
|
|
2240
|
+
'tscr;': '\U0001d4c9',
|
|
2241
|
+
'TScy;': '\u0426',
|
|
2242
|
+
'tscy;': '\u0446',
|
|
2243
|
+
'TSHcy;': '\u040b',
|
|
2244
|
+
'tshcy;': '\u045b',
|
|
2245
|
+
'Tstrok;': '\u0166',
|
|
2246
|
+
'tstrok;': '\u0167',
|
|
2247
|
+
'twixt;': '\u226c',
|
|
2248
|
+
'twoheadleftarrow;': '\u219e',
|
|
2249
|
+
'twoheadrightarrow;': '\u21a0',
|
|
2250
|
+
'Uacute': '\xda',
|
|
2251
|
+
'uacute': '\xfa',
|
|
2252
|
+
'Uacute;': '\xda',
|
|
2253
|
+
'uacute;': '\xfa',
|
|
2254
|
+
'Uarr;': '\u219f',
|
|
2255
|
+
'uArr;': '\u21d1',
|
|
2256
|
+
'uarr;': '\u2191',
|
|
2257
|
+
'Uarrocir;': '\u2949',
|
|
2258
|
+
'Ubrcy;': '\u040e',
|
|
2259
|
+
'ubrcy;': '\u045e',
|
|
2260
|
+
'Ubreve;': '\u016c',
|
|
2261
|
+
'ubreve;': '\u016d',
|
|
2262
|
+
'Ucirc': '\xdb',
|
|
2263
|
+
'ucirc': '\xfb',
|
|
2264
|
+
'Ucirc;': '\xdb',
|
|
2265
|
+
'ucirc;': '\xfb',
|
|
2266
|
+
'Ucy;': '\u0423',
|
|
2267
|
+
'ucy;': '\u0443',
|
|
2268
|
+
'udarr;': '\u21c5',
|
|
2269
|
+
'Udblac;': '\u0170',
|
|
2270
|
+
'udblac;': '\u0171',
|
|
2271
|
+
'udhar;': '\u296e',
|
|
2272
|
+
'ufisht;': '\u297e',
|
|
2273
|
+
'Ufr;': '\U0001d518',
|
|
2274
|
+
'ufr;': '\U0001d532',
|
|
2275
|
+
'Ugrave': '\xd9',
|
|
2276
|
+
'ugrave': '\xf9',
|
|
2277
|
+
'Ugrave;': '\xd9',
|
|
2278
|
+
'ugrave;': '\xf9',
|
|
2279
|
+
'uHar;': '\u2963',
|
|
2280
|
+
'uharl;': '\u21bf',
|
|
2281
|
+
'uharr;': '\u21be',
|
|
2282
|
+
'uhblk;': '\u2580',
|
|
2283
|
+
'ulcorn;': '\u231c',
|
|
2284
|
+
'ulcorner;': '\u231c',
|
|
2285
|
+
'ulcrop;': '\u230f',
|
|
2286
|
+
'ultri;': '\u25f8',
|
|
2287
|
+
'Umacr;': '\u016a',
|
|
2288
|
+
'umacr;': '\u016b',
|
|
2289
|
+
'uml': '\xa8',
|
|
2290
|
+
'uml;': '\xa8',
|
|
2291
|
+
'UnderBar;': '_',
|
|
2292
|
+
'UnderBrace;': '\u23df',
|
|
2293
|
+
'UnderBracket;': '\u23b5',
|
|
2294
|
+
'UnderParenthesis;': '\u23dd',
|
|
2295
|
+
'Union;': '\u22c3',
|
|
2296
|
+
'UnionPlus;': '\u228e',
|
|
2297
|
+
'Uogon;': '\u0172',
|
|
2298
|
+
'uogon;': '\u0173',
|
|
2299
|
+
'Uopf;': '\U0001d54c',
|
|
2300
|
+
'uopf;': '\U0001d566',
|
|
2301
|
+
'UpArrow;': '\u2191',
|
|
2302
|
+
'Uparrow;': '\u21d1',
|
|
2303
|
+
'uparrow;': '\u2191',
|
|
2304
|
+
'UpArrowBar;': '\u2912',
|
|
2305
|
+
'UpArrowDownArrow;': '\u21c5',
|
|
2306
|
+
'UpDownArrow;': '\u2195',
|
|
2307
|
+
'Updownarrow;': '\u21d5',
|
|
2308
|
+
'updownarrow;': '\u2195',
|
|
2309
|
+
'UpEquilibrium;': '\u296e',
|
|
2310
|
+
'upharpoonleft;': '\u21bf',
|
|
2311
|
+
'upharpoonright;': '\u21be',
|
|
2312
|
+
'uplus;': '\u228e',
|
|
2313
|
+
'UpperLeftArrow;': '\u2196',
|
|
2314
|
+
'UpperRightArrow;': '\u2197',
|
|
2315
|
+
'Upsi;': '\u03d2',
|
|
2316
|
+
'upsi;': '\u03c5',
|
|
2317
|
+
'upsih;': '\u03d2',
|
|
2318
|
+
'Upsilon;': '\u03a5',
|
|
2319
|
+
'upsilon;': '\u03c5',
|
|
2320
|
+
'UpTee;': '\u22a5',
|
|
2321
|
+
'UpTeeArrow;': '\u21a5',
|
|
2322
|
+
'upuparrows;': '\u21c8',
|
|
2323
|
+
'urcorn;': '\u231d',
|
|
2324
|
+
'urcorner;': '\u231d',
|
|
2325
|
+
'urcrop;': '\u230e',
|
|
2326
|
+
'Uring;': '\u016e',
|
|
2327
|
+
'uring;': '\u016f',
|
|
2328
|
+
'urtri;': '\u25f9',
|
|
2329
|
+
'Uscr;': '\U0001d4b0',
|
|
2330
|
+
'uscr;': '\U0001d4ca',
|
|
2331
|
+
'utdot;': '\u22f0',
|
|
2332
|
+
'Utilde;': '\u0168',
|
|
2333
|
+
'utilde;': '\u0169',
|
|
2334
|
+
'utri;': '\u25b5',
|
|
2335
|
+
'utrif;': '\u25b4',
|
|
2336
|
+
'uuarr;': '\u21c8',
|
|
2337
|
+
'Uuml': '\xdc',
|
|
2338
|
+
'uuml': '\xfc',
|
|
2339
|
+
'Uuml;': '\xdc',
|
|
2340
|
+
'uuml;': '\xfc',
|
|
2341
|
+
'uwangle;': '\u29a7',
|
|
2342
|
+
'vangrt;': '\u299c',
|
|
2343
|
+
'varepsilon;': '\u03f5',
|
|
2344
|
+
'varkappa;': '\u03f0',
|
|
2345
|
+
'varnothing;': '\u2205',
|
|
2346
|
+
'varphi;': '\u03d5',
|
|
2347
|
+
'varpi;': '\u03d6',
|
|
2348
|
+
'varpropto;': '\u221d',
|
|
2349
|
+
'vArr;': '\u21d5',
|
|
2350
|
+
'varr;': '\u2195',
|
|
2351
|
+
'varrho;': '\u03f1',
|
|
2352
|
+
'varsigma;': '\u03c2',
|
|
2353
|
+
'varsubsetneq;': '\u228a\ufe00',
|
|
2354
|
+
'varsubsetneqq;': '\u2acb\ufe00',
|
|
2355
|
+
'varsupsetneq;': '\u228b\ufe00',
|
|
2356
|
+
'varsupsetneqq;': '\u2acc\ufe00',
|
|
2357
|
+
'vartheta;': '\u03d1',
|
|
2358
|
+
'vartriangleleft;': '\u22b2',
|
|
2359
|
+
'vartriangleright;': '\u22b3',
|
|
2360
|
+
'Vbar;': '\u2aeb',
|
|
2361
|
+
'vBar;': '\u2ae8',
|
|
2362
|
+
'vBarv;': '\u2ae9',
|
|
2363
|
+
'Vcy;': '\u0412',
|
|
2364
|
+
'vcy;': '\u0432',
|
|
2365
|
+
'VDash;': '\u22ab',
|
|
2366
|
+
'Vdash;': '\u22a9',
|
|
2367
|
+
'vDash;': '\u22a8',
|
|
2368
|
+
'vdash;': '\u22a2',
|
|
2369
|
+
'Vdashl;': '\u2ae6',
|
|
2370
|
+
'Vee;': '\u22c1',
|
|
2371
|
+
'vee;': '\u2228',
|
|
2372
|
+
'veebar;': '\u22bb',
|
|
2373
|
+
'veeeq;': '\u225a',
|
|
2374
|
+
'vellip;': '\u22ee',
|
|
2375
|
+
'Verbar;': '\u2016',
|
|
2376
|
+
'verbar;': '|',
|
|
2377
|
+
'Vert;': '\u2016',
|
|
2378
|
+
'vert;': '|',
|
|
2379
|
+
'VerticalBar;': '\u2223',
|
|
2380
|
+
'VerticalLine;': '|',
|
|
2381
|
+
'VerticalSeparator;': '\u2758',
|
|
2382
|
+
'VerticalTilde;': '\u2240',
|
|
2383
|
+
'VeryThinSpace;': '\u200a',
|
|
2384
|
+
'Vfr;': '\U0001d519',
|
|
2385
|
+
'vfr;': '\U0001d533',
|
|
2386
|
+
'vltri;': '\u22b2',
|
|
2387
|
+
'vnsub;': '\u2282\u20d2',
|
|
2388
|
+
'vnsup;': '\u2283\u20d2',
|
|
2389
|
+
'Vopf;': '\U0001d54d',
|
|
2390
|
+
'vopf;': '\U0001d567',
|
|
2391
|
+
'vprop;': '\u221d',
|
|
2392
|
+
'vrtri;': '\u22b3',
|
|
2393
|
+
'Vscr;': '\U0001d4b1',
|
|
2394
|
+
'vscr;': '\U0001d4cb',
|
|
2395
|
+
'vsubnE;': '\u2acb\ufe00',
|
|
2396
|
+
'vsubne;': '\u228a\ufe00',
|
|
2397
|
+
'vsupnE;': '\u2acc\ufe00',
|
|
2398
|
+
'vsupne;': '\u228b\ufe00',
|
|
2399
|
+
'Vvdash;': '\u22aa',
|
|
2400
|
+
'vzigzag;': '\u299a',
|
|
2401
|
+
'Wcirc;': '\u0174',
|
|
2402
|
+
'wcirc;': '\u0175',
|
|
2403
|
+
'wedbar;': '\u2a5f',
|
|
2404
|
+
'Wedge;': '\u22c0',
|
|
2405
|
+
'wedge;': '\u2227',
|
|
2406
|
+
'wedgeq;': '\u2259',
|
|
2407
|
+
'weierp;': '\u2118',
|
|
2408
|
+
'Wfr;': '\U0001d51a',
|
|
2409
|
+
'wfr;': '\U0001d534',
|
|
2410
|
+
'Wopf;': '\U0001d54e',
|
|
2411
|
+
'wopf;': '\U0001d568',
|
|
2412
|
+
'wp;': '\u2118',
|
|
2413
|
+
'wr;': '\u2240',
|
|
2414
|
+
'wreath;': '\u2240',
|
|
2415
|
+
'Wscr;': '\U0001d4b2',
|
|
2416
|
+
'wscr;': '\U0001d4cc',
|
|
2417
|
+
'xcap;': '\u22c2',
|
|
2418
|
+
'xcirc;': '\u25ef',
|
|
2419
|
+
'xcup;': '\u22c3',
|
|
2420
|
+
'xdtri;': '\u25bd',
|
|
2421
|
+
'Xfr;': '\U0001d51b',
|
|
2422
|
+
'xfr;': '\U0001d535',
|
|
2423
|
+
'xhArr;': '\u27fa',
|
|
2424
|
+
'xharr;': '\u27f7',
|
|
2425
|
+
'Xi;': '\u039e',
|
|
2426
|
+
'xi;': '\u03be',
|
|
2427
|
+
'xlArr;': '\u27f8',
|
|
2428
|
+
'xlarr;': '\u27f5',
|
|
2429
|
+
'xmap;': '\u27fc',
|
|
2430
|
+
'xnis;': '\u22fb',
|
|
2431
|
+
'xodot;': '\u2a00',
|
|
2432
|
+
'Xopf;': '\U0001d54f',
|
|
2433
|
+
'xopf;': '\U0001d569',
|
|
2434
|
+
'xoplus;': '\u2a01',
|
|
2435
|
+
'xotime;': '\u2a02',
|
|
2436
|
+
'xrArr;': '\u27f9',
|
|
2437
|
+
'xrarr;': '\u27f6',
|
|
2438
|
+
'Xscr;': '\U0001d4b3',
|
|
2439
|
+
'xscr;': '\U0001d4cd',
|
|
2440
|
+
'xsqcup;': '\u2a06',
|
|
2441
|
+
'xuplus;': '\u2a04',
|
|
2442
|
+
'xutri;': '\u25b3',
|
|
2443
|
+
'xvee;': '\u22c1',
|
|
2444
|
+
'xwedge;': '\u22c0',
|
|
2445
|
+
'Yacute': '\xdd',
|
|
2446
|
+
'yacute': '\xfd',
|
|
2447
|
+
'Yacute;': '\xdd',
|
|
2448
|
+
'yacute;': '\xfd',
|
|
2449
|
+
'YAcy;': '\u042f',
|
|
2450
|
+
'yacy;': '\u044f',
|
|
2451
|
+
'Ycirc;': '\u0176',
|
|
2452
|
+
'ycirc;': '\u0177',
|
|
2453
|
+
'Ycy;': '\u042b',
|
|
2454
|
+
'ycy;': '\u044b',
|
|
2455
|
+
'yen': '\xa5',
|
|
2456
|
+
'yen;': '\xa5',
|
|
2457
|
+
'Yfr;': '\U0001d51c',
|
|
2458
|
+
'yfr;': '\U0001d536',
|
|
2459
|
+
'YIcy;': '\u0407',
|
|
2460
|
+
'yicy;': '\u0457',
|
|
2461
|
+
'Yopf;': '\U0001d550',
|
|
2462
|
+
'yopf;': '\U0001d56a',
|
|
2463
|
+
'Yscr;': '\U0001d4b4',
|
|
2464
|
+
'yscr;': '\U0001d4ce',
|
|
2465
|
+
'YUcy;': '\u042e',
|
|
2466
|
+
'yucy;': '\u044e',
|
|
2467
|
+
'yuml': '\xff',
|
|
2468
|
+
'Yuml;': '\u0178',
|
|
2469
|
+
'yuml;': '\xff',
|
|
2470
|
+
'Zacute;': '\u0179',
|
|
2471
|
+
'zacute;': '\u017a',
|
|
2472
|
+
'Zcaron;': '\u017d',
|
|
2473
|
+
'zcaron;': '\u017e',
|
|
2474
|
+
'Zcy;': '\u0417',
|
|
2475
|
+
'zcy;': '\u0437',
|
|
2476
|
+
'Zdot;': '\u017b',
|
|
2477
|
+
'zdot;': '\u017c',
|
|
2478
|
+
'zeetrf;': '\u2128',
|
|
2479
|
+
'ZeroWidthSpace;': '\u200b',
|
|
2480
|
+
'Zeta;': '\u0396',
|
|
2481
|
+
'zeta;': '\u03b6',
|
|
2482
|
+
'Zfr;': '\u2128',
|
|
2483
|
+
'zfr;': '\U0001d537',
|
|
2484
|
+
'ZHcy;': '\u0416',
|
|
2485
|
+
'zhcy;': '\u0436',
|
|
2486
|
+
'zigrarr;': '\u21dd',
|
|
2487
|
+
'Zopf;': '\u2124',
|
|
2488
|
+
'zopf;': '\U0001d56b',
|
|
2489
|
+
'Zscr;': '\U0001d4b5',
|
|
2490
|
+
'zscr;': '\U0001d4cf',
|
|
2491
|
+
'zwj;': '\u200d',
|
|
2492
|
+
'zwnj;': '\u200c',
|
|
2493
|
+
}
|
|
2494
|
+
|
|
2495
|
+
# maps the Unicode codepoint to the HTML entity name
|
|
2496
|
+
codepoint2name = {}
|
|
2497
|
+
|
|
2498
|
+
# maps the HTML entity name to the character
|
|
2499
|
+
# (or a character reference if the character is outside the Latin-1 range)
|
|
2500
|
+
entitydefs = {}
|
|
2501
|
+
|
|
2502
|
+
for (name, codepoint) in name2codepoint.items():
|
|
2503
|
+
codepoint2name[codepoint] = name
|
|
2504
|
+
entitydefs[name] = chr(codepoint)
|
|
2505
|
+
|
|
2506
|
+
del name, codepoint
|