├── .gitignore ├── 3rdparty └── Python310 │ ├── include │ ├── Python.h │ ├── abstract.h │ ├── bltinmodule.h │ ├── boolobject.h │ ├── bytearrayobject.h │ ├── bytesobject.h │ ├── cellobject.h │ ├── ceval.h │ ├── classobject.h │ ├── code.h │ ├── codecs.h │ ├── compile.h │ ├── complexobject.h │ ├── context.h │ ├── cpython │ │ ├── abstract.h │ │ ├── bytearrayobject.h │ │ ├── bytesobject.h │ │ ├── ceval.h │ │ ├── code.h │ │ ├── compile.h │ │ ├── dictobject.h │ │ ├── fileobject.h │ │ ├── fileutils.h │ │ ├── frameobject.h │ │ ├── import.h │ │ ├── initconfig.h │ │ ├── interpreteridobject.h │ │ ├── listobject.h │ │ ├── methodobject.h │ │ ├── object.h │ │ ├── objimpl.h │ │ ├── odictobject.h │ │ ├── picklebufobject.h │ │ ├── pyctype.h │ │ ├── pydebug.h │ │ ├── pyerrors.h │ │ ├── pyfpe.h │ │ ├── pylifecycle.h │ │ ├── pymem.h │ │ ├── pystate.h │ │ ├── pythonrun.h │ │ ├── pytime.h │ │ ├── sysmodule.h │ │ ├── traceback.h │ │ ├── tupleobject.h │ │ └── unicodeobject.h │ ├── datetime.h │ ├── descrobject.h │ ├── dictobject.h │ ├── dynamic_annotations.h │ ├── enumobject.h │ ├── errcode.h │ ├── eval.h │ ├── exports.h │ ├── fileobject.h │ ├── fileutils.h │ ├── floatobject.h │ ├── frameobject.h │ ├── funcobject.h │ ├── genericaliasobject.h │ ├── genobject.h │ ├── import.h │ ├── internal │ │ ├── pycore_abstract.h │ │ ├── pycore_accu.h │ │ ├── pycore_asdl.h │ │ ├── pycore_ast.h │ │ ├── pycore_ast_state.h │ │ ├── pycore_atomic.h │ │ ├── pycore_atomic_funcs.h │ │ ├── pycore_bitutils.h │ │ ├── pycore_blocks_output_buffer.h │ │ ├── pycore_bytes_methods.h │ │ ├── pycore_call.h │ │ ├── pycore_ceval.h │ │ ├── pycore_code.h │ │ ├── pycore_compile.h │ │ ├── pycore_condvar.h │ │ ├── pycore_context.h │ │ ├── pycore_dtoa.h │ │ ├── pycore_fileutils.h │ │ ├── pycore_format.h │ │ ├── pycore_gc.h │ │ ├── pycore_getopt.h │ │ ├── pycore_gil.h │ │ ├── pycore_hamt.h │ │ ├── pycore_hashtable.h │ │ ├── pycore_import.h │ │ ├── pycore_initconfig.h │ │ ├── pycore_interp.h │ │ ├── pycore_list.h │ │ ├── pycore_long.h │ │ ├── pycore_moduleobject.h │ │ ├── pycore_object.h │ │ ├── pycore_parser.h │ │ ├── pycore_pathconfig.h │ │ ├── pycore_pyarena.h │ │ ├── pycore_pyerrors.h │ │ ├── pycore_pyhash.h │ │ ├── pycore_pylifecycle.h │ │ ├── pycore_pymem.h │ │ ├── pycore_pystate.h │ │ ├── pycore_runtime.h │ │ ├── pycore_structseq.h │ │ ├── pycore_symtable.h │ │ ├── pycore_sysmodule.h │ │ ├── pycore_traceback.h │ │ ├── pycore_tuple.h │ │ ├── pycore_ucnhash.h │ │ ├── pycore_unionobject.h │ │ └── pycore_warnings.h │ ├── interpreteridobject.h │ ├── intrcheck.h │ ├── iterobject.h │ ├── listobject.h │ ├── longintrepr.h │ ├── longobject.h │ ├── marshal.h │ ├── memoryobject.h │ ├── methodobject.h │ ├── modsupport.h │ ├── moduleobject.h │ ├── namespaceobject.h │ ├── object.h │ ├── objimpl.h │ ├── opcode.h │ ├── osdefs.h │ ├── osmodule.h │ ├── patchlevel.h │ ├── py_curses.h │ ├── pycapsule.h │ ├── pyconfig.h │ ├── pydtrace.h │ ├── pyerrors.h │ ├── pyexpat.h │ ├── pyframe.h │ ├── pyhash.h │ ├── pylifecycle.h │ ├── pymacconfig.h │ ├── pymacro.h │ ├── pymath.h │ ├── pymem.h │ ├── pyport.h │ ├── pystate.h │ ├── pystrcmp.h │ ├── pystrhex.h │ ├── pystrtod.h │ ├── pythonrun.h │ ├── pythread.h │ ├── rangeobject.h │ ├── setobject.h │ ├── sliceobject.h │ ├── structmember.h │ ├── structseq.h │ ├── sysmodule.h │ ├── token.h │ ├── traceback.h │ ├── tracemalloc.h │ ├── tupleobject.h │ ├── typeslots.h │ ├── unicodeobject.h │ ├── warnings.h │ └── weakrefobject.h │ └── libs │ ├── _tkinter.lib │ ├── python3.lib │ └── python310.lib ├── LICENSE ├── QtPythonDocx.pri ├── QtPythonDocx.pro ├── README.md ├── bin ├── QtPythonDocx.exe ├── python3.dll ├── python310.dll ├── python310 │ ├── DLLs │ │ ├── _asyncio.pyd │ │ ├── _bz2.pyd │ │ ├── _ctypes.pyd │ │ ├── _ctypes_test.pyd │ │ ├── _decimal.pyd │ │ ├── _elementtree.pyd │ │ ├── _hashlib.pyd │ │ ├── _lzma.pyd │ │ ├── _msi.pyd │ │ ├── _multiprocessing.pyd │ │ ├── _overlapped.pyd │ │ ├── _queue.pyd │ │ ├── _socket.pyd │ │ ├── _sqlite3.pyd │ │ ├── _ssl.pyd │ │ ├── _testbuffer.pyd │ │ ├── _testcapi.pyd │ │ ├── _testconsole.pyd │ │ ├── _testimportmultiple.pyd │ │ ├── _testinternalcapi.pyd │ │ ├── _testmultiphase.pyd │ │ ├── _tkinter.pyd │ │ ├── _uuid.pyd │ │ ├── _zoneinfo.pyd │ │ ├── libcrypto-1_1.dll │ │ ├── libffi-7.dll │ │ ├── libssl-1_1.dll │ │ ├── py.ico │ │ ├── pyc.ico │ │ ├── pyd.ico │ │ ├── pyexpat.pyd │ │ ├── python_lib.cat │ │ ├── python_tools.cat │ │ ├── select.pyd │ │ ├── sqlite3.dll │ │ ├── tcl86t.dll │ │ ├── tk86t.dll │ │ ├── unicodedata.pyd │ │ └── winsound.pyd │ └── Lib │ │ ├── __future__.py │ │ ├── __phello__.foo.py │ │ ├── __pycache__ │ │ ├── __future__.cpython-310.pyc │ │ ├── _collections_abc.cpython-310.pyc │ │ ├── _compat_pickle.cpython-310.pyc │ │ ├── _compression.cpython-310.pyc │ │ ├── _markupbase.cpython-310.pyc │ │ ├── _sitebuiltins.cpython-310.pyc │ │ ├── _strptime.cpython-310.pyc │ │ ├── _weakrefset.cpython-310.pyc │ │ ├── abc.cpython-310.pyc │ │ ├── argparse.cpython-310.pyc │ │ ├── ast.cpython-310.pyc │ │ ├── base64.cpython-310.pyc │ │ ├── bisect.cpython-310.pyc │ │ ├── bz2.cpython-310.pyc │ │ ├── calendar.cpython-310.pyc │ │ ├── code.cpython-310.pyc │ │ ├── codecs.cpython-310.pyc │ │ ├── codeop.cpython-310.pyc │ │ ├── colorsys.cpython-310.pyc │ │ ├── compileall.cpython-310.pyc │ │ ├── configparser.cpython-310.pyc │ │ ├── contextlib.cpython-310.pyc │ │ ├── contextvars.cpython-310.pyc │ │ ├── copy.cpython-310.pyc │ │ ├── copyreg.cpython-310.pyc │ │ ├── csv.cpython-310.pyc │ │ ├── dataclasses.cpython-310.pyc │ │ ├── datetime.cpython-310.pyc │ │ ├── decimal.cpython-310.pyc │ │ ├── difflib.cpython-310.pyc │ │ ├── dis.cpython-310.pyc │ │ ├── enum.cpython-310.pyc │ │ ├── filecmp.cpython-310.pyc │ │ ├── fnmatch.cpython-310.pyc │ │ ├── fractions.cpython-310.pyc │ │ ├── functools.cpython-310.pyc │ │ ├── genericpath.cpython-310.pyc │ │ ├── getopt.cpython-310.pyc │ │ ├── getpass.cpython-310.pyc │ │ ├── gettext.cpython-310.pyc │ │ ├── glob.cpython-310.pyc │ │ ├── gzip.cpython-310.pyc │ │ ├── hashlib.cpython-310.pyc │ │ ├── heapq.cpython-310.pyc │ │ ├── hmac.cpython-310.pyc │ │ ├── inspect.cpython-310.pyc │ │ ├── io.cpython-310.pyc │ │ ├── ipaddress.cpython-310.pyc │ │ ├── keyword.cpython-310.pyc │ │ ├── linecache.cpython-310.pyc │ │ ├── locale.cpython-310.pyc │ │ ├── lzma.cpython-310.pyc │ │ ├── mimetypes.cpython-310.pyc │ │ ├── netrc.cpython-310.pyc │ │ ├── ntpath.cpython-310.pyc │ │ ├── nturl2path.cpython-310.pyc │ │ ├── numbers.cpython-310.pyc │ │ ├── opcode.cpython-310.pyc │ │ ├── operator.cpython-310.pyc │ │ ├── optparse.cpython-310.pyc │ │ ├── os.cpython-310.pyc │ │ ├── pathlib.cpython-310.pyc │ │ ├── pickle.cpython-310.pyc │ │ ├── pkgutil.cpython-310.pyc │ │ ├── platform.cpython-310.pyc │ │ ├── plistlib.cpython-310.pyc │ │ ├── posixpath.cpython-310.pyc │ │ ├── pprint.cpython-310.pyc │ │ ├── py_compile.cpython-310.pyc │ │ ├── pydoc.cpython-310.pyc │ │ ├── queue.cpython-310.pyc │ │ ├── quopri.cpython-310.pyc │ │ ├── random.cpython-310.pyc │ │ ├── re.cpython-310.pyc │ │ ├── reprlib.cpython-310.pyc │ │ ├── runpy.cpython-310.pyc │ │ ├── selectors.cpython-310.pyc │ │ ├── shlex.cpython-310.pyc │ │ ├── shutil.cpython-310.pyc │ │ ├── signal.cpython-310.pyc │ │ ├── site.cpython-310.pyc │ │ ├── socket.cpython-310.pyc │ │ ├── socketserver.cpython-310.pyc │ │ ├── sre_compile.cpython-310.pyc │ │ ├── sre_constants.cpython-310.pyc │ │ ├── sre_parse.cpython-310.pyc │ │ ├── ssl.cpython-310.pyc │ │ ├── stat.cpython-310.pyc │ │ ├── string.cpython-310.pyc │ │ ├── stringprep.cpython-310.pyc │ │ ├── struct.cpython-310.pyc │ │ ├── subprocess.cpython-310.pyc │ │ ├── sysconfig.cpython-310.pyc │ │ ├── tarfile.cpython-310.pyc │ │ ├── tempfile.cpython-310.pyc │ │ ├── textwrap.cpython-310.pyc │ │ ├── threading.cpython-310.pyc │ │ ├── token.cpython-310.pyc │ │ ├── tokenize.cpython-310.pyc │ │ ├── traceback.cpython-310.pyc │ │ ├── types.cpython-310.pyc │ │ ├── typing.cpython-310.pyc │ │ ├── uu.cpython-310.pyc │ │ ├── uuid.cpython-310.pyc │ │ ├── warnings.cpython-310.pyc │ │ ├── weakref.cpython-310.pyc │ │ └── zipfile.cpython-310.pyc │ │ ├── _aix_support.py │ │ ├── _bootsubprocess.py │ │ ├── _collections_abc.py │ │ ├── _compat_pickle.py │ │ ├── _compression.py │ │ ├── _markupbase.py │ │ ├── _osx_support.py │ │ ├── _py_abc.py │ │ ├── _pydecimal.py │ │ ├── _pyio.py │ │ ├── _sitebuiltins.py │ │ ├── _strptime.py │ │ ├── _threading_local.py │ │ ├── _weakrefset.py │ │ ├── abc.py │ │ ├── aifc.py │ │ ├── antigravity.py │ │ ├── argparse.py │ │ ├── ast.py │ │ ├── asynchat.py │ │ ├── asyncio │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── base_events.cpython-310.pyc │ │ │ ├── base_futures.cpython-310.pyc │ │ │ ├── base_subprocess.cpython-310.pyc │ │ │ ├── base_tasks.cpython-310.pyc │ │ │ ├── constants.cpython-310.pyc │ │ │ ├── coroutines.cpython-310.pyc │ │ │ ├── events.cpython-310.pyc │ │ │ ├── exceptions.cpython-310.pyc │ │ │ ├── format_helpers.cpython-310.pyc │ │ │ ├── futures.cpython-310.pyc │ │ │ ├── locks.cpython-310.pyc │ │ │ ├── log.cpython-310.pyc │ │ │ ├── mixins.cpython-310.pyc │ │ │ ├── proactor_events.cpython-310.pyc │ │ │ ├── protocols.cpython-310.pyc │ │ │ ├── queues.cpython-310.pyc │ │ │ ├── runners.cpython-310.pyc │ │ │ ├── selector_events.cpython-310.pyc │ │ │ ├── sslproto.cpython-310.pyc │ │ │ ├── staggered.cpython-310.pyc │ │ │ ├── streams.cpython-310.pyc │ │ │ ├── subprocess.cpython-310.pyc │ │ │ ├── tasks.cpython-310.pyc │ │ │ ├── threads.cpython-310.pyc │ │ │ ├── transports.cpython-310.pyc │ │ │ ├── trsock.cpython-310.pyc │ │ │ ├── windows_events.cpython-310.pyc │ │ │ └── windows_utils.cpython-310.pyc │ │ ├── base_events.py │ │ ├── base_futures.py │ │ ├── base_subprocess.py │ │ ├── base_tasks.py │ │ ├── constants.py │ │ ├── coroutines.py │ │ ├── events.py │ │ ├── exceptions.py │ │ ├── format_helpers.py │ │ ├── futures.py │ │ ├── locks.py │ │ ├── log.py │ │ ├── mixins.py │ │ ├── proactor_events.py │ │ ├── protocols.py │ │ ├── queues.py │ │ ├── runners.py │ │ ├── selector_events.py │ │ ├── sslproto.py │ │ ├── staggered.py │ │ ├── streams.py │ │ ├── subprocess.py │ │ ├── tasks.py │ │ ├── threads.py │ │ ├── transports.py │ │ ├── trsock.py │ │ ├── unix_events.py │ │ ├── windows_events.py │ │ └── windows_utils.py │ │ ├── asyncore.py │ │ ├── base64.py │ │ ├── bdb.py │ │ ├── binhex.py │ │ ├── bisect.py │ │ ├── bz2.py │ │ ├── cProfile.py │ │ ├── calendar.py │ │ ├── cgi.py │ │ ├── cgitb.py │ │ ├── chunk.py │ │ ├── cmd.py │ │ ├── code.py │ │ ├── codecs.py │ │ ├── codeop.py │ │ ├── collections │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ └── abc.cpython-310.pyc │ │ └── abc.py │ │ ├── colorsys.py │ │ ├── compileall.py │ │ ├── concurrent │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-310.pyc │ │ └── futures │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ └── _base.cpython-310.pyc │ │ │ ├── _base.py │ │ │ ├── process.py │ │ │ └── thread.py │ │ ├── configparser.py │ │ ├── contextlib.py │ │ ├── contextvars.py │ │ ├── copy.py │ │ ├── copyreg.py │ │ ├── crypt.py │ │ ├── csv.py │ │ ├── ctypes │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── _endian.cpython-310.pyc │ │ │ └── wintypes.cpython-310.pyc │ │ ├── _aix.py │ │ ├── _endian.py │ │ ├── macholib │ │ │ ├── README.ctypes │ │ │ ├── __init__.py │ │ │ ├── dyld.py │ │ │ ├── dylib.py │ │ │ ├── fetch_macholib │ │ │ ├── fetch_macholib.bat │ │ │ └── framework.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── test_anon.py │ │ │ ├── test_array_in_pointer.py │ │ │ ├── test_arrays.py │ │ │ ├── test_as_parameter.py │ │ │ ├── test_bitfields.py │ │ │ ├── test_buffers.py │ │ │ ├── test_bytes.py │ │ │ ├── test_byteswap.py │ │ │ ├── test_callbacks.py │ │ │ ├── test_cast.py │ │ │ ├── test_cfuncs.py │ │ │ ├── test_checkretval.py │ │ │ ├── test_delattr.py │ │ │ ├── test_errno.py │ │ │ ├── test_find.py │ │ │ ├── test_frombuffer.py │ │ │ ├── test_funcptr.py │ │ │ ├── test_functions.py │ │ │ ├── test_incomplete.py │ │ │ ├── test_init.py │ │ │ ├── test_internals.py │ │ │ ├── test_keeprefs.py │ │ │ ├── test_libc.py │ │ │ ├── test_loading.py │ │ │ ├── test_macholib.py │ │ │ ├── test_memfunctions.py │ │ │ ├── test_numbers.py │ │ │ ├── test_objects.py │ │ │ ├── test_parameters.py │ │ │ ├── test_pep3118.py │ │ │ ├── test_pickling.py │ │ │ ├── test_pointers.py │ │ │ ├── test_prototypes.py │ │ │ ├── test_python_api.py │ │ │ ├── test_random_things.py │ │ │ ├── test_refcounts.py │ │ │ ├── test_repr.py │ │ │ ├── test_returnfuncptrs.py │ │ │ ├── test_simplesubclasses.py │ │ │ ├── test_sizes.py │ │ │ ├── test_slicing.py │ │ │ ├── test_stringptr.py │ │ │ ├── test_strings.py │ │ │ ├── test_struct_fields.py │ │ │ ├── test_structures.py │ │ │ ├── test_unaligned_structures.py │ │ │ ├── test_unicode.py │ │ │ ├── test_values.py │ │ │ ├── test_varsize_struct.py │ │ │ ├── test_win32.py │ │ │ └── test_wintypes.py │ │ ├── util.py │ │ └── wintypes.py │ │ ├── curses │ │ ├── __init__.py │ │ ├── ascii.py │ │ ├── has_key.py │ │ ├── panel.py │ │ └── textpad.py │ │ ├── dataclasses.py │ │ ├── datetime.py │ │ ├── dbm │ │ ├── __init__.py │ │ ├── dumb.py │ │ ├── gnu.py │ │ └── ndbm.py │ │ ├── decimal.py │ │ ├── difflib.py │ │ ├── dis.py │ │ ├── distutils │ │ ├── README │ │ ├── __init__.py │ │ ├── _msvccompiler.py │ │ ├── archive_util.py │ │ ├── bcppcompiler.py │ │ ├── ccompiler.py │ │ ├── cmd.py │ │ ├── command │ │ │ ├── __init__.py │ │ │ ├── bdist.py │ │ │ ├── bdist_dumb.py │ │ │ ├── bdist_msi.py │ │ │ ├── bdist_rpm.py │ │ │ ├── build.py │ │ │ ├── build_clib.py │ │ │ ├── build_ext.py │ │ │ ├── build_py.py │ │ │ ├── build_scripts.py │ │ │ ├── check.py │ │ │ ├── clean.py │ │ │ ├── command_template │ │ │ ├── config.py │ │ │ ├── install.py │ │ │ ├── install_data.py │ │ │ ├── install_egg_info.py │ │ │ ├── install_headers.py │ │ │ ├── install_lib.py │ │ │ ├── install_scripts.py │ │ │ ├── register.py │ │ │ ├── sdist.py │ │ │ └── upload.py │ │ ├── config.py │ │ ├── core.py │ │ ├── cygwinccompiler.py │ │ ├── debug.py │ │ ├── dep_util.py │ │ ├── dir_util.py │ │ ├── dist.py │ │ ├── errors.py │ │ ├── extension.py │ │ ├── fancy_getopt.py │ │ ├── file_util.py │ │ ├── filelist.py │ │ ├── log.py │ │ ├── msvc9compiler.py │ │ ├── msvccompiler.py │ │ ├── spawn.py │ │ ├── sysconfig.py │ │ ├── tests │ │ │ ├── Setup.sample │ │ │ ├── __init__.py │ │ │ ├── includetest.rst │ │ │ ├── support.py │ │ │ ├── test_archive_util.py │ │ │ ├── test_bdist.py │ │ │ ├── test_bdist_dumb.py │ │ │ ├── test_bdist_msi.py │ │ │ ├── test_bdist_rpm.py │ │ │ ├── test_build.py │ │ │ ├── test_build_clib.py │ │ │ ├── test_build_ext.py │ │ │ ├── test_build_py.py │ │ │ ├── test_build_scripts.py │ │ │ ├── test_check.py │ │ │ ├── test_clean.py │ │ │ ├── test_cmd.py │ │ │ ├── test_config.py │ │ │ ├── test_config_cmd.py │ │ │ ├── test_core.py │ │ │ ├── test_cygwinccompiler.py │ │ │ ├── test_dep_util.py │ │ │ ├── test_dir_util.py │ │ │ ├── test_dist.py │ │ │ ├── test_extension.py │ │ │ ├── test_file_util.py │ │ │ ├── test_filelist.py │ │ │ ├── test_install.py │ │ │ ├── test_install_data.py │ │ │ ├── test_install_headers.py │ │ │ ├── test_install_lib.py │ │ │ ├── test_install_scripts.py │ │ │ ├── test_log.py │ │ │ ├── test_msvc9compiler.py │ │ │ ├── test_msvccompiler.py │ │ │ ├── test_register.py │ │ │ ├── test_sdist.py │ │ │ ├── test_spawn.py │ │ │ ├── test_sysconfig.py │ │ │ ├── test_text_file.py │ │ │ ├── test_unixccompiler.py │ │ │ ├── test_upload.py │ │ │ ├── test_util.py │ │ │ ├── test_version.py │ │ │ └── test_versionpredicate.py │ │ ├── text_file.py │ │ ├── unixccompiler.py │ │ ├── util.py │ │ ├── version.py │ │ └── versionpredicate.py │ │ ├── doctest.py │ │ ├── email │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── _encoded_words.cpython-310.pyc │ │ │ ├── _header_value_parser.cpython-310.pyc │ │ │ ├── _parseaddr.cpython-310.pyc │ │ │ ├── _policybase.cpython-310.pyc │ │ │ ├── base64mime.cpython-310.pyc │ │ │ ├── charset.cpython-310.pyc │ │ │ ├── encoders.cpython-310.pyc │ │ │ ├── errors.cpython-310.pyc │ │ │ ├── feedparser.cpython-310.pyc │ │ │ ├── header.cpython-310.pyc │ │ │ ├── headerregistry.cpython-310.pyc │ │ │ ├── iterators.cpython-310.pyc │ │ │ ├── message.cpython-310.pyc │ │ │ ├── parser.cpython-310.pyc │ │ │ ├── quoprimime.cpython-310.pyc │ │ │ └── utils.cpython-310.pyc │ │ ├── _encoded_words.py │ │ ├── _header_value_parser.py │ │ ├── _parseaddr.py │ │ ├── _policybase.py │ │ ├── architecture.rst │ │ ├── base64mime.py │ │ ├── charset.py │ │ ├── contentmanager.py │ │ ├── encoders.py │ │ ├── errors.py │ │ ├── feedparser.py │ │ ├── generator.py │ │ ├── header.py │ │ ├── headerregistry.py │ │ ├── iterators.py │ │ ├── message.py │ │ ├── mime │ │ │ ├── __init__.py │ │ │ ├── application.py │ │ │ ├── audio.py │ │ │ ├── base.py │ │ │ ├── image.py │ │ │ ├── message.py │ │ │ ├── multipart.py │ │ │ ├── nonmultipart.py │ │ │ └── text.py │ │ ├── parser.py │ │ ├── policy.py │ │ ├── quoprimime.py │ │ └── utils.py │ │ ├── encodings │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── aliases.cpython-310.pyc │ │ │ ├── ascii.cpython-310.pyc │ │ │ ├── cp437.cpython-310.pyc │ │ │ ├── gbk.cpython-310.pyc │ │ │ ├── hex_codec.cpython-310.pyc │ │ │ ├── idna.cpython-310.pyc │ │ │ ├── latin_1.cpython-310.pyc │ │ │ └── utf_8.cpython-310.pyc │ │ ├── aliases.py │ │ ├── ascii.py │ │ ├── base64_codec.py │ │ ├── big5.py │ │ ├── big5hkscs.py │ │ ├── bz2_codec.py │ │ ├── charmap.py │ │ ├── cp037.py │ │ ├── cp1006.py │ │ ├── cp1026.py │ │ ├── cp1125.py │ │ ├── cp1140.py │ │ ├── cp1250.py │ │ ├── cp1251.py │ │ ├── cp1252.py │ │ ├── cp1253.py │ │ ├── cp1254.py │ │ ├── cp1255.py │ │ ├── cp1256.py │ │ ├── cp1257.py │ │ ├── cp1258.py │ │ ├── cp273.py │ │ ├── cp424.py │ │ ├── cp437.py │ │ ├── cp500.py │ │ ├── cp720.py │ │ ├── cp737.py │ │ ├── cp775.py │ │ ├── cp850.py │ │ ├── cp852.py │ │ ├── cp855.py │ │ ├── cp856.py │ │ ├── cp857.py │ │ ├── cp858.py │ │ ├── cp860.py │ │ ├── cp861.py │ │ ├── cp862.py │ │ ├── cp863.py │ │ ├── cp864.py │ │ ├── cp865.py │ │ ├── cp866.py │ │ ├── cp869.py │ │ ├── cp874.py │ │ ├── cp875.py │ │ ├── cp932.py │ │ ├── cp949.py │ │ ├── cp950.py │ │ ├── euc_jis_2004.py │ │ ├── euc_jisx0213.py │ │ ├── euc_jp.py │ │ ├── euc_kr.py │ │ ├── gb18030.py │ │ ├── gb2312.py │ │ ├── gbk.py │ │ ├── hex_codec.py │ │ ├── hp_roman8.py │ │ ├── hz.py │ │ ├── idna.py │ │ ├── iso2022_jp.py │ │ ├── iso2022_jp_1.py │ │ ├── iso2022_jp_2.py │ │ ├── iso2022_jp_2004.py │ │ ├── iso2022_jp_3.py │ │ ├── iso2022_jp_ext.py │ │ ├── iso2022_kr.py │ │ ├── iso8859_1.py │ │ ├── iso8859_10.py │ │ ├── iso8859_11.py │ │ ├── iso8859_13.py │ │ ├── iso8859_14.py │ │ ├── iso8859_15.py │ │ ├── iso8859_16.py │ │ ├── iso8859_2.py │ │ ├── iso8859_3.py │ │ ├── iso8859_4.py │ │ ├── iso8859_5.py │ │ ├── iso8859_6.py │ │ ├── iso8859_7.py │ │ ├── iso8859_8.py │ │ ├── iso8859_9.py │ │ ├── johab.py │ │ ├── koi8_r.py │ │ ├── koi8_t.py │ │ ├── koi8_u.py │ │ ├── kz1048.py │ │ ├── latin_1.py │ │ ├── mac_arabic.py │ │ ├── mac_croatian.py │ │ ├── mac_cyrillic.py │ │ ├── mac_farsi.py │ │ ├── mac_greek.py │ │ ├── mac_iceland.py │ │ ├── mac_latin2.py │ │ ├── mac_roman.py │ │ ├── mac_romanian.py │ │ ├── mac_turkish.py │ │ ├── mbcs.py │ │ ├── oem.py │ │ ├── palmos.py │ │ ├── ptcp154.py │ │ ├── punycode.py │ │ ├── quopri_codec.py │ │ ├── raw_unicode_escape.py │ │ ├── rot_13.py │ │ ├── shift_jis.py │ │ ├── shift_jis_2004.py │ │ ├── shift_jisx0213.py │ │ ├── tis_620.py │ │ ├── undefined.py │ │ ├── unicode_escape.py │ │ ├── utf_16.py │ │ ├── utf_16_be.py │ │ ├── utf_16_le.py │ │ ├── utf_32.py │ │ ├── utf_32_be.py │ │ ├── utf_32_le.py │ │ ├── utf_7.py │ │ ├── utf_8.py │ │ ├── utf_8_sig.py │ │ ├── uu_codec.py │ │ └── zlib_codec.py │ │ ├── ensurepip │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ └── __main__.cpython-310.pyc │ │ ├── _bundled │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-310.pyc │ │ │ ├── pip-22.2.1-py3-none-any.whl │ │ │ └── setuptools-63.2.0-py3-none-any.whl │ │ └── _uninstall.py │ │ ├── enum.py │ │ ├── filecmp.py │ │ ├── fileinput.py │ │ ├── fnmatch.py │ │ ├── fractions.py │ │ ├── ftplib.py │ │ ├── functools.py │ │ ├── genericpath.py │ │ ├── getopt.py │ │ ├── getpass.py │ │ ├── gettext.py │ │ ├── glob.py │ │ ├── graphlib.py │ │ ├── gzip.py │ │ ├── hashlib.py │ │ ├── heapq.py │ │ ├── hmac.py │ │ ├── html │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── entities.cpython-310.pyc │ │ │ └── parser.cpython-310.pyc │ │ ├── entities.py │ │ └── parser.py │ │ ├── http │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── client.cpython-310.pyc │ │ │ ├── cookiejar.cpython-310.pyc │ │ │ ├── cookies.cpython-310.pyc │ │ │ └── server.cpython-310.pyc │ │ ├── client.py │ │ ├── cookiejar.py │ │ ├── cookies.py │ │ └── server.py │ │ ├── idlelib │ │ ├── CREDITS.txt │ │ ├── ChangeLog │ │ ├── HISTORY.txt │ │ ├── Icons │ │ │ ├── README.txt │ │ │ ├── folder.gif │ │ │ ├── idle.ico │ │ │ ├── idle_16.gif │ │ │ ├── idle_16.png │ │ │ ├── idle_256.png │ │ │ ├── idle_32.gif │ │ │ ├── idle_32.png │ │ │ ├── idle_48.gif │ │ │ ├── idle_48.png │ │ │ ├── minusnode.gif │ │ │ ├── openfolder.gif │ │ │ ├── plusnode.gif │ │ │ ├── python.gif │ │ │ └── tk.gif │ │ ├── NEWS.txt │ │ ├── NEWS2x.txt │ │ ├── README.txt │ │ ├── TODO.txt │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── autocomplete.py │ │ ├── autocomplete_w.py │ │ ├── autoexpand.py │ │ ├── browser.py │ │ ├── calltip.py │ │ ├── calltip_w.py │ │ ├── codecontext.py │ │ ├── colorizer.py │ │ ├── config-extensions.def │ │ ├── config-highlight.def │ │ ├── config-keys.def │ │ ├── config-main.def │ │ ├── config.py │ │ ├── config_key.py │ │ ├── configdialog.py │ │ ├── debugger.py │ │ ├── debugger_r.py │ │ ├── debugobj.py │ │ ├── debugobj_r.py │ │ ├── delegator.py │ │ ├── dynoption.py │ │ ├── editor.py │ │ ├── extend.txt │ │ ├── filelist.py │ │ ├── format.py │ │ ├── grep.py │ │ ├── help.html │ │ ├── help.py │ │ ├── help_about.py │ │ ├── history.py │ │ ├── hyperparser.py │ │ ├── idle.bat │ │ ├── idle.py │ │ ├── idle.pyw │ │ ├── idle_test │ │ │ ├── README.txt │ │ │ ├── __init__.py │ │ │ ├── example_noext │ │ │ ├── example_stub.pyi │ │ │ ├── htest.py │ │ │ ├── mock_idle.py │ │ │ ├── mock_tk.py │ │ │ ├── template.py │ │ │ ├── test_autocomplete.py │ │ │ ├── test_autocomplete_w.py │ │ │ ├── test_autoexpand.py │ │ │ ├── test_browser.py │ │ │ ├── test_calltip.py │ │ │ ├── test_calltip_w.py │ │ │ ├── test_codecontext.py │ │ │ ├── test_colorizer.py │ │ │ ├── test_config.py │ │ │ ├── test_config_key.py │ │ │ ├── test_configdialog.py │ │ │ ├── test_debugger.py │ │ │ ├── test_debugger_r.py │ │ │ ├── test_debugobj.py │ │ │ ├── test_debugobj_r.py │ │ │ ├── test_delegator.py │ │ │ ├── test_editmenu.py │ │ │ ├── test_editor.py │ │ │ ├── test_filelist.py │ │ │ ├── test_format.py │ │ │ ├── test_grep.py │ │ │ ├── test_help.py │ │ │ ├── test_help_about.py │ │ │ ├── test_history.py │ │ │ ├── test_hyperparser.py │ │ │ ├── test_iomenu.py │ │ │ ├── test_macosx.py │ │ │ ├── test_mainmenu.py │ │ │ ├── test_multicall.py │ │ │ ├── test_outwin.py │ │ │ ├── test_parenmatch.py │ │ │ ├── test_pathbrowser.py │ │ │ ├── test_percolator.py │ │ │ ├── test_pyparse.py │ │ │ ├── test_pyshell.py │ │ │ ├── test_query.py │ │ │ ├── test_redirector.py │ │ │ ├── test_replace.py │ │ │ ├── test_rpc.py │ │ │ ├── test_run.py │ │ │ ├── test_runscript.py │ │ │ ├── test_scrolledlist.py │ │ │ ├── test_search.py │ │ │ ├── test_searchbase.py │ │ │ ├── test_searchengine.py │ │ │ ├── test_sidebar.py │ │ │ ├── test_squeezer.py │ │ │ ├── test_stackviewer.py │ │ │ ├── test_statusbar.py │ │ │ ├── test_text.py │ │ │ ├── test_textview.py │ │ │ ├── test_tooltip.py │ │ │ ├── test_tree.py │ │ │ ├── test_undo.py │ │ │ ├── test_util.py │ │ │ ├── test_warning.py │ │ │ ├── test_window.py │ │ │ ├── test_zoomheight.py │ │ │ ├── test_zzdummy.py │ │ │ └── tkinter_testing_utils.py │ │ ├── iomenu.py │ │ ├── macosx.py │ │ ├── mainmenu.py │ │ ├── multicall.py │ │ ├── outwin.py │ │ ├── parenmatch.py │ │ ├── pathbrowser.py │ │ ├── percolator.py │ │ ├── pyparse.py │ │ ├── pyshell.py │ │ ├── query.py │ │ ├── redirector.py │ │ ├── replace.py │ │ ├── rpc.py │ │ ├── run.py │ │ ├── runscript.py │ │ ├── scrolledlist.py │ │ ├── search.py │ │ ├── searchbase.py │ │ ├── searchengine.py │ │ ├── sidebar.py │ │ ├── squeezer.py │ │ ├── stackviewer.py │ │ ├── statusbar.py │ │ ├── textview.py │ │ ├── tooltip.py │ │ ├── tree.py │ │ ├── undo.py │ │ ├── util.py │ │ ├── window.py │ │ ├── zoomheight.py │ │ └── zzdummy.py │ │ ├── imaplib.py │ │ ├── imghdr.py │ │ ├── imp.py │ │ ├── importlib │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── _abc.cpython-310.pyc │ │ │ ├── _adapters.cpython-310.pyc │ │ │ ├── _common.cpython-310.pyc │ │ │ ├── abc.cpython-310.pyc │ │ │ ├── machinery.cpython-310.pyc │ │ │ ├── readers.cpython-310.pyc │ │ │ ├── resources.cpython-310.pyc │ │ │ └── util.cpython-310.pyc │ │ ├── _abc.py │ │ ├── _adapters.py │ │ ├── _bootstrap.py │ │ ├── _bootstrap_external.py │ │ ├── _common.py │ │ ├── abc.py │ │ ├── machinery.py │ │ ├── metadata │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── _adapters.cpython-310.pyc │ │ │ │ ├── _collections.cpython-310.pyc │ │ │ │ ├── _functools.cpython-310.pyc │ │ │ │ ├── _itertools.cpython-310.pyc │ │ │ │ ├── _meta.cpython-310.pyc │ │ │ │ └── _text.cpython-310.pyc │ │ │ ├── _adapters.py │ │ │ ├── _collections.py │ │ │ ├── _functools.py │ │ │ ├── _itertools.py │ │ │ ├── _meta.py │ │ │ └── _text.py │ │ ├── readers.py │ │ ├── resources.py │ │ └── util.py │ │ ├── inspect.py │ │ ├── io.py │ │ ├── ipaddress.py │ │ ├── json │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── decoder.cpython-310.pyc │ │ │ ├── encoder.cpython-310.pyc │ │ │ └── scanner.cpython-310.pyc │ │ ├── decoder.py │ │ ├── encoder.py │ │ ├── scanner.py │ │ └── tool.py │ │ ├── keyword.py │ │ ├── lib2to3 │ │ ├── Grammar.txt │ │ ├── PatternGrammar.txt │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── btm_matcher.py │ │ ├── btm_utils.py │ │ ├── fixer_base.py │ │ ├── fixer_util.py │ │ ├── fixes │ │ │ ├── __init__.py │ │ │ ├── fix_apply.py │ │ │ ├── fix_asserts.py │ │ │ ├── fix_basestring.py │ │ │ ├── fix_buffer.py │ │ │ ├── fix_dict.py │ │ │ ├── fix_except.py │ │ │ ├── fix_exec.py │ │ │ ├── fix_execfile.py │ │ │ ├── fix_exitfunc.py │ │ │ ├── fix_filter.py │ │ │ ├── fix_funcattrs.py │ │ │ ├── fix_future.py │ │ │ ├── fix_getcwdu.py │ │ │ ├── fix_has_key.py │ │ │ ├── fix_idioms.py │ │ │ ├── fix_import.py │ │ │ ├── fix_imports.py │ │ │ ├── fix_imports2.py │ │ │ ├── fix_input.py │ │ │ ├── fix_intern.py │ │ │ ├── fix_isinstance.py │ │ │ ├── fix_itertools.py │ │ │ ├── fix_itertools_imports.py │ │ │ ├── fix_long.py │ │ │ ├── fix_map.py │ │ │ ├── fix_metaclass.py │ │ │ ├── fix_methodattrs.py │ │ │ ├── fix_ne.py │ │ │ ├── fix_next.py │ │ │ ├── fix_nonzero.py │ │ │ ├── fix_numliterals.py │ │ │ ├── fix_operator.py │ │ │ ├── fix_paren.py │ │ │ ├── fix_print.py │ │ │ ├── fix_raise.py │ │ │ ├── fix_raw_input.py │ │ │ ├── fix_reduce.py │ │ │ ├── fix_reload.py │ │ │ ├── fix_renames.py │ │ │ ├── fix_repr.py │ │ │ ├── fix_set_literal.py │ │ │ ├── fix_standarderror.py │ │ │ ├── fix_sys_exc.py │ │ │ ├── fix_throw.py │ │ │ ├── fix_tuple_params.py │ │ │ ├── fix_types.py │ │ │ ├── fix_unicode.py │ │ │ ├── fix_urllib.py │ │ │ ├── fix_ws_comma.py │ │ │ ├── fix_xrange.py │ │ │ ├── fix_xreadlines.py │ │ │ └── fix_zip.py │ │ ├── main.py │ │ ├── patcomp.py │ │ ├── pgen2 │ │ │ ├── __init__.py │ │ │ ├── conv.py │ │ │ ├── driver.py │ │ │ ├── grammar.py │ │ │ ├── literals.py │ │ │ ├── parse.py │ │ │ ├── pgen.py │ │ │ ├── token.py │ │ │ └── tokenize.py │ │ ├── pygram.py │ │ ├── pytree.py │ │ ├── refactor.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── data │ │ │ ├── README │ │ │ ├── bom.py │ │ │ ├── crlf.py │ │ │ ├── different_encoding.py │ │ │ ├── false_encoding.py │ │ │ ├── fixers │ │ │ │ ├── bad_order.py │ │ │ │ ├── myfixes │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── fix_explicit.py │ │ │ │ │ ├── fix_first.py │ │ │ │ │ ├── fix_last.py │ │ │ │ │ ├── fix_parrot.py │ │ │ │ │ └── fix_preorder.py │ │ │ │ ├── no_fixer_cls.py │ │ │ │ └── parrot_example.py │ │ │ ├── infinite_recursion.py │ │ │ ├── py2_test_grammar.py │ │ │ └── py3_test_grammar.py │ │ │ ├── pytree_idempotency.py │ │ │ ├── support.py │ │ │ ├── test_all_fixers.py │ │ │ ├── test_fixers.py │ │ │ ├── test_main.py │ │ │ ├── test_parser.py │ │ │ ├── test_pytree.py │ │ │ ├── test_refactor.py │ │ │ └── test_util.py │ │ ├── linecache.py │ │ ├── locale.py │ │ ├── logging │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── config.cpython-310.pyc │ │ │ └── handlers.cpython-310.pyc │ │ ├── config.py │ │ └── handlers.py │ │ ├── lzma.py │ │ ├── mailbox.py │ │ ├── mailcap.py │ │ ├── mimetypes.py │ │ ├── modulefinder.py │ │ ├── msilib │ │ ├── __init__.py │ │ ├── schema.py │ │ ├── sequence.py │ │ └── text.py │ │ ├── multiprocessing │ │ ├── __init__.py │ │ ├── connection.py │ │ ├── context.py │ │ ├── dummy │ │ │ ├── __init__.py │ │ │ └── connection.py │ │ ├── forkserver.py │ │ ├── heap.py │ │ ├── managers.py │ │ ├── pool.py │ │ ├── popen_fork.py │ │ ├── popen_forkserver.py │ │ ├── popen_spawn_posix.py │ │ ├── popen_spawn_win32.py │ │ ├── process.py │ │ ├── queues.py │ │ ├── reduction.py │ │ ├── resource_sharer.py │ │ ├── resource_tracker.py │ │ ├── shared_memory.py │ │ ├── sharedctypes.py │ │ ├── spawn.py │ │ ├── synchronize.py │ │ └── util.py │ │ ├── netrc.py │ │ ├── nntplib.py │ │ ├── ntpath.py │ │ ├── nturl2path.py │ │ ├── numbers.py │ │ ├── opcode.py │ │ ├── operator.py │ │ ├── optparse.py │ │ ├── os.py │ │ ├── pathlib.py │ │ ├── pdb.py │ │ ├── pickle.py │ │ ├── pickletools.py │ │ ├── pipes.py │ │ ├── pkgutil.py │ │ ├── platform.py │ │ ├── plistlib.py │ │ ├── poplib.py │ │ ├── posixpath.py │ │ ├── pprint.py │ │ ├── profile.py │ │ ├── pstats.py │ │ ├── pty.py │ │ ├── py_compile.py │ │ ├── pyclbr.py │ │ ├── pydoc.py │ │ ├── pydoc_data │ │ ├── __init__.py │ │ ├── _pydoc.css │ │ └── topics.py │ │ ├── queue.py │ │ ├── quopri.py │ │ ├── random.py │ │ ├── re.py │ │ ├── reprlib.py │ │ ├── rlcompleter.py │ │ ├── runpy.py │ │ ├── sched.py │ │ ├── secrets.py │ │ ├── selectors.py │ │ ├── shelve.py │ │ ├── shlex.py │ │ ├── shutil.py │ │ ├── signal.py │ │ ├── site-packages │ │ ├── README.txt │ │ ├── _distutils_hack │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ └── override.cpython-310.pyc │ │ │ └── override.py │ │ ├── distutils-precedence.pth │ │ ├── docx │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── api.cpython-310.pyc │ │ │ │ ├── blkcntnr.cpython-310.pyc │ │ │ │ ├── compat.cpython-310.pyc │ │ │ │ ├── document.cpython-310.pyc │ │ │ │ ├── exceptions.cpython-310.pyc │ │ │ │ ├── package.cpython-310.pyc │ │ │ │ ├── section.cpython-310.pyc │ │ │ │ ├── settings.cpython-310.pyc │ │ │ │ ├── shape.cpython-310.pyc │ │ │ │ ├── shared.cpython-310.pyc │ │ │ │ └── table.cpython-310.pyc │ │ │ ├── api.py │ │ │ ├── blkcntnr.py │ │ │ ├── compat.py │ │ │ ├── dml │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ └── color.cpython-310.pyc │ │ │ │ └── color.py │ │ │ ├── document.py │ │ │ ├── enum │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── base.cpython-310.pyc │ │ │ │ │ ├── dml.cpython-310.pyc │ │ │ │ │ ├── section.cpython-310.pyc │ │ │ │ │ ├── shape.cpython-310.pyc │ │ │ │ │ ├── style.cpython-310.pyc │ │ │ │ │ ├── table.cpython-310.pyc │ │ │ │ │ └── text.cpython-310.pyc │ │ │ │ ├── base.py │ │ │ │ ├── dml.py │ │ │ │ ├── section.py │ │ │ │ ├── shape.py │ │ │ │ ├── style.py │ │ │ │ ├── table.py │ │ │ │ └── text.py │ │ │ ├── exceptions.py │ │ │ ├── image │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── bmp.cpython-310.pyc │ │ │ │ │ ├── constants.cpython-310.pyc │ │ │ │ │ ├── exceptions.cpython-310.pyc │ │ │ │ │ ├── gif.cpython-310.pyc │ │ │ │ │ ├── helpers.cpython-310.pyc │ │ │ │ │ ├── image.cpython-310.pyc │ │ │ │ │ ├── jpeg.cpython-310.pyc │ │ │ │ │ ├── png.cpython-310.pyc │ │ │ │ │ └── tiff.cpython-310.pyc │ │ │ │ ├── bmp.py │ │ │ │ ├── constants.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── gif.py │ │ │ │ ├── helpers.py │ │ │ │ ├── image.py │ │ │ │ ├── jpeg.py │ │ │ │ ├── png.py │ │ │ │ └── tiff.py │ │ │ ├── opc │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── compat.cpython-310.pyc │ │ │ │ │ ├── constants.cpython-310.pyc │ │ │ │ │ ├── coreprops.cpython-310.pyc │ │ │ │ │ ├── exceptions.cpython-310.pyc │ │ │ │ │ ├── oxml.cpython-310.pyc │ │ │ │ │ ├── package.cpython-310.pyc │ │ │ │ │ ├── packuri.cpython-310.pyc │ │ │ │ │ ├── part.cpython-310.pyc │ │ │ │ │ ├── phys_pkg.cpython-310.pyc │ │ │ │ │ ├── pkgreader.cpython-310.pyc │ │ │ │ │ ├── pkgwriter.cpython-310.pyc │ │ │ │ │ ├── rel.cpython-310.pyc │ │ │ │ │ ├── shared.cpython-310.pyc │ │ │ │ │ └── spec.cpython-310.pyc │ │ │ │ ├── compat.py │ │ │ │ ├── constants.py │ │ │ │ ├── coreprops.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── oxml.py │ │ │ │ ├── package.py │ │ │ │ ├── packuri.py │ │ │ │ ├── part.py │ │ │ │ ├── parts │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ └── coreprops.cpython-310.pyc │ │ │ │ │ └── coreprops.py │ │ │ │ ├── phys_pkg.py │ │ │ │ ├── pkgreader.py │ │ │ │ ├── pkgwriter.py │ │ │ │ ├── rel.py │ │ │ │ ├── shared.py │ │ │ │ └── spec.py │ │ │ ├── oxml │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── coreprops.cpython-310.pyc │ │ │ │ │ ├── document.cpython-310.pyc │ │ │ │ │ ├── exceptions.cpython-310.pyc │ │ │ │ │ ├── ns.cpython-310.pyc │ │ │ │ │ ├── numbering.cpython-310.pyc │ │ │ │ │ ├── section.cpython-310.pyc │ │ │ │ │ ├── settings.cpython-310.pyc │ │ │ │ │ ├── shape.cpython-310.pyc │ │ │ │ │ ├── shared.cpython-310.pyc │ │ │ │ │ ├── simpletypes.cpython-310.pyc │ │ │ │ │ ├── styles.cpython-310.pyc │ │ │ │ │ ├── table.cpython-310.pyc │ │ │ │ │ └── xmlchemy.cpython-310.pyc │ │ │ │ ├── coreprops.py │ │ │ │ ├── document.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── ns.py │ │ │ │ ├── numbering.py │ │ │ │ ├── section.py │ │ │ │ ├── settings.py │ │ │ │ ├── shape.py │ │ │ │ ├── shared.py │ │ │ │ ├── simpletypes.py │ │ │ │ ├── styles.py │ │ │ │ ├── table.py │ │ │ │ ├── text │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── font.cpython-310.pyc │ │ │ │ │ │ ├── paragraph.cpython-310.pyc │ │ │ │ │ │ ├── parfmt.cpython-310.pyc │ │ │ │ │ │ └── run.cpython-310.pyc │ │ │ │ │ ├── font.py │ │ │ │ │ ├── paragraph.py │ │ │ │ │ ├── parfmt.py │ │ │ │ │ └── run.py │ │ │ │ └── xmlchemy.py │ │ │ ├── package.py │ │ │ ├── parts │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── document.cpython-310.pyc │ │ │ │ │ ├── hdrftr.cpython-310.pyc │ │ │ │ │ ├── image.cpython-310.pyc │ │ │ │ │ ├── numbering.cpython-310.pyc │ │ │ │ │ ├── settings.cpython-310.pyc │ │ │ │ │ ├── story.cpython-310.pyc │ │ │ │ │ └── styles.cpython-310.pyc │ │ │ │ ├── document.py │ │ │ │ ├── hdrftr.py │ │ │ │ ├── image.py │ │ │ │ ├── numbering.py │ │ │ │ ├── settings.py │ │ │ │ ├── story.py │ │ │ │ └── styles.py │ │ │ ├── section.py │ │ │ ├── settings.py │ │ │ ├── shape.py │ │ │ ├── shared.py │ │ │ ├── styles │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── latent.cpython-310.pyc │ │ │ │ │ ├── style.cpython-310.pyc │ │ │ │ │ └── styles.cpython-310.pyc │ │ │ │ ├── latent.py │ │ │ │ ├── style.py │ │ │ │ └── styles.py │ │ │ ├── table.py │ │ │ ├── templates │ │ │ │ ├── default-footer.xml │ │ │ │ ├── default-header.xml │ │ │ │ ├── default-settings.xml │ │ │ │ ├── default-styles.xml │ │ │ │ └── default.docx │ │ │ └── text │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── font.cpython-310.pyc │ │ │ │ ├── paragraph.cpython-310.pyc │ │ │ │ ├── parfmt.cpython-310.pyc │ │ │ │ ├── run.cpython-310.pyc │ │ │ │ └── tabstops.cpython-310.pyc │ │ │ │ ├── font.py │ │ │ │ ├── paragraph.py │ │ │ │ ├── parfmt.py │ │ │ │ ├── run.py │ │ │ │ └── tabstops.py │ │ ├── lxml-4.9.1.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE.txt │ │ │ ├── LICENSES.txt │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ └── top_level.txt │ │ ├── lxml │ │ │ ├── ElementInclude.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── ElementInclude.cpython-310.pyc │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── _elementpath.cpython-310.pyc │ │ │ │ ├── builder.cpython-310.pyc │ │ │ │ ├── cssselect.cpython-310.pyc │ │ │ │ ├── doctestcompare.cpython-310.pyc │ │ │ │ ├── pyclasslookup.cpython-310.pyc │ │ │ │ ├── sax.cpython-310.pyc │ │ │ │ └── usedoctest.cpython-310.pyc │ │ │ ├── _elementpath.cp310-win_amd64.pyd │ │ │ ├── _elementpath.py │ │ │ ├── builder.cp310-win_amd64.pyd │ │ │ ├── builder.py │ │ │ ├── cssselect.py │ │ │ ├── doctestcompare.py │ │ │ ├── etree.cp310-win_amd64.pyd │ │ │ ├── etree.h │ │ │ ├── etree_api.h │ │ │ ├── html │ │ │ │ ├── ElementSoup.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── ElementSoup.cpython-310.pyc │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── _diffcommand.cpython-310.pyc │ │ │ │ │ ├── _html5builder.cpython-310.pyc │ │ │ │ │ ├── _setmixin.cpython-310.pyc │ │ │ │ │ ├── builder.cpython-310.pyc │ │ │ │ │ ├── clean.cpython-310.pyc │ │ │ │ │ ├── defs.cpython-310.pyc │ │ │ │ │ ├── diff.cpython-310.pyc │ │ │ │ │ ├── formfill.cpython-310.pyc │ │ │ │ │ ├── html5parser.cpython-310.pyc │ │ │ │ │ ├── soupparser.cpython-310.pyc │ │ │ │ │ └── usedoctest.cpython-310.pyc │ │ │ │ ├── _diffcommand.py │ │ │ │ ├── _html5builder.py │ │ │ │ ├── _setmixin.py │ │ │ │ ├── builder.py │ │ │ │ ├── clean.cp310-win_amd64.pyd │ │ │ │ ├── clean.py │ │ │ │ ├── defs.py │ │ │ │ ├── diff.cp310-win_amd64.pyd │ │ │ │ ├── diff.py │ │ │ │ ├── formfill.py │ │ │ │ ├── html5parser.py │ │ │ │ ├── soupparser.py │ │ │ │ └── usedoctest.py │ │ │ ├── includes │ │ │ │ ├── __init__.pxd │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-310.pyc │ │ │ │ ├── c14n.pxd │ │ │ │ ├── config.pxd │ │ │ │ ├── dtdvalid.pxd │ │ │ │ ├── etree_defs.h │ │ │ │ ├── etreepublic.pxd │ │ │ │ ├── extlibs │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── __init__.cpython-310.pyc │ │ │ │ │ ├── zconf.h │ │ │ │ │ └── zlib.h │ │ │ │ ├── htmlparser.pxd │ │ │ │ ├── libexslt │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── __init__.cpython-310.pyc │ │ │ │ │ ├── exslt.h │ │ │ │ │ ├── exsltconfig.h │ │ │ │ │ ├── exsltexports.h │ │ │ │ │ └── libexslt.h │ │ │ │ ├── libxml │ │ │ │ │ ├── DOCBparser.h │ │ │ │ │ ├── HTMLparser.h │ │ │ │ │ ├── HTMLtree.h │ │ │ │ │ ├── SAX.h │ │ │ │ │ ├── SAX2.h │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── __init__.cpython-310.pyc │ │ │ │ │ ├── c14n.h │ │ │ │ │ ├── catalog.h │ │ │ │ │ ├── chvalid.h │ │ │ │ │ ├── debugXML.h │ │ │ │ │ ├── dict.h │ │ │ │ │ ├── encoding.h │ │ │ │ │ ├── entities.h │ │ │ │ │ ├── globals.h │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── list.h │ │ │ │ │ ├── nanoftp.h │ │ │ │ │ ├── nanohttp.h │ │ │ │ │ ├── parser.h │ │ │ │ │ ├── parserInternals.h │ │ │ │ │ ├── pattern.h │ │ │ │ │ ├── relaxng.h │ │ │ │ │ ├── schemasInternals.h │ │ │ │ │ ├── schematron.h │ │ │ │ │ ├── threads.h │ │ │ │ │ ├── tree.h │ │ │ │ │ ├── uri.h │ │ │ │ │ ├── valid.h │ │ │ │ │ ├── xinclude.h │ │ │ │ │ ├── xlink.h │ │ │ │ │ ├── xmlIO.h │ │ │ │ │ ├── xmlautomata.h │ │ │ │ │ ├── xmlerror.h │ │ │ │ │ ├── xmlexports.h │ │ │ │ │ ├── xmlmemory.h │ │ │ │ │ ├── xmlmodule.h │ │ │ │ │ ├── xmlreader.h │ │ │ │ │ ├── xmlregexp.h │ │ │ │ │ ├── xmlsave.h │ │ │ │ │ ├── xmlschemas.h │ │ │ │ │ ├── xmlschemastypes.h │ │ │ │ │ ├── xmlstring.h │ │ │ │ │ ├── xmlunicode.h │ │ │ │ │ ├── xmlversion.h │ │ │ │ │ ├── xmlwriter.h │ │ │ │ │ ├── xpath.h │ │ │ │ │ ├── xpathInternals.h │ │ │ │ │ └── xpointer.h │ │ │ │ ├── libxslt │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── __init__.cpython-310.pyc │ │ │ │ │ ├── attributes.h │ │ │ │ │ ├── documents.h │ │ │ │ │ ├── extensions.h │ │ │ │ │ ├── extra.h │ │ │ │ │ ├── functions.h │ │ │ │ │ ├── imports.h │ │ │ │ │ ├── keys.h │ │ │ │ │ ├── libxslt.h │ │ │ │ │ ├── namespaces.h │ │ │ │ │ ├── numbersInternals.h │ │ │ │ │ ├── preproc.h │ │ │ │ │ ├── security.h │ │ │ │ │ ├── templates.h │ │ │ │ │ ├── transform.h │ │ │ │ │ ├── trio.h │ │ │ │ │ ├── triodef.h │ │ │ │ │ ├── variables.h │ │ │ │ │ ├── win32config.h │ │ │ │ │ ├── xslt.h │ │ │ │ │ ├── xsltInternals.h │ │ │ │ │ ├── xsltconfig.h │ │ │ │ │ ├── xsltexports.h │ │ │ │ │ ├── xsltlocale.h │ │ │ │ │ └── xsltutils.h │ │ │ │ ├── lxml-version.h │ │ │ │ ├── relaxng.pxd │ │ │ │ ├── schematron.pxd │ │ │ │ ├── tree.pxd │ │ │ │ ├── uri.pxd │ │ │ │ ├── xinclude.pxd │ │ │ │ ├── xmlerror.pxd │ │ │ │ ├── xmlparser.pxd │ │ │ │ ├── xmlschema.pxd │ │ │ │ ├── xpath.pxd │ │ │ │ └── xslt.pxd │ │ │ ├── isoschematron │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-310.pyc │ │ │ │ └── resources │ │ │ │ │ ├── rng │ │ │ │ │ └── iso-schematron.rng │ │ │ │ │ └── xsl │ │ │ │ │ ├── RNG2Schtrn.xsl │ │ │ │ │ ├── XSD2Schtrn.xsl │ │ │ │ │ └── iso-schematron-xslt1 │ │ │ │ │ ├── iso_abstract_expand.xsl │ │ │ │ │ ├── iso_dsdl_include.xsl │ │ │ │ │ ├── iso_schematron_message.xsl │ │ │ │ │ ├── iso_schematron_skeleton_for_xslt1.xsl │ │ │ │ │ ├── iso_svrl_for_xslt1.xsl │ │ │ │ │ └── readme.txt │ │ │ ├── lxml.etree.h │ │ │ ├── lxml.etree_api.h │ │ │ ├── objectify.cp310-win_amd64.pyd │ │ │ ├── pyclasslookup.py │ │ │ ├── sax.cp310-win_amd64.pyd │ │ │ ├── sax.py │ │ │ └── usedoctest.py │ │ ├── pip-22.2.1.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE.txt │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── REQUESTED │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ └── top_level.txt │ │ ├── pip │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pip-runner__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── __main__.cpython-310.pyc │ │ │ │ └── __pip-runner__.cpython-310.pyc │ │ │ ├── _internal │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── build_env.cpython-310.pyc │ │ │ │ │ ├── cache.cpython-310.pyc │ │ │ │ │ ├── configuration.cpython-310.pyc │ │ │ │ │ ├── exceptions.cpython-310.pyc │ │ │ │ │ ├── main.cpython-310.pyc │ │ │ │ │ ├── pyproject.cpython-310.pyc │ │ │ │ │ ├── self_outdated_check.cpython-310.pyc │ │ │ │ │ └── wheel_builder.cpython-310.pyc │ │ │ │ ├── build_env.py │ │ │ │ ├── cache.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── autocompletion.cpython-310.pyc │ │ │ │ │ │ ├── base_command.cpython-310.pyc │ │ │ │ │ │ ├── cmdoptions.cpython-310.pyc │ │ │ │ │ │ ├── command_context.cpython-310.pyc │ │ │ │ │ │ ├── main.cpython-310.pyc │ │ │ │ │ │ ├── main_parser.cpython-310.pyc │ │ │ │ │ │ ├── parser.cpython-310.pyc │ │ │ │ │ │ ├── progress_bars.cpython-310.pyc │ │ │ │ │ │ ├── req_command.cpython-310.pyc │ │ │ │ │ │ ├── spinners.cpython-310.pyc │ │ │ │ │ │ └── status_codes.cpython-310.pyc │ │ │ │ │ ├── autocompletion.py │ │ │ │ │ ├── base_command.py │ │ │ │ │ ├── cmdoptions.py │ │ │ │ │ ├── command_context.py │ │ │ │ │ ├── main.py │ │ │ │ │ ├── main_parser.py │ │ │ │ │ ├── parser.py │ │ │ │ │ ├── progress_bars.py │ │ │ │ │ ├── req_command.py │ │ │ │ │ ├── spinners.py │ │ │ │ │ └── status_codes.py │ │ │ │ ├── commands │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── cache.cpython-310.pyc │ │ │ │ │ │ ├── check.cpython-310.pyc │ │ │ │ │ │ ├── completion.cpython-310.pyc │ │ │ │ │ │ ├── configuration.cpython-310.pyc │ │ │ │ │ │ ├── debug.cpython-310.pyc │ │ │ │ │ │ ├── download.cpython-310.pyc │ │ │ │ │ │ ├── freeze.cpython-310.pyc │ │ │ │ │ │ ├── hash.cpython-310.pyc │ │ │ │ │ │ ├── help.cpython-310.pyc │ │ │ │ │ │ ├── index.cpython-310.pyc │ │ │ │ │ │ ├── inspect.cpython-310.pyc │ │ │ │ │ │ ├── install.cpython-310.pyc │ │ │ │ │ │ ├── list.cpython-310.pyc │ │ │ │ │ │ ├── search.cpython-310.pyc │ │ │ │ │ │ ├── show.cpython-310.pyc │ │ │ │ │ │ ├── uninstall.cpython-310.pyc │ │ │ │ │ │ └── wheel.cpython-310.pyc │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── completion.py │ │ │ │ │ ├── configuration.py │ │ │ │ │ ├── debug.py │ │ │ │ │ ├── download.py │ │ │ │ │ ├── freeze.py │ │ │ │ │ ├── hash.py │ │ │ │ │ ├── help.py │ │ │ │ │ ├── index.py │ │ │ │ │ ├── inspect.py │ │ │ │ │ ├── install.py │ │ │ │ │ ├── list.py │ │ │ │ │ ├── search.py │ │ │ │ │ ├── show.py │ │ │ │ │ ├── uninstall.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── configuration.py │ │ │ │ ├── distributions │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── base.cpython-310.pyc │ │ │ │ │ │ ├── installed.cpython-310.pyc │ │ │ │ │ │ ├── sdist.cpython-310.pyc │ │ │ │ │ │ └── wheel.cpython-310.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── installed.py │ │ │ │ │ ├── sdist.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── index │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── collector.cpython-310.pyc │ │ │ │ │ │ ├── package_finder.cpython-310.pyc │ │ │ │ │ │ └── sources.cpython-310.pyc │ │ │ │ │ ├── collector.py │ │ │ │ │ ├── package_finder.py │ │ │ │ │ └── sources.py │ │ │ │ ├── locations │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── _distutils.cpython-310.pyc │ │ │ │ │ │ ├── _sysconfig.cpython-310.pyc │ │ │ │ │ │ └── base.cpython-310.pyc │ │ │ │ │ ├── _distutils.py │ │ │ │ │ ├── _sysconfig.py │ │ │ │ │ └── base.py │ │ │ │ ├── main.py │ │ │ │ ├── metadata │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── _json.cpython-310.pyc │ │ │ │ │ │ ├── base.cpython-310.pyc │ │ │ │ │ │ └── pkg_resources.cpython-310.pyc │ │ │ │ │ ├── _json.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── importlib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ │ ├── _compat.cpython-310.pyc │ │ │ │ │ │ │ ├── _dists.cpython-310.pyc │ │ │ │ │ │ │ └── _envs.cpython-310.pyc │ │ │ │ │ │ ├── _compat.py │ │ │ │ │ │ ├── _dists.py │ │ │ │ │ │ └── _envs.py │ │ │ │ │ └── pkg_resources.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── candidate.cpython-310.pyc │ │ │ │ │ │ ├── direct_url.cpython-310.pyc │ │ │ │ │ │ ├── format_control.cpython-310.pyc │ │ │ │ │ │ ├── index.cpython-310.pyc │ │ │ │ │ │ ├── installation_report.cpython-310.pyc │ │ │ │ │ │ ├── link.cpython-310.pyc │ │ │ │ │ │ ├── scheme.cpython-310.pyc │ │ │ │ │ │ ├── search_scope.cpython-310.pyc │ │ │ │ │ │ ├── selection_prefs.cpython-310.pyc │ │ │ │ │ │ ├── target_python.cpython-310.pyc │ │ │ │ │ │ └── wheel.cpython-310.pyc │ │ │ │ │ ├── candidate.py │ │ │ │ │ ├── direct_url.py │ │ │ │ │ ├── format_control.py │ │ │ │ │ ├── index.py │ │ │ │ │ ├── installation_report.py │ │ │ │ │ ├── link.py │ │ │ │ │ ├── scheme.py │ │ │ │ │ ├── search_scope.py │ │ │ │ │ ├── selection_prefs.py │ │ │ │ │ ├── target_python.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── network │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── auth.cpython-310.pyc │ │ │ │ │ │ ├── cache.cpython-310.pyc │ │ │ │ │ │ ├── download.cpython-310.pyc │ │ │ │ │ │ ├── lazy_wheel.cpython-310.pyc │ │ │ │ │ │ ├── session.cpython-310.pyc │ │ │ │ │ │ ├── utils.cpython-310.pyc │ │ │ │ │ │ └── xmlrpc.cpython-310.pyc │ │ │ │ │ ├── auth.py │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── download.py │ │ │ │ │ ├── lazy_wheel.py │ │ │ │ │ ├── session.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── xmlrpc.py │ │ │ │ ├── operations │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── check.cpython-310.pyc │ │ │ │ │ │ ├── freeze.cpython-310.pyc │ │ │ │ │ │ └── prepare.cpython-310.pyc │ │ │ │ │ ├── build │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ │ ├── build_tracker.cpython-310.pyc │ │ │ │ │ │ │ ├── metadata.cpython-310.pyc │ │ │ │ │ │ │ ├── metadata_editable.cpython-310.pyc │ │ │ │ │ │ │ ├── metadata_legacy.cpython-310.pyc │ │ │ │ │ │ │ ├── wheel.cpython-310.pyc │ │ │ │ │ │ │ ├── wheel_editable.cpython-310.pyc │ │ │ │ │ │ │ └── wheel_legacy.cpython-310.pyc │ │ │ │ │ │ ├── build_tracker.py │ │ │ │ │ │ ├── metadata.py │ │ │ │ │ │ ├── metadata_editable.py │ │ │ │ │ │ ├── metadata_legacy.py │ │ │ │ │ │ ├── wheel.py │ │ │ │ │ │ ├── wheel_editable.py │ │ │ │ │ │ └── wheel_legacy.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── freeze.py │ │ │ │ │ ├── install │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ │ ├── editable_legacy.cpython-310.pyc │ │ │ │ │ │ │ ├── legacy.cpython-310.pyc │ │ │ │ │ │ │ └── wheel.cpython-310.pyc │ │ │ │ │ │ ├── editable_legacy.py │ │ │ │ │ │ ├── legacy.py │ │ │ │ │ │ └── wheel.py │ │ │ │ │ └── prepare.py │ │ │ │ ├── pyproject.py │ │ │ │ ├── req │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── constructors.cpython-310.pyc │ │ │ │ │ │ ├── req_file.cpython-310.pyc │ │ │ │ │ │ ├── req_install.cpython-310.pyc │ │ │ │ │ │ ├── req_set.cpython-310.pyc │ │ │ │ │ │ └── req_uninstall.cpython-310.pyc │ │ │ │ │ ├── constructors.py │ │ │ │ │ ├── req_file.py │ │ │ │ │ ├── req_install.py │ │ │ │ │ ├── req_set.py │ │ │ │ │ └── req_uninstall.py │ │ │ │ ├── resolution │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ └── base.cpython-310.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── legacy │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ │ └── resolver.cpython-310.pyc │ │ │ │ │ │ └── resolver.py │ │ │ │ │ └── resolvelib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── base.cpython-310.pyc │ │ │ │ │ │ ├── candidates.cpython-310.pyc │ │ │ │ │ │ ├── factory.cpython-310.pyc │ │ │ │ │ │ ├── found_candidates.cpython-310.pyc │ │ │ │ │ │ ├── provider.cpython-310.pyc │ │ │ │ │ │ ├── reporter.cpython-310.pyc │ │ │ │ │ │ ├── requirements.cpython-310.pyc │ │ │ │ │ │ └── resolver.cpython-310.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── candidates.py │ │ │ │ │ │ ├── factory.py │ │ │ │ │ │ ├── found_candidates.py │ │ │ │ │ │ ├── provider.py │ │ │ │ │ │ ├── reporter.py │ │ │ │ │ │ ├── requirements.py │ │ │ │ │ │ └── resolver.py │ │ │ │ ├── self_outdated_check.py │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── _log.cpython-310.pyc │ │ │ │ │ │ ├── appdirs.cpython-310.pyc │ │ │ │ │ │ ├── compat.cpython-310.pyc │ │ │ │ │ │ ├── compatibility_tags.cpython-310.pyc │ │ │ │ │ │ ├── datetime.cpython-310.pyc │ │ │ │ │ │ ├── deprecation.cpython-310.pyc │ │ │ │ │ │ ├── direct_url_helpers.cpython-310.pyc │ │ │ │ │ │ ├── distutils_args.cpython-310.pyc │ │ │ │ │ │ ├── egg_link.cpython-310.pyc │ │ │ │ │ │ ├── encoding.cpython-310.pyc │ │ │ │ │ │ ├── entrypoints.cpython-310.pyc │ │ │ │ │ │ ├── filesystem.cpython-310.pyc │ │ │ │ │ │ ├── filetypes.cpython-310.pyc │ │ │ │ │ │ ├── glibc.cpython-310.pyc │ │ │ │ │ │ ├── hashes.cpython-310.pyc │ │ │ │ │ │ ├── inject_securetransport.cpython-310.pyc │ │ │ │ │ │ ├── logging.cpython-310.pyc │ │ │ │ │ │ ├── misc.cpython-310.pyc │ │ │ │ │ │ ├── models.cpython-310.pyc │ │ │ │ │ │ ├── packaging.cpython-310.pyc │ │ │ │ │ │ ├── setuptools_build.cpython-310.pyc │ │ │ │ │ │ ├── subprocess.cpython-310.pyc │ │ │ │ │ │ ├── temp_dir.cpython-310.pyc │ │ │ │ │ │ ├── unpacking.cpython-310.pyc │ │ │ │ │ │ ├── urls.cpython-310.pyc │ │ │ │ │ │ ├── virtualenv.cpython-310.pyc │ │ │ │ │ │ └── wheel.cpython-310.pyc │ │ │ │ │ ├── _log.py │ │ │ │ │ ├── appdirs.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── compatibility_tags.py │ │ │ │ │ ├── datetime.py │ │ │ │ │ ├── deprecation.py │ │ │ │ │ ├── direct_url_helpers.py │ │ │ │ │ ├── distutils_args.py │ │ │ │ │ ├── egg_link.py │ │ │ │ │ ├── encoding.py │ │ │ │ │ ├── entrypoints.py │ │ │ │ │ ├── filesystem.py │ │ │ │ │ ├── filetypes.py │ │ │ │ │ ├── glibc.py │ │ │ │ │ ├── hashes.py │ │ │ │ │ ├── inject_securetransport.py │ │ │ │ │ ├── logging.py │ │ │ │ │ ├── misc.py │ │ │ │ │ ├── models.py │ │ │ │ │ ├── packaging.py │ │ │ │ │ ├── setuptools_build.py │ │ │ │ │ ├── subprocess.py │ │ │ │ │ ├── temp_dir.py │ │ │ │ │ ├── unpacking.py │ │ │ │ │ ├── urls.py │ │ │ │ │ ├── virtualenv.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── vcs │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── bazaar.cpython-310.pyc │ │ │ │ │ │ ├── git.cpython-310.pyc │ │ │ │ │ │ ├── mercurial.cpython-310.pyc │ │ │ │ │ │ ├── subversion.cpython-310.pyc │ │ │ │ │ │ └── versioncontrol.cpython-310.pyc │ │ │ │ │ ├── bazaar.py │ │ │ │ │ ├── git.py │ │ │ │ │ ├── mercurial.py │ │ │ │ │ ├── subversion.py │ │ │ │ │ └── versioncontrol.py │ │ │ │ └── wheel_builder.py │ │ │ ├── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── six.cpython-310.pyc │ │ │ │ │ └── typing_extensions.cpython-310.pyc │ │ │ │ ├── cachecontrol │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── _cmd.cpython-310.pyc │ │ │ │ │ │ ├── adapter.cpython-310.pyc │ │ │ │ │ │ ├── cache.cpython-310.pyc │ │ │ │ │ │ ├── compat.cpython-310.pyc │ │ │ │ │ │ ├── controller.cpython-310.pyc │ │ │ │ │ │ ├── filewrapper.cpython-310.pyc │ │ │ │ │ │ ├── heuristics.cpython-310.pyc │ │ │ │ │ │ ├── serialize.cpython-310.pyc │ │ │ │ │ │ └── wrapper.cpython-310.pyc │ │ │ │ │ ├── _cmd.py │ │ │ │ │ ├── adapter.py │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── caches │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ │ ├── file_cache.cpython-310.pyc │ │ │ │ │ │ │ └── redis_cache.cpython-310.pyc │ │ │ │ │ │ ├── file_cache.py │ │ │ │ │ │ └── redis_cache.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── controller.py │ │ │ │ │ ├── filewrapper.py │ │ │ │ │ ├── heuristics.py │ │ │ │ │ ├── serialize.py │ │ │ │ │ └── wrapper.py │ │ │ │ ├── certifi │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── __main__.cpython-310.pyc │ │ │ │ │ │ └── core.cpython-310.pyc │ │ │ │ │ ├── cacert.pem │ │ │ │ │ └── core.py │ │ │ │ ├── chardet │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── big5freq.cpython-310.pyc │ │ │ │ │ │ ├── big5prober.cpython-310.pyc │ │ │ │ │ │ ├── chardistribution.cpython-310.pyc │ │ │ │ │ │ ├── charsetgroupprober.cpython-310.pyc │ │ │ │ │ │ ├── charsetprober.cpython-310.pyc │ │ │ │ │ │ ├── codingstatemachine.cpython-310.pyc │ │ │ │ │ │ ├── cp949prober.cpython-310.pyc │ │ │ │ │ │ ├── enums.cpython-310.pyc │ │ │ │ │ │ ├── escprober.cpython-310.pyc │ │ │ │ │ │ ├── escsm.cpython-310.pyc │ │ │ │ │ │ ├── eucjpprober.cpython-310.pyc │ │ │ │ │ │ ├── euckrfreq.cpython-310.pyc │ │ │ │ │ │ ├── euckrprober.cpython-310.pyc │ │ │ │ │ │ ├── euctwfreq.cpython-310.pyc │ │ │ │ │ │ ├── euctwprober.cpython-310.pyc │ │ │ │ │ │ ├── gb2312freq.cpython-310.pyc │ │ │ │ │ │ ├── gb2312prober.cpython-310.pyc │ │ │ │ │ │ ├── hebrewprober.cpython-310.pyc │ │ │ │ │ │ ├── jisfreq.cpython-310.pyc │ │ │ │ │ │ ├── johabfreq.cpython-310.pyc │ │ │ │ │ │ ├── johabprober.cpython-310.pyc │ │ │ │ │ │ ├── jpcntx.cpython-310.pyc │ │ │ │ │ │ ├── langbulgarianmodel.cpython-310.pyc │ │ │ │ │ │ ├── langgreekmodel.cpython-310.pyc │ │ │ │ │ │ ├── langhebrewmodel.cpython-310.pyc │ │ │ │ │ │ ├── langhungarianmodel.cpython-310.pyc │ │ │ │ │ │ ├── langrussianmodel.cpython-310.pyc │ │ │ │ │ │ ├── langthaimodel.cpython-310.pyc │ │ │ │ │ │ ├── langturkishmodel.cpython-310.pyc │ │ │ │ │ │ ├── latin1prober.cpython-310.pyc │ │ │ │ │ │ ├── mbcharsetprober.cpython-310.pyc │ │ │ │ │ │ ├── mbcsgroupprober.cpython-310.pyc │ │ │ │ │ │ ├── mbcssm.cpython-310.pyc │ │ │ │ │ │ ├── sbcharsetprober.cpython-310.pyc │ │ │ │ │ │ ├── sbcsgroupprober.cpython-310.pyc │ │ │ │ │ │ ├── sjisprober.cpython-310.pyc │ │ │ │ │ │ ├── universaldetector.cpython-310.pyc │ │ │ │ │ │ ├── utf1632prober.cpython-310.pyc │ │ │ │ │ │ ├── utf8prober.cpython-310.pyc │ │ │ │ │ │ └── version.cpython-310.pyc │ │ │ │ │ ├── big5freq.py │ │ │ │ │ ├── big5prober.py │ │ │ │ │ ├── chardistribution.py │ │ │ │ │ ├── charsetgroupprober.py │ │ │ │ │ ├── charsetprober.py │ │ │ │ │ ├── cli │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ │ └── chardetect.cpython-310.pyc │ │ │ │ │ │ └── chardetect.py │ │ │ │ │ ├── codingstatemachine.py │ │ │ │ │ ├── cp949prober.py │ │ │ │ │ ├── enums.py │ │ │ │ │ ├── escprober.py │ │ │ │ │ ├── escsm.py │ │ │ │ │ ├── eucjpprober.py │ │ │ │ │ ├── euckrfreq.py │ │ │ │ │ ├── euckrprober.py │ │ │ │ │ ├── euctwfreq.py │ │ │ │ │ ├── euctwprober.py │ │ │ │ │ ├── gb2312freq.py │ │ │ │ │ ├── gb2312prober.py │ │ │ │ │ ├── hebrewprober.py │ │ │ │ │ ├── jisfreq.py │ │ │ │ │ ├── johabfreq.py │ │ │ │ │ ├── johabprober.py │ │ │ │ │ ├── jpcntx.py │ │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ │ ├── langgreekmodel.py │ │ │ │ │ ├── langhebrewmodel.py │ │ │ │ │ ├── langhungarianmodel.py │ │ │ │ │ ├── langrussianmodel.py │ │ │ │ │ ├── langthaimodel.py │ │ │ │ │ ├── langturkishmodel.py │ │ │ │ │ ├── latin1prober.py │ │ │ │ │ ├── mbcharsetprober.py │ │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ │ ├── mbcssm.py │ │ │ │ │ ├── metadata │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ │ └── languages.cpython-310.pyc │ │ │ │ │ │ └── languages.py │ │ │ │ │ ├── sbcharsetprober.py │ │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ │ ├── sjisprober.py │ │ │ │ │ ├── universaldetector.py │ │ │ │ │ ├── utf1632prober.py │ │ │ │ │ ├── utf8prober.py │ │ │ │ │ └── version.py │ │ │ │ ├── colorama │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── ansi.cpython-310.pyc │ │ │ │ │ │ ├── ansitowin32.cpython-310.pyc │ │ │ │ │ │ ├── initialise.cpython-310.pyc │ │ │ │ │ │ ├── win32.cpython-310.pyc │ │ │ │ │ │ └── winterm.cpython-310.pyc │ │ │ │ │ ├── ansi.py │ │ │ │ │ ├── ansitowin32.py │ │ │ │ │ ├── initialise.py │ │ │ │ │ ├── win32.py │ │ │ │ │ └── winterm.py │ │ │ │ ├── distlib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── compat.cpython-310.pyc │ │ │ │ │ │ ├── database.cpython-310.pyc │ │ │ │ │ │ ├── index.cpython-310.pyc │ │ │ │ │ │ ├── locators.cpython-310.pyc │ │ │ │ │ │ ├── manifest.cpython-310.pyc │ │ │ │ │ │ ├── markers.cpython-310.pyc │ │ │ │ │ │ ├── metadata.cpython-310.pyc │ │ │ │ │ │ ├── resources.cpython-310.pyc │ │ │ │ │ │ ├── scripts.cpython-310.pyc │ │ │ │ │ │ ├── util.cpython-310.pyc │ │ │ │ │ │ ├── version.cpython-310.pyc │ │ │ │ │ │ └── wheel.cpython-310.pyc │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── database.py │ │ │ │ │ ├── index.py │ │ │ │ │ ├── locators.py │ │ │ │ │ ├── manifest.py │ │ │ │ │ ├── markers.py │ │ │ │ │ ├── metadata.py │ │ │ │ │ ├── resources.py │ │ │ │ │ ├── scripts.py │ │ │ │ │ ├── t32.exe │ │ │ │ │ ├── t64-arm.exe │ │ │ │ │ ├── t64.exe │ │ │ │ │ ├── util.py │ │ │ │ │ ├── version.py │ │ │ │ │ ├── w32.exe │ │ │ │ │ ├── w64-arm.exe │ │ │ │ │ ├── w64.exe │ │ │ │ │ └── wheel.py │ │ │ │ ├── distro │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── __main__.cpython-310.pyc │ │ │ │ │ │ └── distro.cpython-310.pyc │ │ │ │ │ └── distro.py │ │ │ │ ├── idna │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── codec.cpython-310.pyc │ │ │ │ │ │ ├── compat.cpython-310.pyc │ │ │ │ │ │ ├── core.cpython-310.pyc │ │ │ │ │ │ ├── idnadata.cpython-310.pyc │ │ │ │ │ │ ├── intranges.cpython-310.pyc │ │ │ │ │ │ ├── package_data.cpython-310.pyc │ │ │ │ │ │ └── uts46data.cpython-310.pyc │ │ │ │ │ ├── codec.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── core.py │ │ │ │ │ ├── idnadata.py │ │ │ │ │ ├── intranges.py │ │ │ │ │ ├── package_data.py │ │ │ │ │ └── uts46data.py │ │ │ │ ├── msgpack │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── exceptions.cpython-310.pyc │ │ │ │ │ │ ├── ext.cpython-310.pyc │ │ │ │ │ │ └── fallback.cpython-310.pyc │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── ext.py │ │ │ │ │ └── fallback.py │ │ │ │ ├── packaging │ │ │ │ │ ├── __about__.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __about__.cpython-310.pyc │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── _manylinux.cpython-310.pyc │ │ │ │ │ │ ├── _musllinux.cpython-310.pyc │ │ │ │ │ │ ├── _structures.cpython-310.pyc │ │ │ │ │ │ ├── markers.cpython-310.pyc │ │ │ │ │ │ ├── requirements.cpython-310.pyc │ │ │ │ │ │ ├── specifiers.cpython-310.pyc │ │ │ │ │ │ ├── tags.cpython-310.pyc │ │ │ │ │ │ ├── utils.cpython-310.pyc │ │ │ │ │ │ └── version.cpython-310.pyc │ │ │ │ │ ├── _manylinux.py │ │ │ │ │ ├── _musllinux.py │ │ │ │ │ ├── _structures.py │ │ │ │ │ ├── markers.py │ │ │ │ │ ├── requirements.py │ │ │ │ │ ├── specifiers.py │ │ │ │ │ ├── tags.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── version.py │ │ │ │ ├── pep517 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── build.cpython-310.pyc │ │ │ │ │ │ ├── check.cpython-310.pyc │ │ │ │ │ │ ├── colorlog.cpython-310.pyc │ │ │ │ │ │ ├── compat.cpython-310.pyc │ │ │ │ │ │ ├── dirtools.cpython-310.pyc │ │ │ │ │ │ ├── envbuild.cpython-310.pyc │ │ │ │ │ │ ├── meta.cpython-310.pyc │ │ │ │ │ │ └── wrappers.cpython-310.pyc │ │ │ │ │ ├── build.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── colorlog.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── dirtools.py │ │ │ │ │ ├── envbuild.py │ │ │ │ │ ├── in_process │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ │ └── _in_process.cpython-310.pyc │ │ │ │ │ │ └── _in_process.py │ │ │ │ │ ├── meta.py │ │ │ │ │ └── wrappers.py │ │ │ │ ├── pkg_resources │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ └── py31compat.cpython-310.pyc │ │ │ │ │ └── py31compat.py │ │ │ │ ├── platformdirs │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── __main__.cpython-310.pyc │ │ │ │ │ │ ├── android.cpython-310.pyc │ │ │ │ │ │ ├── api.cpython-310.pyc │ │ │ │ │ │ ├── macos.cpython-310.pyc │ │ │ │ │ │ ├── unix.cpython-310.pyc │ │ │ │ │ │ ├── version.cpython-310.pyc │ │ │ │ │ │ └── windows.cpython-310.pyc │ │ │ │ │ ├── android.py │ │ │ │ │ ├── api.py │ │ │ │ │ ├── macos.py │ │ │ │ │ ├── unix.py │ │ │ │ │ ├── version.py │ │ │ │ │ └── windows.py │ │ │ │ ├── pygments │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── __main__.cpython-310.pyc │ │ │ │ │ │ ├── cmdline.cpython-310.pyc │ │ │ │ │ │ ├── console.cpython-310.pyc │ │ │ │ │ │ ├── filter.cpython-310.pyc │ │ │ │ │ │ ├── formatter.cpython-310.pyc │ │ │ │ │ │ ├── lexer.cpython-310.pyc │ │ │ │ │ │ ├── modeline.cpython-310.pyc │ │ │ │ │ │ ├── plugin.cpython-310.pyc │ │ │ │ │ │ ├── regexopt.cpython-310.pyc │ │ │ │ │ │ ├── scanner.cpython-310.pyc │ │ │ │ │ │ ├── sphinxext.cpython-310.pyc │ │ │ │ │ │ ├── style.cpython-310.pyc │ │ │ │ │ │ ├── token.cpython-310.pyc │ │ │ │ │ │ ├── unistring.cpython-310.pyc │ │ │ │ │ │ └── util.cpython-310.pyc │ │ │ │ │ ├── cmdline.py │ │ │ │ │ ├── console.py │ │ │ │ │ ├── filter.py │ │ │ │ │ ├── filters │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ └── __init__.cpython-310.pyc │ │ │ │ │ ├── formatter.py │ │ │ │ │ ├── formatters │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ │ ├── _mapping.cpython-310.pyc │ │ │ │ │ │ │ ├── bbcode.cpython-310.pyc │ │ │ │ │ │ │ ├── groff.cpython-310.pyc │ │ │ │ │ │ │ ├── html.cpython-310.pyc │ │ │ │ │ │ │ ├── img.cpython-310.pyc │ │ │ │ │ │ │ ├── irc.cpython-310.pyc │ │ │ │ │ │ │ ├── latex.cpython-310.pyc │ │ │ │ │ │ │ ├── other.cpython-310.pyc │ │ │ │ │ │ │ ├── pangomarkup.cpython-310.pyc │ │ │ │ │ │ │ ├── rtf.cpython-310.pyc │ │ │ │ │ │ │ ├── svg.cpython-310.pyc │ │ │ │ │ │ │ ├── terminal.cpython-310.pyc │ │ │ │ │ │ │ └── terminal256.cpython-310.pyc │ │ │ │ │ │ ├── _mapping.py │ │ │ │ │ │ ├── bbcode.py │ │ │ │ │ │ ├── groff.py │ │ │ │ │ │ ├── html.py │ │ │ │ │ │ ├── img.py │ │ │ │ │ │ ├── irc.py │ │ │ │ │ │ ├── latex.py │ │ │ │ │ │ ├── other.py │ │ │ │ │ │ ├── pangomarkup.py │ │ │ │ │ │ ├── rtf.py │ │ │ │ │ │ ├── svg.py │ │ │ │ │ │ ├── terminal.py │ │ │ │ │ │ └── terminal256.py │ │ │ │ │ ├── lexer.py │ │ │ │ │ ├── lexers │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ │ ├── _mapping.cpython-310.pyc │ │ │ │ │ │ │ └── python.cpython-310.pyc │ │ │ │ │ │ ├── _mapping.py │ │ │ │ │ │ └── python.py │ │ │ │ │ ├── modeline.py │ │ │ │ │ ├── plugin.py │ │ │ │ │ ├── regexopt.py │ │ │ │ │ ├── scanner.py │ │ │ │ │ ├── sphinxext.py │ │ │ │ │ ├── style.py │ │ │ │ │ ├── styles │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ └── __init__.cpython-310.pyc │ │ │ │ │ ├── token.py │ │ │ │ │ ├── unistring.py │ │ │ │ │ └── util.py │ │ │ │ ├── pyparsing │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── actions.cpython-310.pyc │ │ │ │ │ │ ├── common.cpython-310.pyc │ │ │ │ │ │ ├── core.cpython-310.pyc │ │ │ │ │ │ ├── exceptions.cpython-310.pyc │ │ │ │ │ │ ├── helpers.cpython-310.pyc │ │ │ │ │ │ ├── results.cpython-310.pyc │ │ │ │ │ │ ├── testing.cpython-310.pyc │ │ │ │ │ │ ├── unicode.cpython-310.pyc │ │ │ │ │ │ └── util.cpython-310.pyc │ │ │ │ │ ├── actions.py │ │ │ │ │ ├── common.py │ │ │ │ │ ├── core.py │ │ │ │ │ ├── diagram │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ └── __init__.cpython-310.pyc │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── helpers.py │ │ │ │ │ ├── results.py │ │ │ │ │ ├── testing.py │ │ │ │ │ ├── unicode.py │ │ │ │ │ └── util.py │ │ │ │ ├── requests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── __version__.cpython-310.pyc │ │ │ │ │ │ ├── _internal_utils.cpython-310.pyc │ │ │ │ │ │ ├── adapters.cpython-310.pyc │ │ │ │ │ │ ├── api.cpython-310.pyc │ │ │ │ │ │ ├── auth.cpython-310.pyc │ │ │ │ │ │ ├── certs.cpython-310.pyc │ │ │ │ │ │ ├── compat.cpython-310.pyc │ │ │ │ │ │ ├── cookies.cpython-310.pyc │ │ │ │ │ │ ├── exceptions.cpython-310.pyc │ │ │ │ │ │ ├── help.cpython-310.pyc │ │ │ │ │ │ ├── hooks.cpython-310.pyc │ │ │ │ │ │ ├── models.cpython-310.pyc │ │ │ │ │ │ ├── packages.cpython-310.pyc │ │ │ │ │ │ ├── sessions.cpython-310.pyc │ │ │ │ │ │ ├── status_codes.cpython-310.pyc │ │ │ │ │ │ ├── structures.cpython-310.pyc │ │ │ │ │ │ └── utils.cpython-310.pyc │ │ │ │ │ ├── __version__.py │ │ │ │ │ ├── _internal_utils.py │ │ │ │ │ ├── adapters.py │ │ │ │ │ ├── api.py │ │ │ │ │ ├── auth.py │ │ │ │ │ ├── certs.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── cookies.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── help.py │ │ │ │ │ ├── hooks.py │ │ │ │ │ ├── models.py │ │ │ │ │ ├── packages.py │ │ │ │ │ ├── sessions.py │ │ │ │ │ ├── status_codes.py │ │ │ │ │ ├── structures.py │ │ │ │ │ └── utils.py │ │ │ │ ├── resolvelib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── providers.cpython-310.pyc │ │ │ │ │ │ ├── reporters.cpython-310.pyc │ │ │ │ │ │ ├── resolvers.cpython-310.pyc │ │ │ │ │ │ └── structs.cpython-310.pyc │ │ │ │ │ ├── compat │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ │ └── collections_abc.cpython-310.pyc │ │ │ │ │ │ └── collections_abc.py │ │ │ │ │ ├── providers.py │ │ │ │ │ ├── reporters.py │ │ │ │ │ ├── resolvers.py │ │ │ │ │ └── structs.py │ │ │ │ ├── rich │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── __main__.cpython-310.pyc │ │ │ │ │ │ ├── _cell_widths.cpython-310.pyc │ │ │ │ │ │ ├── _emoji_codes.cpython-310.pyc │ │ │ │ │ │ ├── _emoji_replace.cpython-310.pyc │ │ │ │ │ │ ├── _export_format.cpython-310.pyc │ │ │ │ │ │ ├── _extension.cpython-310.pyc │ │ │ │ │ │ ├── _inspect.cpython-310.pyc │ │ │ │ │ │ ├── _log_render.cpython-310.pyc │ │ │ │ │ │ ├── _loop.cpython-310.pyc │ │ │ │ │ │ ├── _palettes.cpython-310.pyc │ │ │ │ │ │ ├── _pick.cpython-310.pyc │ │ │ │ │ │ ├── _ratio.cpython-310.pyc │ │ │ │ │ │ ├── _spinners.cpython-310.pyc │ │ │ │ │ │ ├── _stack.cpython-310.pyc │ │ │ │ │ │ ├── _timer.cpython-310.pyc │ │ │ │ │ │ ├── _win32_console.cpython-310.pyc │ │ │ │ │ │ ├── _windows.cpython-310.pyc │ │ │ │ │ │ ├── _windows_renderer.cpython-310.pyc │ │ │ │ │ │ ├── _wrap.cpython-310.pyc │ │ │ │ │ │ ├── abc.cpython-310.pyc │ │ │ │ │ │ ├── align.cpython-310.pyc │ │ │ │ │ │ ├── ansi.cpython-310.pyc │ │ │ │ │ │ ├── bar.cpython-310.pyc │ │ │ │ │ │ ├── box.cpython-310.pyc │ │ │ │ │ │ ├── cells.cpython-310.pyc │ │ │ │ │ │ ├── color.cpython-310.pyc │ │ │ │ │ │ ├── color_triplet.cpython-310.pyc │ │ │ │ │ │ ├── columns.cpython-310.pyc │ │ │ │ │ │ ├── console.cpython-310.pyc │ │ │ │ │ │ ├── constrain.cpython-310.pyc │ │ │ │ │ │ ├── containers.cpython-310.pyc │ │ │ │ │ │ ├── control.cpython-310.pyc │ │ │ │ │ │ ├── default_styles.cpython-310.pyc │ │ │ │ │ │ ├── diagnose.cpython-310.pyc │ │ │ │ │ │ ├── emoji.cpython-310.pyc │ │ │ │ │ │ ├── errors.cpython-310.pyc │ │ │ │ │ │ ├── file_proxy.cpython-310.pyc │ │ │ │ │ │ ├── filesize.cpython-310.pyc │ │ │ │ │ │ ├── highlighter.cpython-310.pyc │ │ │ │ │ │ ├── json.cpython-310.pyc │ │ │ │ │ │ ├── jupyter.cpython-310.pyc │ │ │ │ │ │ ├── layout.cpython-310.pyc │ │ │ │ │ │ ├── live.cpython-310.pyc │ │ │ │ │ │ ├── live_render.cpython-310.pyc │ │ │ │ │ │ ├── logging.cpython-310.pyc │ │ │ │ │ │ ├── markup.cpython-310.pyc │ │ │ │ │ │ ├── measure.cpython-310.pyc │ │ │ │ │ │ ├── padding.cpython-310.pyc │ │ │ │ │ │ ├── pager.cpython-310.pyc │ │ │ │ │ │ ├── palette.cpython-310.pyc │ │ │ │ │ │ ├── panel.cpython-310.pyc │ │ │ │ │ │ ├── pretty.cpython-310.pyc │ │ │ │ │ │ ├── progress.cpython-310.pyc │ │ │ │ │ │ ├── progress_bar.cpython-310.pyc │ │ │ │ │ │ ├── prompt.cpython-310.pyc │ │ │ │ │ │ ├── protocol.cpython-310.pyc │ │ │ │ │ │ ├── region.cpython-310.pyc │ │ │ │ │ │ ├── repr.cpython-310.pyc │ │ │ │ │ │ ├── rule.cpython-310.pyc │ │ │ │ │ │ ├── scope.cpython-310.pyc │ │ │ │ │ │ ├── screen.cpython-310.pyc │ │ │ │ │ │ ├── segment.cpython-310.pyc │ │ │ │ │ │ ├── spinner.cpython-310.pyc │ │ │ │ │ │ ├── status.cpython-310.pyc │ │ │ │ │ │ ├── style.cpython-310.pyc │ │ │ │ │ │ ├── styled.cpython-310.pyc │ │ │ │ │ │ ├── syntax.cpython-310.pyc │ │ │ │ │ │ ├── table.cpython-310.pyc │ │ │ │ │ │ ├── terminal_theme.cpython-310.pyc │ │ │ │ │ │ ├── text.cpython-310.pyc │ │ │ │ │ │ ├── theme.cpython-310.pyc │ │ │ │ │ │ ├── themes.cpython-310.pyc │ │ │ │ │ │ ├── traceback.cpython-310.pyc │ │ │ │ │ │ └── tree.cpython-310.pyc │ │ │ │ │ ├── _cell_widths.py │ │ │ │ │ ├── _emoji_codes.py │ │ │ │ │ ├── _emoji_replace.py │ │ │ │ │ ├── _export_format.py │ │ │ │ │ ├── _extension.py │ │ │ │ │ ├── _inspect.py │ │ │ │ │ ├── _log_render.py │ │ │ │ │ ├── _loop.py │ │ │ │ │ ├── _palettes.py │ │ │ │ │ ├── _pick.py │ │ │ │ │ ├── _ratio.py │ │ │ │ │ ├── _spinners.py │ │ │ │ │ ├── _stack.py │ │ │ │ │ ├── _timer.py │ │ │ │ │ ├── _win32_console.py │ │ │ │ │ ├── _windows.py │ │ │ │ │ ├── _windows_renderer.py │ │ │ │ │ ├── _wrap.py │ │ │ │ │ ├── abc.py │ │ │ │ │ ├── align.py │ │ │ │ │ ├── ansi.py │ │ │ │ │ ├── bar.py │ │ │ │ │ ├── box.py │ │ │ │ │ ├── cells.py │ │ │ │ │ ├── color.py │ │ │ │ │ ├── color_triplet.py │ │ │ │ │ ├── columns.py │ │ │ │ │ ├── console.py │ │ │ │ │ ├── constrain.py │ │ │ │ │ ├── containers.py │ │ │ │ │ ├── control.py │ │ │ │ │ ├── default_styles.py │ │ │ │ │ ├── diagnose.py │ │ │ │ │ ├── emoji.py │ │ │ │ │ ├── errors.py │ │ │ │ │ ├── file_proxy.py │ │ │ │ │ ├── filesize.py │ │ │ │ │ ├── highlighter.py │ │ │ │ │ ├── json.py │ │ │ │ │ ├── jupyter.py │ │ │ │ │ ├── layout.py │ │ │ │ │ ├── live.py │ │ │ │ │ ├── live_render.py │ │ │ │ │ ├── logging.py │ │ │ │ │ ├── markup.py │ │ │ │ │ ├── measure.py │ │ │ │ │ ├── padding.py │ │ │ │ │ ├── pager.py │ │ │ │ │ ├── palette.py │ │ │ │ │ ├── panel.py │ │ │ │ │ ├── pretty.py │ │ │ │ │ ├── progress.py │ │ │ │ │ ├── progress_bar.py │ │ │ │ │ ├── prompt.py │ │ │ │ │ ├── protocol.py │ │ │ │ │ ├── region.py │ │ │ │ │ ├── repr.py │ │ │ │ │ ├── rule.py │ │ │ │ │ ├── scope.py │ │ │ │ │ ├── screen.py │ │ │ │ │ ├── segment.py │ │ │ │ │ ├── spinner.py │ │ │ │ │ ├── status.py │ │ │ │ │ ├── style.py │ │ │ │ │ ├── styled.py │ │ │ │ │ ├── syntax.py │ │ │ │ │ ├── table.py │ │ │ │ │ ├── terminal_theme.py │ │ │ │ │ ├── text.py │ │ │ │ │ ├── theme.py │ │ │ │ │ ├── themes.py │ │ │ │ │ ├── traceback.py │ │ │ │ │ └── tree.py │ │ │ │ ├── six.py │ │ │ │ ├── tenacity │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── _asyncio.cpython-310.pyc │ │ │ │ │ │ ├── _utils.cpython-310.pyc │ │ │ │ │ │ ├── after.cpython-310.pyc │ │ │ │ │ │ ├── before.cpython-310.pyc │ │ │ │ │ │ ├── before_sleep.cpython-310.pyc │ │ │ │ │ │ ├── nap.cpython-310.pyc │ │ │ │ │ │ ├── retry.cpython-310.pyc │ │ │ │ │ │ ├── stop.cpython-310.pyc │ │ │ │ │ │ ├── tornadoweb.cpython-310.pyc │ │ │ │ │ │ └── wait.cpython-310.pyc │ │ │ │ │ ├── _asyncio.py │ │ │ │ │ ├── _utils.py │ │ │ │ │ ├── after.py │ │ │ │ │ ├── before.py │ │ │ │ │ ├── before_sleep.py │ │ │ │ │ ├── nap.py │ │ │ │ │ ├── retry.py │ │ │ │ │ ├── stop.py │ │ │ │ │ ├── tornadoweb.py │ │ │ │ │ └── wait.py │ │ │ │ ├── tomli │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── _parser.cpython-310.pyc │ │ │ │ │ │ ├── _re.cpython-310.pyc │ │ │ │ │ │ └── _types.cpython-310.pyc │ │ │ │ │ ├── _parser.py │ │ │ │ │ ├── _re.py │ │ │ │ │ └── _types.py │ │ │ │ ├── typing_extensions.py │ │ │ │ ├── urllib3 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── _collections.cpython-310.pyc │ │ │ │ │ │ ├── _version.cpython-310.pyc │ │ │ │ │ │ ├── connection.cpython-310.pyc │ │ │ │ │ │ ├── connectionpool.cpython-310.pyc │ │ │ │ │ │ ├── exceptions.cpython-310.pyc │ │ │ │ │ │ ├── fields.cpython-310.pyc │ │ │ │ │ │ ├── filepost.cpython-310.pyc │ │ │ │ │ │ ├── poolmanager.cpython-310.pyc │ │ │ │ │ │ ├── request.cpython-310.pyc │ │ │ │ │ │ └── response.cpython-310.pyc │ │ │ │ │ ├── _collections.py │ │ │ │ │ ├── _version.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── connectionpool.py │ │ │ │ │ ├── contrib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ │ ├── _appengine_environ.cpython-310.pyc │ │ │ │ │ │ │ ├── appengine.cpython-310.pyc │ │ │ │ │ │ │ ├── ntlmpool.cpython-310.pyc │ │ │ │ │ │ │ ├── pyopenssl.cpython-310.pyc │ │ │ │ │ │ │ ├── securetransport.cpython-310.pyc │ │ │ │ │ │ │ └── socks.cpython-310.pyc │ │ │ │ │ │ ├── _appengine_environ.py │ │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ │ │ ├── bindings.cpython-310.pyc │ │ │ │ │ │ │ │ └── low_level.cpython-310.pyc │ │ │ │ │ │ │ ├── bindings.py │ │ │ │ │ │ │ └── low_level.py │ │ │ │ │ │ ├── appengine.py │ │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ │ ├── pyopenssl.py │ │ │ │ │ │ ├── securetransport.py │ │ │ │ │ │ └── socks.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── fields.py │ │ │ │ │ ├── filepost.py │ │ │ │ │ ├── packages │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ │ └── six.cpython-310.pyc │ │ │ │ │ │ ├── backports │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ │ │ └── makefile.cpython-310.pyc │ │ │ │ │ │ │ └── makefile.py │ │ │ │ │ │ └── six.py │ │ │ │ │ ├── poolmanager.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ └── util │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── connection.cpython-310.pyc │ │ │ │ │ │ ├── proxy.cpython-310.pyc │ │ │ │ │ │ ├── queue.cpython-310.pyc │ │ │ │ │ │ ├── request.cpython-310.pyc │ │ │ │ │ │ ├── response.cpython-310.pyc │ │ │ │ │ │ ├── retry.cpython-310.pyc │ │ │ │ │ │ ├── ssl_.cpython-310.pyc │ │ │ │ │ │ ├── ssl_match_hostname.cpython-310.pyc │ │ │ │ │ │ ├── ssltransport.cpython-310.pyc │ │ │ │ │ │ ├── timeout.cpython-310.pyc │ │ │ │ │ │ ├── url.cpython-310.pyc │ │ │ │ │ │ └── wait.cpython-310.pyc │ │ │ │ │ │ ├── connection.py │ │ │ │ │ │ ├── proxy.py │ │ │ │ │ │ ├── queue.py │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ ├── response.py │ │ │ │ │ │ ├── retry.py │ │ │ │ │ │ ├── ssl_.py │ │ │ │ │ │ ├── ssl_match_hostname.py │ │ │ │ │ │ ├── ssltransport.py │ │ │ │ │ │ ├── timeout.py │ │ │ │ │ │ ├── url.py │ │ │ │ │ │ └── wait.py │ │ │ │ ├── vendor.txt │ │ │ │ └── webencodings │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── labels.cpython-310.pyc │ │ │ │ │ ├── mklabels.cpython-310.pyc │ │ │ │ │ ├── tests.cpython-310.pyc │ │ │ │ │ └── x_user_defined.cpython-310.pyc │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── mklabels.py │ │ │ │ │ ├── tests.py │ │ │ │ │ └── x_user_defined.py │ │ │ └── py.typed │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-310.pyc │ │ │ ├── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── appdirs.cpython-310.pyc │ │ │ │ │ └── zipp.cpython-310.pyc │ │ │ │ ├── appdirs.py │ │ │ │ ├── importlib_resources │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── _adapters.cpython-310.pyc │ │ │ │ │ │ ├── _common.cpython-310.pyc │ │ │ │ │ │ ├── _compat.cpython-310.pyc │ │ │ │ │ │ ├── _itertools.cpython-310.pyc │ │ │ │ │ │ ├── _legacy.cpython-310.pyc │ │ │ │ │ │ ├── abc.cpython-310.pyc │ │ │ │ │ │ ├── readers.cpython-310.pyc │ │ │ │ │ │ └── simple.cpython-310.pyc │ │ │ │ │ ├── _adapters.py │ │ │ │ │ ├── _common.py │ │ │ │ │ ├── _compat.py │ │ │ │ │ ├── _itertools.py │ │ │ │ │ ├── _legacy.py │ │ │ │ │ ├── abc.py │ │ │ │ │ ├── readers.py │ │ │ │ │ └── simple.py │ │ │ │ ├── jaraco │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── context.cpython-310.pyc │ │ │ │ │ │ └── functools.cpython-310.pyc │ │ │ │ │ ├── context.py │ │ │ │ │ ├── functools.py │ │ │ │ │ └── text │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ └── __init__.cpython-310.pyc │ │ │ │ ├── more_itertools │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── more.cpython-310.pyc │ │ │ │ │ │ └── recipes.cpython-310.pyc │ │ │ │ │ ├── more.py │ │ │ │ │ └── recipes.py │ │ │ │ ├── packaging │ │ │ │ │ ├── __about__.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __about__.cpython-310.pyc │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── _manylinux.cpython-310.pyc │ │ │ │ │ │ ├── _musllinux.cpython-310.pyc │ │ │ │ │ │ ├── _structures.cpython-310.pyc │ │ │ │ │ │ ├── markers.cpython-310.pyc │ │ │ │ │ │ ├── requirements.cpython-310.pyc │ │ │ │ │ │ ├── specifiers.cpython-310.pyc │ │ │ │ │ │ ├── tags.cpython-310.pyc │ │ │ │ │ │ ├── utils.cpython-310.pyc │ │ │ │ │ │ └── version.cpython-310.pyc │ │ │ │ │ ├── _manylinux.py │ │ │ │ │ ├── _musllinux.py │ │ │ │ │ ├── _structures.py │ │ │ │ │ ├── markers.py │ │ │ │ │ ├── requirements.py │ │ │ │ │ ├── specifiers.py │ │ │ │ │ ├── tags.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── version.py │ │ │ │ ├── pyparsing │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ │ ├── actions.cpython-310.pyc │ │ │ │ │ │ ├── common.cpython-310.pyc │ │ │ │ │ │ ├── core.cpython-310.pyc │ │ │ │ │ │ ├── exceptions.cpython-310.pyc │ │ │ │ │ │ ├── helpers.cpython-310.pyc │ │ │ │ │ │ ├── results.cpython-310.pyc │ │ │ │ │ │ ├── testing.cpython-310.pyc │ │ │ │ │ │ ├── unicode.cpython-310.pyc │ │ │ │ │ │ └── util.cpython-310.pyc │ │ │ │ │ ├── actions.py │ │ │ │ │ ├── common.py │ │ │ │ │ ├── core.py │ │ │ │ │ ├── diagram │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ │ └── __init__.cpython-310.pyc │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── helpers.py │ │ │ │ │ ├── results.py │ │ │ │ │ ├── testing.py │ │ │ │ │ ├── unicode.py │ │ │ │ │ └── util.py │ │ │ │ └── zipp.py │ │ │ └── extern │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-310.pyc │ │ ├── python_docx-0.8.11-py3.10.egg-info │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ ├── installed-files.txt │ │ │ ├── not-zip-safe │ │ │ ├── requires.txt │ │ │ └── top_level.txt │ │ ├── setuptools-63.2.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── REQUESTED │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ └── top_level.txt │ │ └── setuptools │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── _deprecation_warning.cpython-310.pyc │ │ │ ├── _entry_points.cpython-310.pyc │ │ │ ├── _imp.cpython-310.pyc │ │ │ ├── _importlib.cpython-310.pyc │ │ │ ├── _itertools.cpython-310.pyc │ │ │ ├── _path.cpython-310.pyc │ │ │ ├── _reqs.cpython-310.pyc │ │ │ ├── archive_util.cpython-310.pyc │ │ │ ├── build_meta.cpython-310.pyc │ │ │ ├── dep_util.cpython-310.pyc │ │ │ ├── depends.cpython-310.pyc │ │ │ ├── discovery.cpython-310.pyc │ │ │ ├── dist.cpython-310.pyc │ │ │ ├── errors.cpython-310.pyc │ │ │ ├── extension.cpython-310.pyc │ │ │ ├── glob.cpython-310.pyc │ │ │ ├── installer.cpython-310.pyc │ │ │ ├── launch.cpython-310.pyc │ │ │ ├── logging.cpython-310.pyc │ │ │ ├── monkey.cpython-310.pyc │ │ │ ├── msvc.cpython-310.pyc │ │ │ ├── namespaces.cpython-310.pyc │ │ │ ├── package_index.cpython-310.pyc │ │ │ ├── py34compat.cpython-310.pyc │ │ │ ├── sandbox.cpython-310.pyc │ │ │ ├── unicode_utils.cpython-310.pyc │ │ │ ├── version.cpython-310.pyc │ │ │ ├── wheel.cpython-310.pyc │ │ │ └── windows_support.cpython-310.pyc │ │ │ ├── _deprecation_warning.py │ │ │ ├── _distutils │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── _collections.cpython-310.pyc │ │ │ │ ├── _functools.cpython-310.pyc │ │ │ │ ├── _macos_compat.cpython-310.pyc │ │ │ │ ├── _msvccompiler.cpython-310.pyc │ │ │ │ ├── archive_util.cpython-310.pyc │ │ │ │ ├── bcppcompiler.cpython-310.pyc │ │ │ │ ├── ccompiler.cpython-310.pyc │ │ │ │ ├── cmd.cpython-310.pyc │ │ │ │ ├── config.cpython-310.pyc │ │ │ │ ├── core.cpython-310.pyc │ │ │ │ ├── cygwinccompiler.cpython-310.pyc │ │ │ │ ├── debug.cpython-310.pyc │ │ │ │ ├── dep_util.cpython-310.pyc │ │ │ │ ├── dir_util.cpython-310.pyc │ │ │ │ ├── dist.cpython-310.pyc │ │ │ │ ├── errors.cpython-310.pyc │ │ │ │ ├── extension.cpython-310.pyc │ │ │ │ ├── fancy_getopt.cpython-310.pyc │ │ │ │ ├── file_util.cpython-310.pyc │ │ │ │ ├── filelist.cpython-310.pyc │ │ │ │ ├── log.cpython-310.pyc │ │ │ │ ├── msvc9compiler.cpython-310.pyc │ │ │ │ ├── msvccompiler.cpython-310.pyc │ │ │ │ ├── py38compat.cpython-310.pyc │ │ │ │ ├── py39compat.cpython-310.pyc │ │ │ │ ├── spawn.cpython-310.pyc │ │ │ │ ├── sysconfig.cpython-310.pyc │ │ │ │ ├── text_file.cpython-310.pyc │ │ │ │ ├── unixccompiler.cpython-310.pyc │ │ │ │ ├── util.cpython-310.pyc │ │ │ │ ├── version.cpython-310.pyc │ │ │ │ └── versionpredicate.cpython-310.pyc │ │ │ ├── _collections.py │ │ │ ├── _functools.py │ │ │ ├── _macos_compat.py │ │ │ ├── _msvccompiler.py │ │ │ ├── archive_util.py │ │ │ ├── bcppcompiler.py │ │ │ ├── ccompiler.py │ │ │ ├── cmd.py │ │ │ ├── command │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── _framework_compat.cpython-310.pyc │ │ │ │ │ ├── bdist.cpython-310.pyc │ │ │ │ │ ├── bdist_dumb.cpython-310.pyc │ │ │ │ │ ├── bdist_msi.cpython-310.pyc │ │ │ │ │ ├── bdist_rpm.cpython-310.pyc │ │ │ │ │ ├── bdist_wininst.cpython-310.pyc │ │ │ │ │ ├── build.cpython-310.pyc │ │ │ │ │ ├── build_clib.cpython-310.pyc │ │ │ │ │ ├── build_ext.cpython-310.pyc │ │ │ │ │ ├── build_py.cpython-310.pyc │ │ │ │ │ ├── build_scripts.cpython-310.pyc │ │ │ │ │ ├── check.cpython-310.pyc │ │ │ │ │ ├── clean.cpython-310.pyc │ │ │ │ │ ├── config.cpython-310.pyc │ │ │ │ │ ├── install.cpython-310.pyc │ │ │ │ │ ├── install_data.cpython-310.pyc │ │ │ │ │ ├── install_egg_info.cpython-310.pyc │ │ │ │ │ ├── install_headers.cpython-310.pyc │ │ │ │ │ ├── install_lib.cpython-310.pyc │ │ │ │ │ ├── install_scripts.cpython-310.pyc │ │ │ │ │ ├── py37compat.cpython-310.pyc │ │ │ │ │ ├── register.cpython-310.pyc │ │ │ │ │ ├── sdist.cpython-310.pyc │ │ │ │ │ └── upload.cpython-310.pyc │ │ │ │ ├── _framework_compat.py │ │ │ │ ├── bdist.py │ │ │ │ ├── bdist_dumb.py │ │ │ │ ├── bdist_msi.py │ │ │ │ ├── bdist_rpm.py │ │ │ │ ├── bdist_wininst.py │ │ │ │ ├── build.py │ │ │ │ ├── build_clib.py │ │ │ │ ├── build_ext.py │ │ │ │ ├── build_py.py │ │ │ │ ├── build_scripts.py │ │ │ │ ├── check.py │ │ │ │ ├── clean.py │ │ │ │ ├── config.py │ │ │ │ ├── install.py │ │ │ │ ├── install_data.py │ │ │ │ ├── install_egg_info.py │ │ │ │ ├── install_headers.py │ │ │ │ ├── install_lib.py │ │ │ │ ├── install_scripts.py │ │ │ │ ├── py37compat.py │ │ │ │ ├── register.py │ │ │ │ ├── sdist.py │ │ │ │ └── upload.py │ │ │ ├── config.py │ │ │ ├── core.py │ │ │ ├── cygwinccompiler.py │ │ │ ├── debug.py │ │ │ ├── dep_util.py │ │ │ ├── dir_util.py │ │ │ ├── dist.py │ │ │ ├── errors.py │ │ │ ├── extension.py │ │ │ ├── fancy_getopt.py │ │ │ ├── file_util.py │ │ │ ├── filelist.py │ │ │ ├── log.py │ │ │ ├── msvc9compiler.py │ │ │ ├── msvccompiler.py │ │ │ ├── py38compat.py │ │ │ ├── py39compat.py │ │ │ ├── spawn.py │ │ │ ├── sysconfig.py │ │ │ ├── text_file.py │ │ │ ├── unixccompiler.py │ │ │ ├── util.py │ │ │ ├── version.py │ │ │ └── versionpredicate.py │ │ │ ├── _entry_points.py │ │ │ ├── _imp.py │ │ │ ├── _importlib.py │ │ │ ├── _itertools.py │ │ │ ├── _path.py │ │ │ ├── _reqs.py │ │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── ordered_set.cpython-310.pyc │ │ │ │ ├── typing_extensions.cpython-310.pyc │ │ │ │ └── zipp.cpython-310.pyc │ │ │ ├── importlib_metadata │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── _adapters.cpython-310.pyc │ │ │ │ │ ├── _collections.cpython-310.pyc │ │ │ │ │ ├── _compat.cpython-310.pyc │ │ │ │ │ ├── _functools.cpython-310.pyc │ │ │ │ │ ├── _itertools.cpython-310.pyc │ │ │ │ │ ├── _meta.cpython-310.pyc │ │ │ │ │ └── _text.cpython-310.pyc │ │ │ │ ├── _adapters.py │ │ │ │ ├── _collections.py │ │ │ │ ├── _compat.py │ │ │ │ ├── _functools.py │ │ │ │ ├── _itertools.py │ │ │ │ ├── _meta.py │ │ │ │ └── _text.py │ │ │ ├── importlib_resources │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── _adapters.cpython-310.pyc │ │ │ │ │ ├── _common.cpython-310.pyc │ │ │ │ │ ├── _compat.cpython-310.pyc │ │ │ │ │ ├── _itertools.cpython-310.pyc │ │ │ │ │ ├── _legacy.cpython-310.pyc │ │ │ │ │ ├── abc.cpython-310.pyc │ │ │ │ │ ├── readers.cpython-310.pyc │ │ │ │ │ └── simple.cpython-310.pyc │ │ │ │ ├── _adapters.py │ │ │ │ ├── _common.py │ │ │ │ ├── _compat.py │ │ │ │ ├── _itertools.py │ │ │ │ ├── _legacy.py │ │ │ │ ├── abc.py │ │ │ │ ├── readers.py │ │ │ │ └── simple.py │ │ │ ├── jaraco │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── context.cpython-310.pyc │ │ │ │ │ └── functools.cpython-310.pyc │ │ │ │ ├── context.py │ │ │ │ ├── functools.py │ │ │ │ └── text │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-310.pyc │ │ │ ├── more_itertools │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── more.cpython-310.pyc │ │ │ │ │ └── recipes.cpython-310.pyc │ │ │ │ ├── more.py │ │ │ │ └── recipes.py │ │ │ ├── ordered_set.py │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __about__.cpython-310.pyc │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── _manylinux.cpython-310.pyc │ │ │ │ │ ├── _musllinux.cpython-310.pyc │ │ │ │ │ ├── _structures.cpython-310.pyc │ │ │ │ │ ├── markers.cpython-310.pyc │ │ │ │ │ ├── requirements.cpython-310.pyc │ │ │ │ │ ├── specifiers.cpython-310.pyc │ │ │ │ │ ├── tags.cpython-310.pyc │ │ │ │ │ ├── utils.cpython-310.pyc │ │ │ │ │ └── version.cpython-310.pyc │ │ │ │ ├── _manylinux.py │ │ │ │ ├── _musllinux.py │ │ │ │ ├── _structures.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── tags.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ ├── pyparsing │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── actions.cpython-310.pyc │ │ │ │ │ ├── common.cpython-310.pyc │ │ │ │ │ ├── core.cpython-310.pyc │ │ │ │ │ ├── exceptions.cpython-310.pyc │ │ │ │ │ ├── helpers.cpython-310.pyc │ │ │ │ │ ├── results.cpython-310.pyc │ │ │ │ │ ├── testing.cpython-310.pyc │ │ │ │ │ ├── unicode.cpython-310.pyc │ │ │ │ │ └── util.cpython-310.pyc │ │ │ │ ├── actions.py │ │ │ │ ├── common.py │ │ │ │ ├── core.py │ │ │ │ ├── diagram │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ └── __init__.cpython-310.pyc │ │ │ │ ├── exceptions.py │ │ │ │ ├── helpers.py │ │ │ │ ├── results.py │ │ │ │ ├── testing.py │ │ │ │ ├── unicode.py │ │ │ │ └── util.py │ │ │ ├── tomli │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── _parser.cpython-310.pyc │ │ │ │ │ ├── _re.cpython-310.pyc │ │ │ │ │ └── _types.cpython-310.pyc │ │ │ │ ├── _parser.py │ │ │ │ ├── _re.py │ │ │ │ └── _types.py │ │ │ ├── typing_extensions.py │ │ │ └── zipp.py │ │ │ ├── archive_util.py │ │ │ ├── build_meta.py │ │ │ ├── cli-32.exe │ │ │ ├── cli-64.exe │ │ │ ├── cli-arm64.exe │ │ │ ├── cli.exe │ │ │ ├── command │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── alias.cpython-310.pyc │ │ │ │ ├── bdist_egg.cpython-310.pyc │ │ │ │ ├── bdist_rpm.cpython-310.pyc │ │ │ │ ├── build.cpython-310.pyc │ │ │ │ ├── build_clib.cpython-310.pyc │ │ │ │ ├── build_ext.cpython-310.pyc │ │ │ │ ├── build_py.cpython-310.pyc │ │ │ │ ├── develop.cpython-310.pyc │ │ │ │ ├── dist_info.cpython-310.pyc │ │ │ │ ├── easy_install.cpython-310.pyc │ │ │ │ ├── egg_info.cpython-310.pyc │ │ │ │ ├── install.cpython-310.pyc │ │ │ │ ├── install_egg_info.cpython-310.pyc │ │ │ │ ├── install_lib.cpython-310.pyc │ │ │ │ ├── install_scripts.cpython-310.pyc │ │ │ │ ├── py36compat.cpython-310.pyc │ │ │ │ ├── register.cpython-310.pyc │ │ │ │ ├── rotate.cpython-310.pyc │ │ │ │ ├── saveopts.cpython-310.pyc │ │ │ │ ├── sdist.cpython-310.pyc │ │ │ │ ├── setopt.cpython-310.pyc │ │ │ │ ├── test.cpython-310.pyc │ │ │ │ ├── upload.cpython-310.pyc │ │ │ │ └── upload_docs.cpython-310.pyc │ │ │ ├── alias.py │ │ │ ├── bdist_egg.py │ │ │ ├── bdist_rpm.py │ │ │ ├── build.py │ │ │ ├── build_clib.py │ │ │ ├── build_ext.py │ │ │ ├── build_py.py │ │ │ ├── develop.py │ │ │ ├── dist_info.py │ │ │ ├── easy_install.py │ │ │ ├── egg_info.py │ │ │ ├── install.py │ │ │ ├── install_egg_info.py │ │ │ ├── install_lib.py │ │ │ ├── install_scripts.py │ │ │ ├── launcher manifest.xml │ │ │ ├── py36compat.py │ │ │ ├── register.py │ │ │ ├── rotate.py │ │ │ ├── saveopts.py │ │ │ ├── sdist.py │ │ │ ├── setopt.py │ │ │ ├── test.py │ │ │ ├── upload.py │ │ │ └── upload_docs.py │ │ │ ├── config │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── _apply_pyprojecttoml.cpython-310.pyc │ │ │ │ ├── expand.cpython-310.pyc │ │ │ │ ├── pyprojecttoml.cpython-310.pyc │ │ │ │ └── setupcfg.cpython-310.pyc │ │ │ ├── _apply_pyprojecttoml.py │ │ │ ├── _validate_pyproject │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── error_reporting.cpython-310.pyc │ │ │ │ │ ├── extra_validations.cpython-310.pyc │ │ │ │ │ ├── fastjsonschema_exceptions.cpython-310.pyc │ │ │ │ │ ├── fastjsonschema_validations.cpython-310.pyc │ │ │ │ │ └── formats.cpython-310.pyc │ │ │ │ ├── error_reporting.py │ │ │ │ ├── extra_validations.py │ │ │ │ ├── fastjsonschema_exceptions.py │ │ │ │ ├── fastjsonschema_validations.py │ │ │ │ └── formats.py │ │ │ ├── expand.py │ │ │ ├── pyprojecttoml.py │ │ │ └── setupcfg.py │ │ │ ├── dep_util.py │ │ │ ├── depends.py │ │ │ ├── discovery.py │ │ │ ├── dist.py │ │ │ ├── errors.py │ │ │ ├── extension.py │ │ │ ├── extern │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-310.pyc │ │ │ ├── glob.py │ │ │ ├── gui-32.exe │ │ │ ├── gui-64.exe │ │ │ ├── gui-arm64.exe │ │ │ ├── gui.exe │ │ │ ├── installer.py │ │ │ ├── launch.py │ │ │ ├── logging.py │ │ │ ├── monkey.py │ │ │ ├── msvc.py │ │ │ ├── namespaces.py │ │ │ ├── package_index.py │ │ │ ├── py34compat.py │ │ │ ├── sandbox.py │ │ │ ├── script (dev).tmpl │ │ │ ├── script.tmpl │ │ │ ├── unicode_utils.py │ │ │ ├── version.py │ │ │ ├── wheel.py │ │ │ └── windows_support.py │ │ ├── site.py │ │ ├── smtpd.py │ │ ├── smtplib.py │ │ ├── sndhdr.py │ │ ├── socket.py │ │ ├── socketserver.py │ │ ├── sqlite3 │ │ ├── __init__.py │ │ ├── dbapi2.py │ │ ├── dump.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── backup.py │ │ │ ├── dbapi.py │ │ │ ├── dump.py │ │ │ ├── factory.py │ │ │ ├── hooks.py │ │ │ ├── regression.py │ │ │ ├── transactions.py │ │ │ ├── types.py │ │ │ └── userfunctions.py │ │ ├── sre_compile.py │ │ ├── sre_constants.py │ │ ├── sre_parse.py │ │ ├── ssl.py │ │ ├── stat.py │ │ ├── statistics.py │ │ ├── string.py │ │ ├── stringprep.py │ │ ├── struct.py │ │ ├── subprocess.py │ │ ├── sunau.py │ │ ├── symtable.py │ │ ├── sysconfig.py │ │ ├── tabnanny.py │ │ ├── tarfile.py │ │ ├── telnetlib.py │ │ ├── tempfile.py │ │ ├── test │ │ ├── Sine-1000Hz-300ms.aif │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── _test_atexit.py │ │ ├── _test_eintr.py │ │ ├── _test_embed_set_config.py │ │ ├── _test_multiprocessing.py │ │ ├── _typed_dict_helper.py │ │ ├── allsans.pem │ │ ├── ann_module.py │ │ ├── ann_module2.py │ │ ├── ann_module3.py │ │ ├── ann_module4.py │ │ ├── ann_module5.py │ │ ├── ann_module6.py │ │ ├── ann_module7.py │ │ ├── audiodata │ │ │ ├── pluck-alaw.aifc │ │ │ ├── pluck-pcm16.aiff │ │ │ ├── pluck-pcm16.au │ │ │ ├── pluck-pcm16.wav │ │ │ ├── pluck-pcm24.aiff │ │ │ ├── pluck-pcm24.au │ │ │ ├── pluck-pcm24.wav │ │ │ ├── pluck-pcm32.aiff │ │ │ ├── pluck-pcm32.au │ │ │ ├── pluck-pcm32.wav │ │ │ ├── pluck-pcm8.aiff │ │ │ ├── pluck-pcm8.au │ │ │ ├── pluck-pcm8.wav │ │ │ ├── pluck-ulaw.aifc │ │ │ └── pluck-ulaw.au │ │ ├── audiotest.au │ │ ├── audiotests.py │ │ ├── audit-tests.py │ │ ├── autotest.py │ │ ├── bad_coding.py │ │ ├── bad_coding2.py │ │ ├── bad_getattr.py │ │ ├── bad_getattr2.py │ │ ├── bad_getattr3.py │ │ ├── badcert.pem │ │ ├── badkey.pem │ │ ├── badsyntax_3131.py │ │ ├── badsyntax_future10.py │ │ ├── badsyntax_future3.py │ │ ├── badsyntax_future4.py │ │ ├── badsyntax_future5.py │ │ ├── badsyntax_future6.py │ │ ├── badsyntax_future7.py │ │ ├── badsyntax_future8.py │ │ ├── badsyntax_future9.py │ │ ├── badsyntax_pep3120.py │ │ ├── bisect_cmd.py │ │ ├── capath │ │ │ ├── 4e1295a3.0 │ │ │ ├── 5ed36f99.0 │ │ │ ├── 6e88d7b8.0 │ │ │ ├── 99d0fa06.0 │ │ │ ├── b1930218.0 │ │ │ └── ceff1710.0 │ │ ├── cfgparser.1 │ │ ├── cfgparser.2 │ │ ├── cfgparser.3 │ │ ├── cjkencodings │ │ │ ├── big5-utf8.txt │ │ │ ├── big5.txt │ │ │ ├── big5hkscs-utf8.txt │ │ │ ├── big5hkscs.txt │ │ │ ├── cp949-utf8.txt │ │ │ ├── cp949.txt │ │ │ ├── euc_jisx0213-utf8.txt │ │ │ ├── euc_jisx0213.txt │ │ │ ├── euc_jp-utf8.txt │ │ │ ├── euc_jp.txt │ │ │ ├── euc_kr-utf8.txt │ │ │ ├── euc_kr.txt │ │ │ ├── gb18030-utf8.txt │ │ │ ├── gb18030.txt │ │ │ ├── gb2312-utf8.txt │ │ │ ├── gb2312.txt │ │ │ ├── gbk-utf8.txt │ │ │ ├── gbk.txt │ │ │ ├── hz-utf8.txt │ │ │ ├── hz.txt │ │ │ ├── iso2022_jp-utf8.txt │ │ │ ├── iso2022_jp.txt │ │ │ ├── iso2022_kr-utf8.txt │ │ │ ├── iso2022_kr.txt │ │ │ ├── johab-utf8.txt │ │ │ ├── johab.txt │ │ │ ├── shift_jis-utf8.txt │ │ │ ├── shift_jis.txt │ │ │ ├── shift_jisx0213-utf8.txt │ │ │ └── shift_jisx0213.txt │ │ ├── clinic.test │ │ ├── cmath_testcases.txt │ │ ├── coding20731.py │ │ ├── crashers │ │ │ ├── README │ │ │ ├── bogus_code_obj.py │ │ │ ├── gc_inspection.py │ │ │ ├── infinite_loop_re.py │ │ │ ├── mutation_inside_cyclegc.py │ │ │ ├── recursive_call.py │ │ │ ├── trace_at_recursion_limit.py │ │ │ └── underlying_dict.py │ │ ├── curses_tests.py │ │ ├── data │ │ │ └── README │ │ ├── dataclass_module_1.py │ │ ├── dataclass_module_1_str.py │ │ ├── dataclass_module_2.py │ │ ├── dataclass_module_2_str.py │ │ ├── dataclass_textanno.py │ │ ├── datetimetester.py │ │ ├── decimaltestdata │ │ │ ├── abs.decTest │ │ │ ├── add.decTest │ │ │ ├── and.decTest │ │ │ ├── base.decTest │ │ │ ├── clamp.decTest │ │ │ ├── class.decTest │ │ │ ├── compare.decTest │ │ │ ├── comparetotal.decTest │ │ │ ├── comparetotmag.decTest │ │ │ ├── copy.decTest │ │ │ ├── copyabs.decTest │ │ │ ├── copynegate.decTest │ │ │ ├── copysign.decTest │ │ │ ├── ddAbs.decTest │ │ │ ├── ddAdd.decTest │ │ │ ├── ddAnd.decTest │ │ │ ├── ddBase.decTest │ │ │ ├── ddCanonical.decTest │ │ │ ├── ddClass.decTest │ │ │ ├── ddCompare.decTest │ │ │ ├── ddCompareSig.decTest │ │ │ ├── ddCompareTotal.decTest │ │ │ ├── ddCompareTotalMag.decTest │ │ │ ├── ddCopy.decTest │ │ │ ├── ddCopyAbs.decTest │ │ │ ├── ddCopyNegate.decTest │ │ │ ├── ddCopySign.decTest │ │ │ ├── ddDivide.decTest │ │ │ ├── ddDivideInt.decTest │ │ │ ├── ddEncode.decTest │ │ │ ├── ddFMA.decTest │ │ │ ├── ddInvert.decTest │ │ │ ├── ddLogB.decTest │ │ │ ├── ddMax.decTest │ │ │ ├── ddMaxMag.decTest │ │ │ ├── ddMin.decTest │ │ │ ├── ddMinMag.decTest │ │ │ ├── ddMinus.decTest │ │ │ ├── ddMultiply.decTest │ │ │ ├── ddNextMinus.decTest │ │ │ ├── ddNextPlus.decTest │ │ │ ├── ddNextToward.decTest │ │ │ ├── ddOr.decTest │ │ │ ├── ddPlus.decTest │ │ │ ├── ddQuantize.decTest │ │ │ ├── ddReduce.decTest │ │ │ ├── ddRemainder.decTest │ │ │ ├── ddRemainderNear.decTest │ │ │ ├── ddRotate.decTest │ │ │ ├── ddSameQuantum.decTest │ │ │ ├── ddScaleB.decTest │ │ │ ├── ddShift.decTest │ │ │ ├── ddSubtract.decTest │ │ │ ├── ddToIntegral.decTest │ │ │ ├── ddXor.decTest │ │ │ ├── decDouble.decTest │ │ │ ├── decQuad.decTest │ │ │ ├── decSingle.decTest │ │ │ ├── divide.decTest │ │ │ ├── divideint.decTest │ │ │ ├── dqAbs.decTest │ │ │ ├── dqAdd.decTest │ │ │ ├── dqAnd.decTest │ │ │ ├── dqBase.decTest │ │ │ ├── dqCanonical.decTest │ │ │ ├── dqClass.decTest │ │ │ ├── dqCompare.decTest │ │ │ ├── dqCompareSig.decTest │ │ │ ├── dqCompareTotal.decTest │ │ │ ├── dqCompareTotalMag.decTest │ │ │ ├── dqCopy.decTest │ │ │ ├── dqCopyAbs.decTest │ │ │ ├── dqCopyNegate.decTest │ │ │ ├── dqCopySign.decTest │ │ │ ├── dqDivide.decTest │ │ │ ├── dqDivideInt.decTest │ │ │ ├── dqEncode.decTest │ │ │ ├── dqFMA.decTest │ │ │ ├── dqInvert.decTest │ │ │ ├── dqLogB.decTest │ │ │ ├── dqMax.decTest │ │ │ ├── dqMaxMag.decTest │ │ │ ├── dqMin.decTest │ │ │ ├── dqMinMag.decTest │ │ │ ├── dqMinus.decTest │ │ │ ├── dqMultiply.decTest │ │ │ ├── dqNextMinus.decTest │ │ │ ├── dqNextPlus.decTest │ │ │ ├── dqNextToward.decTest │ │ │ ├── dqOr.decTest │ │ │ ├── dqPlus.decTest │ │ │ ├── dqQuantize.decTest │ │ │ ├── dqReduce.decTest │ │ │ ├── dqRemainder.decTest │ │ │ ├── dqRemainderNear.decTest │ │ │ ├── dqRotate.decTest │ │ │ ├── dqSameQuantum.decTest │ │ │ ├── dqScaleB.decTest │ │ │ ├── dqShift.decTest │ │ │ ├── dqSubtract.decTest │ │ │ ├── dqToIntegral.decTest │ │ │ ├── dqXor.decTest │ │ │ ├── dsBase.decTest │ │ │ ├── dsEncode.decTest │ │ │ ├── exp.decTest │ │ │ ├── extra.decTest │ │ │ ├── fma.decTest │ │ │ ├── inexact.decTest │ │ │ ├── invert.decTest │ │ │ ├── ln.decTest │ │ │ ├── log10.decTest │ │ │ ├── logb.decTest │ │ │ ├── max.decTest │ │ │ ├── maxmag.decTest │ │ │ ├── min.decTest │ │ │ ├── minmag.decTest │ │ │ ├── minus.decTest │ │ │ ├── multiply.decTest │ │ │ ├── nextminus.decTest │ │ │ ├── nextplus.decTest │ │ │ ├── nexttoward.decTest │ │ │ ├── or.decTest │ │ │ ├── plus.decTest │ │ │ ├── power.decTest │ │ │ ├── powersqrt.decTest │ │ │ ├── quantize.decTest │ │ │ ├── randomBound32.decTest │ │ │ ├── randoms.decTest │ │ │ ├── reduce.decTest │ │ │ ├── remainder.decTest │ │ │ ├── remainderNear.decTest │ │ │ ├── rescale.decTest │ │ │ ├── rotate.decTest │ │ │ ├── rounding.decTest │ │ │ ├── samequantum.decTest │ │ │ ├── scaleb.decTest │ │ │ ├── shift.decTest │ │ │ ├── squareroot.decTest │ │ │ ├── subtract.decTest │ │ │ ├── testall.decTest │ │ │ ├── tointegral.decTest │ │ │ ├── tointegralx.decTest │ │ │ └── xor.decTest │ │ ├── dis_module.py │ │ ├── doctest_aliases.py │ │ ├── doctest_lineno.py │ │ ├── double_const.py │ │ ├── dtracedata │ │ │ ├── assert_usable.d │ │ │ ├── assert_usable.stp │ │ │ ├── call_stack.d │ │ │ ├── call_stack.d.expected │ │ │ ├── call_stack.py │ │ │ ├── call_stack.stp │ │ │ ├── call_stack.stp.expected │ │ │ ├── gc.d │ │ │ ├── gc.d.expected │ │ │ ├── gc.py │ │ │ ├── gc.stp │ │ │ ├── gc.stp.expected │ │ │ ├── instance.py │ │ │ ├── line.d │ │ │ ├── line.d.expected │ │ │ └── line.py │ │ ├── empty.vbs │ │ ├── encoded_modules │ │ │ ├── __init__.py │ │ │ ├── module_iso_8859_1.py │ │ │ └── module_koi8_r.py │ │ ├── exception_hierarchy.txt │ │ ├── ffdh3072.pem │ │ ├── final_a.py │ │ ├── final_b.py │ │ ├── floating_points.txt │ │ ├── fork_wait.py │ │ ├── formatfloat_testcases.txt │ │ ├── future_test1.py │ │ ├── future_test2.py │ │ ├── gdb_sample.py │ │ ├── good_getattr.py │ │ ├── idnsans.pem │ │ ├── ieee754.txt │ │ ├── imghdrdata │ │ │ ├── python.bmp │ │ │ ├── python.exr │ │ │ ├── python.gif │ │ │ ├── python.jpg │ │ │ ├── python.pbm │ │ │ ├── python.pgm │ │ │ ├── python.png │ │ │ ├── python.ppm │ │ │ ├── python.ras │ │ │ ├── python.sgi │ │ │ ├── python.tiff │ │ │ ├── python.webp │ │ │ └── python.xbm │ │ ├── imp_dummy.py │ │ ├── inspect_fodder.py │ │ ├── inspect_fodder2.py │ │ ├── inspect_stock_annotations.py │ │ ├── inspect_stringized_annotations.py │ │ ├── inspect_stringized_annotations_2.py │ │ ├── keycert.passwd.pem │ │ ├── keycert.pem │ │ ├── keycert2.pem │ │ ├── keycert3.pem │ │ ├── keycert4.pem │ │ ├── keycertecc.pem │ │ ├── leakers │ │ │ ├── README.txt │ │ │ ├── __init__.py │ │ │ ├── test_ctypes.py │ │ │ └── test_selftype.py │ │ ├── libregrtest │ │ │ ├── __init__.py │ │ │ ├── cmdline.py │ │ │ ├── main.py │ │ │ ├── pgo.py │ │ │ ├── refleak.py │ │ │ ├── runtest.py │ │ │ ├── runtest_mp.py │ │ │ ├── save_env.py │ │ │ ├── setup.py │ │ │ ├── utils.py │ │ │ └── win_utils.py │ │ ├── list_tests.py │ │ ├── lock_tests.py │ │ ├── mailcap.txt │ │ ├── make_ssl_certs.py │ │ ├── mapping_tests.py │ │ ├── math_testcases.txt │ │ ├── memory_watchdog.py │ │ ├── mime.types │ │ ├── mock_socket.py │ │ ├── mod_generics_cache.py │ │ ├── mp_fork_bomb.py │ │ ├── mp_preload.py │ │ ├── multibytecodec_support.py │ │ ├── nokia.pem │ │ ├── nosan.pem │ │ ├── nullbytecert.pem │ │ ├── nullcert.pem │ │ ├── pickletester.py │ │ ├── profilee.py │ │ ├── pstats.pck │ │ ├── pycacert.pem │ │ ├── pycakey.pem │ │ ├── pyclbr_input.py │ │ ├── pydoc_mod.py │ │ ├── pydocfodder.py │ │ ├── pythoninfo.py │ │ ├── randv2_32.pck │ │ ├── randv2_64.pck │ │ ├── randv3.pck │ │ ├── re_tests.py │ │ ├── recursion.tar │ │ ├── regrtest.py │ │ ├── relimport.py │ │ ├── reperf.py │ │ ├── revocation.crl │ │ ├── sample_doctest.py │ │ ├── sample_doctest_no_docstrings.py │ │ ├── sample_doctest_no_doctests.py │ │ ├── secp384r1.pem │ │ ├── selfsigned_pythontestdotnet.pem │ │ ├── seq_tests.py │ │ ├── sgml_input.html │ │ ├── signalinterproctester.py │ │ ├── sndhdrdata │ │ │ ├── README │ │ │ ├── sndhdr.8svx │ │ │ ├── sndhdr.aifc │ │ │ ├── sndhdr.aiff │ │ │ ├── sndhdr.au │ │ │ ├── sndhdr.hcom │ │ │ ├── sndhdr.sndt │ │ │ ├── sndhdr.voc │ │ │ └── sndhdr.wav │ │ ├── sortperf.py │ │ ├── ssl_cert.pem │ │ ├── ssl_key.passwd.pem │ │ ├── ssl_key.pem │ │ ├── ssl_servers.py │ │ ├── ssltests.py │ │ ├── string_tests.py │ │ ├── subprocessdata │ │ │ ├── fd_status.py │ │ │ ├── input_reader.py │ │ │ ├── qcat.py │ │ │ ├── qgrep.py │ │ │ └── sigchild_ignore.py │ │ ├── support │ │ │ ├── __init__.py │ │ │ ├── bytecode_helper.py │ │ │ ├── hashlib_helper.py │ │ │ ├── import_helper.py │ │ │ ├── interpreters.py │ │ │ ├── logging_helper.py │ │ │ ├── os_helper.py │ │ │ ├── script_helper.py │ │ │ ├── socket_helper.py │ │ │ ├── testresult.py │ │ │ ├── threading_helper.py │ │ │ └── warnings_helper.py │ │ ├── talos-2019-0758.pem │ │ ├── test___all__.py │ │ ├── test___future__.py │ │ ├── test__locale.py │ │ ├── test__opcode.py │ │ ├── test__osx_support.py │ │ ├── test__xxsubinterpreters.py │ │ ├── test_abc.py │ │ ├── test_abstract_numbers.py │ │ ├── test_aifc.py │ │ ├── test_argparse.py │ │ ├── test_array.py │ │ ├── test_asdl_parser.py │ │ ├── test_ast.py │ │ ├── test_asyncgen.py │ │ ├── test_asynchat.py │ │ ├── test_asyncio │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── echo.py │ │ │ ├── echo2.py │ │ │ ├── echo3.py │ │ │ ├── functional.py │ │ │ ├── test_base_events.py │ │ │ ├── test_buffered_proto.py │ │ │ ├── test_context.py │ │ │ ├── test_events.py │ │ │ ├── test_futures.py │ │ │ ├── test_futures2.py │ │ │ ├── test_locks.py │ │ │ ├── test_pep492.py │ │ │ ├── test_proactor_events.py │ │ │ ├── test_protocols.py │ │ │ ├── test_queues.py │ │ │ ├── test_runners.py │ │ │ ├── test_selector_events.py │ │ │ ├── test_sendfile.py │ │ │ ├── test_server.py │ │ │ ├── test_sock_lowlevel.py │ │ │ ├── test_sslproto.py │ │ │ ├── test_streams.py │ │ │ ├── test_subprocess.py │ │ │ ├── test_tasks.py │ │ │ ├── test_threads.py │ │ │ ├── test_transports.py │ │ │ ├── test_unix_events.py │ │ │ ├── test_waitfor.py │ │ │ ├── test_windows_events.py │ │ │ ├── test_windows_utils.py │ │ │ └── utils.py │ │ ├── test_asyncore.py │ │ ├── test_atexit.py │ │ ├── test_audioop.py │ │ ├── test_audit.py │ │ ├── test_augassign.py │ │ ├── test_base64.py │ │ ├── test_baseexception.py │ │ ├── test_bdb.py │ │ ├── test_bigaddrspace.py │ │ ├── test_bigmem.py │ │ ├── test_binascii.py │ │ ├── test_binhex.py │ │ ├── test_binop.py │ │ ├── test_bisect.py │ │ ├── test_bool.py │ │ ├── test_buffer.py │ │ ├── test_bufio.py │ │ ├── test_builtin.py │ │ ├── test_bytes.py │ │ ├── test_bz2.py │ │ ├── test_c_locale_coercion.py │ │ ├── test_calendar.py │ │ ├── test_call.py │ │ ├── test_capi.py │ │ ├── test_cgi.py │ │ ├── test_cgitb.py │ │ ├── test_charmapcodec.py │ │ ├── test_check_c_globals.py │ │ ├── test_class.py │ │ ├── test_clinic.py │ │ ├── test_cmath.py │ │ ├── test_cmd.py │ │ ├── test_cmd_line.py │ │ ├── test_cmd_line_script.py │ │ ├── test_code.py │ │ ├── test_code_module.py │ │ ├── test_codeccallbacks.py │ │ ├── test_codecencodings_cn.py │ │ ├── test_codecencodings_hk.py │ │ ├── test_codecencodings_iso2022.py │ │ ├── test_codecencodings_jp.py │ │ ├── test_codecencodings_kr.py │ │ ├── test_codecencodings_tw.py │ │ ├── test_codecmaps_cn.py │ │ ├── test_codecmaps_hk.py │ │ ├── test_codecmaps_jp.py │ │ ├── test_codecmaps_kr.py │ │ ├── test_codecmaps_tw.py │ │ ├── test_codecs.py │ │ ├── test_codeop.py │ │ ├── test_collections.py │ │ ├── test_colorsys.py │ │ ├── test_compare.py │ │ ├── test_compile.py │ │ ├── test_compileall.py │ │ ├── test_complex.py │ │ ├── test_concurrent_futures.py │ │ ├── test_configparser.py │ │ ├── test_contains.py │ │ ├── test_context.py │ │ ├── test_contextlib.py │ │ ├── test_contextlib_async.py │ │ ├── test_copy.py │ │ ├── test_copyreg.py │ │ ├── test_coroutines.py │ │ ├── test_cprofile.py │ │ ├── test_crashers.py │ │ ├── test_crypt.py │ │ ├── test_csv.py │ │ ├── test_ctypes.py │ │ ├── test_curses.py │ │ ├── test_dataclasses.py │ │ ├── test_datetime.py │ │ ├── test_dbm.py │ │ ├── test_dbm_dumb.py │ │ ├── test_dbm_gnu.py │ │ ├── test_dbm_ndbm.py │ │ ├── test_decimal.py │ │ ├── test_decorators.py │ │ ├── test_defaultdict.py │ │ ├── test_deque.py │ │ ├── test_descr.py │ │ ├── test_descrtut.py │ │ ├── test_devpoll.py │ │ ├── test_dict.py │ │ ├── test_dict_version.py │ │ ├── test_dictcomps.py │ │ ├── test_dictviews.py │ │ ├── test_difflib.py │ │ ├── test_difflib_expect.html │ │ ├── test_dis.py │ │ ├── test_distutils.py │ │ ├── test_doctest.py │ │ ├── test_doctest.txt │ │ ├── test_doctest2.py │ │ ├── test_doctest2.txt │ │ ├── test_doctest3.txt │ │ ├── test_doctest4.txt │ │ ├── test_docxmlrpc.py │ │ ├── test_dtrace.py │ │ ├── test_dynamic.py │ │ ├── test_dynamicclassattribute.py │ │ ├── test_eintr.py │ │ ├── test_email │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── data │ │ │ │ ├── PyBanner048.gif │ │ │ │ ├── audiotest.au │ │ │ │ ├── msg_01.txt │ │ │ │ ├── msg_02.txt │ │ │ │ ├── msg_03.txt │ │ │ │ ├── msg_04.txt │ │ │ │ ├── msg_05.txt │ │ │ │ ├── msg_06.txt │ │ │ │ ├── msg_07.txt │ │ │ │ ├── msg_08.txt │ │ │ │ ├── msg_09.txt │ │ │ │ ├── msg_10.txt │ │ │ │ ├── msg_11.txt │ │ │ │ ├── msg_12.txt │ │ │ │ ├── msg_12a.txt │ │ │ │ ├── msg_13.txt │ │ │ │ ├── msg_14.txt │ │ │ │ ├── msg_15.txt │ │ │ │ ├── msg_16.txt │ │ │ │ ├── msg_17.txt │ │ │ │ ├── msg_18.txt │ │ │ │ ├── msg_19.txt │ │ │ │ ├── msg_20.txt │ │ │ │ ├── msg_21.txt │ │ │ │ ├── msg_22.txt │ │ │ │ ├── msg_23.txt │ │ │ │ ├── msg_24.txt │ │ │ │ ├── msg_25.txt │ │ │ │ ├── msg_26.txt │ │ │ │ ├── msg_27.txt │ │ │ │ ├── msg_28.txt │ │ │ │ ├── msg_29.txt │ │ │ │ ├── msg_30.txt │ │ │ │ ├── msg_31.txt │ │ │ │ ├── msg_32.txt │ │ │ │ ├── msg_33.txt │ │ │ │ ├── msg_34.txt │ │ │ │ ├── msg_35.txt │ │ │ │ ├── msg_36.txt │ │ │ │ ├── msg_37.txt │ │ │ │ ├── msg_38.txt │ │ │ │ ├── msg_39.txt │ │ │ │ ├── msg_40.txt │ │ │ │ ├── msg_41.txt │ │ │ │ ├── msg_42.txt │ │ │ │ ├── msg_43.txt │ │ │ │ ├── msg_44.txt │ │ │ │ ├── msg_45.txt │ │ │ │ └── msg_46.txt │ │ │ ├── test__encoded_words.py │ │ │ ├── test__header_value_parser.py │ │ │ ├── test_asian_codecs.py │ │ │ ├── test_contentmanager.py │ │ │ ├── test_defect_handling.py │ │ │ ├── test_email.py │ │ │ ├── test_generator.py │ │ │ ├── test_headerregistry.py │ │ │ ├── test_inversion.py │ │ │ ├── test_message.py │ │ │ ├── test_parser.py │ │ │ ├── test_pickleable.py │ │ │ ├── test_policy.py │ │ │ ├── test_utils.py │ │ │ └── torture_test.py │ │ ├── test_embed.py │ │ ├── test_ensurepip.py │ │ ├── test_enum.py │ │ ├── test_enumerate.py │ │ ├── test_eof.py │ │ ├── test_epoll.py │ │ ├── test_errno.py │ │ ├── test_exception_hierarchy.py │ │ ├── test_exception_variations.py │ │ ├── test_exceptions.py │ │ ├── test_extcall.py │ │ ├── test_faulthandler.py │ │ ├── test_fcntl.py │ │ ├── test_file.py │ │ ├── test_file_eintr.py │ │ ├── test_filecmp.py │ │ ├── test_fileinput.py │ │ ├── test_fileio.py │ │ ├── test_finalization.py │ │ ├── test_float.py │ │ ├── test_flufl.py │ │ ├── test_fnmatch.py │ │ ├── test_fork1.py │ │ ├── test_format.py │ │ ├── test_fractions.py │ │ ├── test_frame.py │ │ ├── test_frozen.py │ │ ├── test_fstring.py │ │ ├── test_ftplib.py │ │ ├── test_funcattrs.py │ │ ├── test_functools.py │ │ ├── test_future.py │ │ ├── test_future3.py │ │ ├── test_future4.py │ │ ├── test_future5.py │ │ ├── test_gc.py │ │ ├── test_gdb.py │ │ ├── test_generator_stop.py │ │ ├── test_generators.py │ │ ├── test_genericalias.py │ │ ├── test_genericclass.py │ │ ├── test_genericpath.py │ │ ├── test_genexps.py │ │ ├── test_getargs2.py │ │ ├── test_getopt.py │ │ ├── test_getpass.py │ │ ├── test_gettext.py │ │ ├── test_glob.py │ │ ├── test_global.py │ │ ├── test_grammar.py │ │ ├── test_graphlib.py │ │ ├── test_grp.py │ │ ├── test_gzip.py │ │ ├── test_hash.py │ │ ├── test_hashlib.py │ │ ├── test_heapq.py │ │ ├── test_hmac.py │ │ ├── test_html.py │ │ ├── test_htmlparser.py │ │ ├── test_http_cookiejar.py │ │ ├── test_http_cookies.py │ │ ├── test_httplib.py │ │ ├── test_httpservers.py │ │ ├── test_idle.py │ │ ├── test_imaplib.py │ │ ├── test_imghdr.py │ │ ├── test_imp.py │ │ ├── test_import │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── data │ │ │ │ ├── circular_imports │ │ │ │ ├── basic.py │ │ │ │ ├── basic2.py │ │ │ │ ├── binding.py │ │ │ │ ├── binding2.py │ │ │ │ ├── from_cycle1.py │ │ │ │ ├── from_cycle2.py │ │ │ │ ├── indirect.py │ │ │ │ ├── rebinding.py │ │ │ │ ├── rebinding2.py │ │ │ │ ├── source.py │ │ │ │ ├── subpackage.py │ │ │ │ ├── subpkg │ │ │ │ │ ├── subpackage2.py │ │ │ │ │ └── util.py │ │ │ │ ├── use.py │ │ │ │ └── util.py │ │ │ │ ├── package │ │ │ │ ├── __init__.py │ │ │ │ └── submodule.py │ │ │ │ ├── package2 │ │ │ │ ├── submodule1.py │ │ │ │ └── submodule2.py │ │ │ │ └── unwritable │ │ │ │ ├── __init__.py │ │ │ │ └── x.py │ │ ├── test_importlib │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── abc.py │ │ │ ├── builtin │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── test_finder.py │ │ │ │ └── test_loader.py │ │ │ ├── data │ │ │ │ ├── __init__.py │ │ │ │ ├── example-21.12-py3-none-any.whl │ │ │ │ └── example-21.12-py3.6.egg │ │ │ ├── data01 │ │ │ │ ├── __init__.py │ │ │ │ ├── binary.file │ │ │ │ ├── subdirectory │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── binary.file │ │ │ │ ├── utf-16.file │ │ │ │ └── utf-8.file │ │ │ ├── data02 │ │ │ │ ├── __init__.py │ │ │ │ ├── one │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── resource1.txt │ │ │ │ └── two │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── resource2.txt │ │ │ ├── data03 │ │ │ │ ├── __init__.py │ │ │ │ └── namespace │ │ │ │ │ ├── portion1 │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── portion2 │ │ │ │ │ └── __init__.py │ │ │ │ │ └── resource1.txt │ │ │ ├── extension │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── test_case_sensitivity.py │ │ │ │ ├── test_finder.py │ │ │ │ ├── test_loader.py │ │ │ │ └── test_path_hook.py │ │ │ ├── fixtures.py │ │ │ ├── frozen │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── test_finder.py │ │ │ │ └── test_loader.py │ │ │ ├── import_ │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── test___loader__.py │ │ │ │ ├── test___package__.py │ │ │ │ ├── test_api.py │ │ │ │ ├── test_caching.py │ │ │ │ ├── test_fromlist.py │ │ │ │ ├── test_meta_path.py │ │ │ │ ├── test_packages.py │ │ │ │ ├── test_path.py │ │ │ │ └── test_relative_imports.py │ │ │ ├── namespace_pkgs │ │ │ │ ├── both_portions │ │ │ │ │ └── foo │ │ │ │ │ │ ├── one.py │ │ │ │ │ │ └── two.py │ │ │ │ ├── missing_directory.zip │ │ │ │ ├── module_and_namespace_package │ │ │ │ │ ├── a_test.py │ │ │ │ │ └── a_test │ │ │ │ │ │ └── empty │ │ │ │ ├── nested_portion1.zip │ │ │ │ ├── not_a_namespace_pkg │ │ │ │ │ └── foo │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── one.py │ │ │ │ ├── portion1 │ │ │ │ │ └── foo │ │ │ │ │ │ └── one.py │ │ │ │ ├── portion2 │ │ │ │ │ └── foo │ │ │ │ │ │ └── two.py │ │ │ │ ├── project1 │ │ │ │ │ └── parent │ │ │ │ │ │ └── child │ │ │ │ │ │ └── one.py │ │ │ │ ├── project2 │ │ │ │ │ └── parent │ │ │ │ │ │ └── child │ │ │ │ │ │ └── two.py │ │ │ │ ├── project3 │ │ │ │ │ └── parent │ │ │ │ │ │ └── child │ │ │ │ │ │ └── three.py │ │ │ │ └── top_level_portion1.zip │ │ │ ├── namespacedata01 │ │ │ │ ├── binary.file │ │ │ │ ├── utf-16.file │ │ │ │ └── utf-8.file │ │ │ ├── partial │ │ │ │ ├── cfimport.py │ │ │ │ └── pool_in_threads.py │ │ │ ├── source │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── test_case_sensitivity.py │ │ │ │ ├── test_file_loader.py │ │ │ │ ├── test_finder.py │ │ │ │ ├── test_path_hook.py │ │ │ │ └── test_source_encoding.py │ │ │ ├── stubs.py │ │ │ ├── test_abc.py │ │ │ ├── test_api.py │ │ │ ├── test_files.py │ │ │ ├── test_lazy.py │ │ │ ├── test_locks.py │ │ │ ├── test_main.py │ │ │ ├── test_metadata_api.py │ │ │ ├── test_namespace_pkgs.py │ │ │ ├── test_open.py │ │ │ ├── test_path.py │ │ │ ├── test_pkg_import.py │ │ │ ├── test_read.py │ │ │ ├── test_reader.py │ │ │ ├── test_resource.py │ │ │ ├── test_spec.py │ │ │ ├── test_threaded_import.py │ │ │ ├── test_util.py │ │ │ ├── test_windows.py │ │ │ ├── test_zip.py │ │ │ ├── threaded_import_hangers.py │ │ │ ├── update-zips.py │ │ │ ├── util.py │ │ │ ├── zipdata01 │ │ │ │ ├── __init__.py │ │ │ │ └── ziptestdata.zip │ │ │ └── zipdata02 │ │ │ │ ├── __init__.py │ │ │ │ └── ziptestdata.zip │ │ ├── test_index.py │ │ ├── test_inspect.py │ │ ├── test_int.py │ │ ├── test_int_literal.py │ │ ├── test_interpreters.py │ │ ├── test_io.py │ │ ├── test_ioctl.py │ │ ├── test_ipaddress.py │ │ ├── test_isinstance.py │ │ ├── test_iter.py │ │ ├── test_iterlen.py │ │ ├── test_itertools.py │ │ ├── test_json │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── test_decode.py │ │ │ ├── test_default.py │ │ │ ├── test_dump.py │ │ │ ├── test_encode_basestring_ascii.py │ │ │ ├── test_enum.py │ │ │ ├── test_fail.py │ │ │ ├── test_float.py │ │ │ ├── test_indent.py │ │ │ ├── test_pass1.py │ │ │ ├── test_pass2.py │ │ │ ├── test_pass3.py │ │ │ ├── test_recursion.py │ │ │ ├── test_scanstring.py │ │ │ ├── test_separators.py │ │ │ ├── test_speedups.py │ │ │ ├── test_tool.py │ │ │ └── test_unicode.py │ │ ├── test_keyword.py │ │ ├── test_keywordonlyarg.py │ │ ├── test_kqueue.py │ │ ├── test_largefile.py │ │ ├── test_lib2to3.py │ │ ├── test_linecache.py │ │ ├── test_list.py │ │ ├── test_listcomps.py │ │ ├── test_lltrace.py │ │ ├── test_locale.py │ │ ├── test_logging.py │ │ ├── test_long.py │ │ ├── test_longexp.py │ │ ├── test_lzma.py │ │ ├── test_mailbox.py │ │ ├── test_mailcap.py │ │ ├── test_marshal.py │ │ ├── test_math.py │ │ ├── test_memoryio.py │ │ ├── test_memoryview.py │ │ ├── test_metaclass.py │ │ ├── test_mimetypes.py │ │ ├── test_minidom.py │ │ ├── test_mmap.py │ │ ├── test_module.py │ │ ├── test_modulefinder.py │ │ ├── test_msilib.py │ │ ├── test_multibytecodec.py │ │ ├── test_multiprocessing_fork.py │ │ ├── test_multiprocessing_forkserver.py │ │ ├── test_multiprocessing_main_handling.py │ │ ├── test_multiprocessing_spawn.py │ │ ├── test_named_expressions.py │ │ ├── test_netrc.py │ │ ├── test_nis.py │ │ ├── test_nntplib.py │ │ ├── test_ntpath.py │ │ ├── test_numeric_tower.py │ │ ├── test_opcache.py │ │ ├── test_opcodes.py │ │ ├── test_openpty.py │ │ ├── test_operator.py │ │ ├── test_optparse.py │ │ ├── test_ordered_dict.py │ │ ├── test_os.py │ │ ├── test_ossaudiodev.py │ │ ├── test_osx_env.py │ │ ├── test_pathlib.py │ │ ├── test_patma.py │ │ ├── test_pdb.py │ │ ├── test_peepholer.py │ │ ├── test_peg_generator │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── test_c_parser.py │ │ │ ├── test_first_sets.py │ │ │ ├── test_grammar_validator.py │ │ │ └── test_pegen.py │ │ ├── test_pickle.py │ │ ├── test_picklebuffer.py │ │ ├── test_pickletools.py │ │ ├── test_pipes.py │ │ ├── test_pkg.py │ │ ├── test_pkgutil.py │ │ ├── test_platform.py │ │ ├── test_plistlib.py │ │ ├── test_poll.py │ │ ├── test_popen.py │ │ ├── test_poplib.py │ │ ├── test_positional_only_arg.py │ │ ├── test_posix.py │ │ ├── test_posixpath.py │ │ ├── test_pow.py │ │ ├── test_pprint.py │ │ ├── test_print.py │ │ ├── test_profile.py │ │ ├── test_property.py │ │ ├── test_pstats.py │ │ ├── test_pty.py │ │ ├── test_pulldom.py │ │ ├── test_pwd.py │ │ ├── test_py_compile.py │ │ ├── test_pyclbr.py │ │ ├── test_pydoc.py │ │ ├── test_pyexpat.py │ │ ├── test_queue.py │ │ ├── test_quopri.py │ │ ├── test_raise.py │ │ ├── test_random.py │ │ ├── test_range.py │ │ ├── test_re.py │ │ ├── test_readline.py │ │ ├── test_regrtest.py │ │ ├── test_repl.py │ │ ├── test_reprlib.py │ │ ├── test_resource.py │ │ ├── test_richcmp.py │ │ ├── test_rlcompleter.py │ │ ├── test_robotparser.py │ │ ├── test_runpy.py │ │ ├── test_sax.py │ │ ├── test_sched.py │ │ ├── test_scope.py │ │ ├── test_script_helper.py │ │ ├── test_secrets.py │ │ ├── test_select.py │ │ ├── test_selectors.py │ │ ├── test_set.py │ │ ├── test_setcomps.py │ │ ├── test_shelve.py │ │ ├── test_shlex.py │ │ ├── test_shutil.py │ │ ├── test_signal.py │ │ ├── test_site.py │ │ ├── test_slice.py │ │ ├── test_smtpd.py │ │ ├── test_smtplib.py │ │ ├── test_smtpnet.py │ │ ├── test_sndhdr.py │ │ ├── test_socket.py │ │ ├── test_socketserver.py │ │ ├── test_sort.py │ │ ├── test_source_encoding.py │ │ ├── test_spwd.py │ │ ├── test_sqlite.py │ │ ├── test_ssl.py │ │ ├── test_startfile.py │ │ ├── test_stat.py │ │ ├── test_statistics.py │ │ ├── test_strftime.py │ │ ├── test_string.py │ │ ├── test_string_literals.py │ │ ├── test_stringprep.py │ │ ├── test_strptime.py │ │ ├── test_strtod.py │ │ ├── test_struct.py │ │ ├── test_structmembers.py │ │ ├── test_structseq.py │ │ ├── test_subclassinit.py │ │ ├── test_subprocess.py │ │ ├── test_sunau.py │ │ ├── test_sundry.py │ │ ├── test_super.py │ │ ├── test_support.py │ │ ├── test_symtable.py │ │ ├── test_syntax.py │ │ ├── test_sys.py │ │ ├── test_sys_setprofile.py │ │ ├── test_sys_settrace.py │ │ ├── test_sysconfig.py │ │ ├── test_syslog.py │ │ ├── test_tabnanny.py │ │ ├── test_tarfile.py │ │ ├── test_tcl.py │ │ ├── test_telnetlib.py │ │ ├── test_tempfile.py │ │ ├── test_textwrap.py │ │ ├── test_thread.py │ │ ├── test_threadedtempfile.py │ │ ├── test_threading.py │ │ ├── test_threading_local.py │ │ ├── test_threadsignals.py │ │ ├── test_time.py │ │ ├── test_timeit.py │ │ ├── test_timeout.py │ │ ├── test_tix.py │ │ ├── test_tk.py │ │ ├── test_tokenize.py │ │ ├── test_tools │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── test_fixcid.py │ │ │ ├── test_gprof2html.py │ │ │ ├── test_i18n.py │ │ │ ├── test_lll.py │ │ │ ├── test_md5sum.py │ │ │ ├── test_pathfix.py │ │ │ ├── test_pdeps.py │ │ │ ├── test_pindent.py │ │ │ ├── test_reindent.py │ │ │ └── test_sundry.py │ │ ├── test_trace.py │ │ ├── test_traceback.py │ │ ├── test_tracemalloc.py │ │ ├── test_ttk_guionly.py │ │ ├── test_ttk_textonly.py │ │ ├── test_tuple.py │ │ ├── test_turtle.py │ │ ├── test_type_annotations.py │ │ ├── test_type_comments.py │ │ ├── test_typechecks.py │ │ ├── test_types.py │ │ ├── test_typing.py │ │ ├── test_ucn.py │ │ ├── test_unary.py │ │ ├── test_unicode.py │ │ ├── test_unicode_file.py │ │ ├── test_unicode_file_functions.py │ │ ├── test_unicode_identifiers.py │ │ ├── test_unicodedata.py │ │ ├── test_unittest.py │ │ ├── test_univnewlines.py │ │ ├── test_unpack.py │ │ ├── test_unpack_ex.py │ │ ├── test_unparse.py │ │ ├── test_urllib.py │ │ ├── test_urllib2.py │ │ ├── test_urllib2_localnet.py │ │ ├── test_urllib2net.py │ │ ├── test_urllib_response.py │ │ ├── test_urllibnet.py │ │ ├── test_urlparse.py │ │ ├── test_userdict.py │ │ ├── test_userlist.py │ │ ├── test_userstring.py │ │ ├── test_utf8_mode.py │ │ ├── test_utf8source.py │ │ ├── test_uu.py │ │ ├── test_uuid.py │ │ ├── test_venv.py │ │ ├── test_wait3.py │ │ ├── test_wait4.py │ │ ├── test_warnings │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ └── data │ │ │ │ ├── import_warning.py │ │ │ │ └── stacklevel.py │ │ ├── test_wave.py │ │ ├── test_weakref.py │ │ ├── test_weakset.py │ │ ├── test_webbrowser.py │ │ ├── test_winconsoleio.py │ │ ├── test_winreg.py │ │ ├── test_winsound.py │ │ ├── test_with.py │ │ ├── test_wsgiref.py │ │ ├── test_xdrlib.py │ │ ├── test_xml_dom_minicompat.py │ │ ├── test_xml_etree.py │ │ ├── test_xml_etree_c.py │ │ ├── test_xmlrpc.py │ │ ├── test_xmlrpc_net.py │ │ ├── test_xxlimited.py │ │ ├── test_xxtestfuzz.py │ │ ├── test_yield_from.py │ │ ├── test_zipapp.py │ │ ├── test_zipfile.py │ │ ├── test_zipfile64.py │ │ ├── test_zipimport.py │ │ ├── test_zipimport_support.py │ │ ├── test_zlib.py │ │ ├── test_zoneinfo │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── _support.py │ │ │ ├── data │ │ │ │ ├── update_test_data.py │ │ │ │ └── zoneinfo_data.json │ │ │ └── test_zoneinfo.py │ │ ├── testcodec.py │ │ ├── testtar.tar │ │ ├── testtar.tar.xz │ │ ├── tf_inherit_check.py │ │ ├── time_hashlib.py │ │ ├── tokenize_tests-latin1-coding-cookie-and-utf8-bom-sig.txt │ │ ├── tokenize_tests-no-coding-cookie-and-utf8-bom-sig-only.txt │ │ ├── tokenize_tests-utf8-coding-cookie-and-no-utf8-bom-sig.txt │ │ ├── tokenize_tests-utf8-coding-cookie-and-utf8-bom-sig.txt │ │ ├── tokenize_tests.txt │ │ ├── tracedmodules │ │ │ ├── __init__.py │ │ │ └── testmod.py │ │ ├── win_console_handler.py │ │ ├── xmltestdata │ │ │ ├── c14n-20 │ │ │ │ ├── README │ │ │ │ ├── c14nComment.xml │ │ │ │ ├── c14nDefault.xml │ │ │ │ ├── c14nPrefix.xml │ │ │ │ ├── c14nPrefixQname.xml │ │ │ │ ├── c14nPrefixQnameXpathElem.xml │ │ │ │ ├── c14nQname.xml │ │ │ │ ├── c14nQnameElem.xml │ │ │ │ ├── c14nQnameXpathElem.xml │ │ │ │ ├── c14nTrim.xml │ │ │ │ ├── doc.dtd │ │ │ │ ├── doc.xsl │ │ │ │ ├── inC14N1.xml │ │ │ │ ├── inC14N2.xml │ │ │ │ ├── inC14N3.xml │ │ │ │ ├── inC14N4.xml │ │ │ │ ├── inC14N5.xml │ │ │ │ ├── inC14N6.xml │ │ │ │ ├── inNsContent.xml │ │ │ │ ├── inNsDefault.xml │ │ │ │ ├── inNsPushdown.xml │ │ │ │ ├── inNsRedecl.xml │ │ │ │ ├── inNsSort.xml │ │ │ │ ├── inNsSuperfluous.xml │ │ │ │ ├── inNsXml.xml │ │ │ │ ├── out_inC14N1_c14nComment.xml │ │ │ │ ├── out_inC14N1_c14nDefault.xml │ │ │ │ ├── out_inC14N2_c14nDefault.xml │ │ │ │ ├── out_inC14N2_c14nTrim.xml │ │ │ │ ├── out_inC14N3_c14nDefault.xml │ │ │ │ ├── out_inC14N3_c14nPrefix.xml │ │ │ │ ├── out_inC14N3_c14nTrim.xml │ │ │ │ ├── out_inC14N4_c14nDefault.xml │ │ │ │ ├── out_inC14N4_c14nTrim.xml │ │ │ │ ├── out_inC14N5_c14nDefault.xml │ │ │ │ ├── out_inC14N5_c14nTrim.xml │ │ │ │ ├── out_inC14N6_c14nDefault.xml │ │ │ │ ├── out_inNsContent_c14nDefault.xml │ │ │ │ ├── out_inNsContent_c14nPrefixQnameXpathElem.xml │ │ │ │ ├── out_inNsContent_c14nQnameElem.xml │ │ │ │ ├── out_inNsContent_c14nQnameXpathElem.xml │ │ │ │ ├── out_inNsDefault_c14nDefault.xml │ │ │ │ ├── out_inNsDefault_c14nPrefix.xml │ │ │ │ ├── out_inNsPushdown_c14nDefault.xml │ │ │ │ ├── out_inNsPushdown_c14nPrefix.xml │ │ │ │ ├── out_inNsRedecl_c14nDefault.xml │ │ │ │ ├── out_inNsRedecl_c14nPrefix.xml │ │ │ │ ├── out_inNsSort_c14nDefault.xml │ │ │ │ ├── out_inNsSort_c14nPrefix.xml │ │ │ │ ├── out_inNsSuperfluous_c14nDefault.xml │ │ │ │ ├── out_inNsSuperfluous_c14nPrefix.xml │ │ │ │ ├── out_inNsXml_c14nDefault.xml │ │ │ │ ├── out_inNsXml_c14nPrefix.xml │ │ │ │ ├── out_inNsXml_c14nPrefixQname.xml │ │ │ │ ├── out_inNsXml_c14nQname.xml │ │ │ │ └── world.txt │ │ │ ├── expat224_utf8_bug.xml │ │ │ ├── simple-ns.xml │ │ │ ├── simple.xml │ │ │ ├── test.xml │ │ │ └── test.xml.out │ │ ├── xmltests.py │ │ ├── zip_cp437_header.zip │ │ ├── zipdir.zip │ │ └── ziptestdata │ │ │ ├── README.md │ │ │ ├── exe_with_z64 │ │ │ ├── exe_with_zip │ │ │ ├── header.sh │ │ │ └── testdata_module_inside_zip.py │ │ ├── textwrap.py │ │ ├── this.py │ │ ├── threading.py │ │ ├── timeit.py │ │ ├── tkinter │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── colorchooser.py │ │ ├── commondialog.py │ │ ├── constants.py │ │ ├── dialog.py │ │ ├── dnd.py │ │ ├── filedialog.py │ │ ├── font.py │ │ ├── messagebox.py │ │ ├── scrolledtext.py │ │ ├── simpledialog.py │ │ ├── test │ │ │ ├── README │ │ │ ├── __init__.py │ │ │ ├── support.py │ │ │ ├── test_tkinter │ │ │ │ ├── __init__.py │ │ │ │ ├── test_colorchooser.py │ │ │ │ ├── test_font.py │ │ │ │ ├── test_geometry_managers.py │ │ │ │ ├── test_images.py │ │ │ │ ├── test_loadtk.py │ │ │ │ ├── test_messagebox.py │ │ │ │ ├── test_misc.py │ │ │ │ ├── test_simpledialog.py │ │ │ │ ├── test_text.py │ │ │ │ ├── test_variables.py │ │ │ │ └── test_widgets.py │ │ │ ├── test_ttk │ │ │ │ ├── __init__.py │ │ │ │ ├── test_extensions.py │ │ │ │ ├── test_style.py │ │ │ │ └── test_widgets.py │ │ │ └── widget_tests.py │ │ ├── tix.py │ │ └── ttk.py │ │ ├── token.py │ │ ├── tokenize.py │ │ ├── trace.py │ │ ├── traceback.py │ │ ├── tracemalloc.py │ │ ├── tty.py │ │ ├── turtle.py │ │ ├── turtledemo │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── bytedesign.py │ │ ├── chaos.py │ │ ├── clock.py │ │ ├── colormixer.py │ │ ├── forest.py │ │ ├── fractalcurves.py │ │ ├── lindenmayer.py │ │ ├── minimal_hanoi.py │ │ ├── nim.py │ │ ├── paint.py │ │ ├── peace.py │ │ ├── penrose.py │ │ ├── planet_and_moon.py │ │ ├── rosette.py │ │ ├── round_dance.py │ │ ├── sorting_animate.py │ │ ├── tree.py │ │ ├── turtle.cfg │ │ ├── two_canvases.py │ │ └── yinyang.py │ │ ├── types.py │ │ ├── typing.py │ │ ├── unittest │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── case.cpython-310.pyc │ │ │ ├── loader.cpython-310.pyc │ │ │ ├── main.cpython-310.pyc │ │ │ ├── mock.cpython-310.pyc │ │ │ ├── result.cpython-310.pyc │ │ │ ├── runner.cpython-310.pyc │ │ │ ├── signals.cpython-310.pyc │ │ │ ├── suite.cpython-310.pyc │ │ │ └── util.cpython-310.pyc │ │ ├── _log.py │ │ ├── async_case.py │ │ ├── case.py │ │ ├── loader.py │ │ ├── main.py │ │ ├── mock.py │ │ ├── result.py │ │ ├── runner.py │ │ ├── signals.py │ │ ├── suite.py │ │ ├── test │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── _test_warnings.py │ │ │ ├── dummy.py │ │ │ ├── support.py │ │ │ ├── test_assertions.py │ │ │ ├── test_async_case.py │ │ │ ├── test_break.py │ │ │ ├── test_case.py │ │ │ ├── test_discovery.py │ │ │ ├── test_functiontestcase.py │ │ │ ├── test_loader.py │ │ │ ├── test_program.py │ │ │ ├── test_result.py │ │ │ ├── test_runner.py │ │ │ ├── test_setups.py │ │ │ ├── test_skipping.py │ │ │ ├── test_suite.py │ │ │ └── testmock │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── support.py │ │ │ │ ├── testasync.py │ │ │ │ ├── testcallable.py │ │ │ │ ├── testhelpers.py │ │ │ │ ├── testmagicmethods.py │ │ │ │ ├── testmock.py │ │ │ │ ├── testpatch.py │ │ │ │ ├── testsealable.py │ │ │ │ ├── testsentinel.py │ │ │ │ └── testwith.py │ │ └── util.py │ │ ├── urllib │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── error.cpython-310.pyc │ │ │ ├── parse.cpython-310.pyc │ │ │ ├── request.cpython-310.pyc │ │ │ └── response.cpython-310.pyc │ │ ├── error.py │ │ ├── parse.py │ │ ├── request.py │ │ ├── response.py │ │ └── robotparser.py │ │ ├── uu.py │ │ ├── uuid.py │ │ ├── venv │ │ ├── __init__.py │ │ ├── __main__.py │ │ └── scripts │ │ │ ├── common │ │ │ ├── Activate.ps1 │ │ │ └── activate │ │ │ ├── nt │ │ │ ├── activate.bat │ │ │ ├── deactivate.bat │ │ │ ├── python.exe │ │ │ └── pythonw.exe │ │ │ └── posix │ │ │ ├── activate.csh │ │ │ └── activate.fish │ │ ├── warnings.py │ │ ├── wave.py │ │ ├── weakref.py │ │ ├── webbrowser.py │ │ ├── wsgiref │ │ ├── __init__.py │ │ ├── handlers.py │ │ ├── headers.py │ │ ├── simple_server.py │ │ ├── util.py │ │ └── validate.py │ │ ├── xdrlib.py │ │ ├── xml │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-310.pyc │ │ ├── dom │ │ │ ├── NodeFilter.py │ │ │ ├── __init__.py │ │ │ ├── domreg.py │ │ │ ├── expatbuilder.py │ │ │ ├── minicompat.py │ │ │ ├── minidom.py │ │ │ ├── pulldom.py │ │ │ └── xmlbuilder.py │ │ ├── etree │ │ │ ├── ElementInclude.py │ │ │ ├── ElementPath.py │ │ │ ├── ElementTree.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── ElementPath.cpython-310.pyc │ │ │ │ ├── ElementTree.cpython-310.pyc │ │ │ │ └── __init__.cpython-310.pyc │ │ │ └── cElementTree.py │ │ ├── parsers │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ └── expat.cpython-310.pyc │ │ │ └── expat.py │ │ └── sax │ │ │ ├── __init__.py │ │ │ ├── _exceptions.py │ │ │ ├── expatreader.py │ │ │ ├── handler.py │ │ │ ├── saxutils.py │ │ │ └── xmlreader.py │ │ ├── xmlrpc │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── client.cpython-310.pyc │ │ │ └── server.cpython-310.pyc │ │ ├── client.py │ │ └── server.py │ │ ├── zipapp.py │ │ ├── zipfile.py │ │ ├── zipimport.py │ │ └── zoneinfo │ │ ├── __init__.py │ │ ├── _common.py │ │ ├── _tzpath.py │ │ └── _zoneinfo.py ├── script │ └── wordOperate.py └── title.png ├── doc ├── Json_Format.md └── test.json ├── examples ├── MainWidget.cpp ├── MainWidget.h ├── WordItemData.cpp ├── WordItemData.h ├── examples.pro └── main.cpp ├── images ├── build_setting.png ├── logo.png ├── mainWidget.png ├── myCode.png ├── python-install-docx.png ├── qrcode_for_devstone.png ├── word_result.png └── word_result2.png └── src ├── KPYSDK.cpp ├── KPYSDK.h ├── KPYSDK_global.h └── src.pro /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/.gitignore -------------------------------------------------------------------------------- /3rdparty/Python310/include/Python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/Python.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/abstract.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/ceval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/ceval.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/code.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/codecs.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/compile.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/context.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/datetime.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/errcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/errcode.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/eval.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/exports.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/fileutils.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/genobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/genobject.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/import.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/intrcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/intrcheck.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/marshal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/marshal.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/object.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/objimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/objimpl.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/opcode.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/osdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/osdefs.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/osmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/osmodule.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/py_curses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/py_curses.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/pycapsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/pycapsule.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/pyconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/pyconfig.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/pydtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/pydtrace.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/pyerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/pyerrors.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/pyexpat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/pyexpat.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/pyframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/pyframe.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/pyhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/pyhash.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/pymacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/pymacro.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/pymath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/pymath.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/pymem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/pymem.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/pyport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/pyport.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/pystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/pystate.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/pystrcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/pystrcmp.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/pystrhex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/pystrhex.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/pystrtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/pystrtod.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/pythonrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/pythonrun.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/pythread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/pythread.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/setobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/setobject.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/structseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/structseq.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/sysmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/sysmodule.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/token.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/traceback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/traceback.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/typeslots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/typeslots.h -------------------------------------------------------------------------------- /3rdparty/Python310/include/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/include/warnings.h -------------------------------------------------------------------------------- /3rdparty/Python310/libs/_tkinter.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/libs/_tkinter.lib -------------------------------------------------------------------------------- /3rdparty/Python310/libs/python3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/libs/python3.lib -------------------------------------------------------------------------------- /3rdparty/Python310/libs/python310.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/3rdparty/Python310/libs/python310.lib -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/LICENSE -------------------------------------------------------------------------------- /QtPythonDocx.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/QtPythonDocx.pri -------------------------------------------------------------------------------- /QtPythonDocx.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/QtPythonDocx.pro -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/README.md -------------------------------------------------------------------------------- /bin/QtPythonDocx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/QtPythonDocx.exe -------------------------------------------------------------------------------- /bin/python3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python3.dll -------------------------------------------------------------------------------- /bin/python310.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310.dll -------------------------------------------------------------------------------- /bin/python310/DLLs/_asyncio.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/_asyncio.pyd -------------------------------------------------------------------------------- /bin/python310/DLLs/_bz2.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/_bz2.pyd -------------------------------------------------------------------------------- /bin/python310/DLLs/_ctypes.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/_ctypes.pyd -------------------------------------------------------------------------------- /bin/python310/DLLs/_ctypes_test.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/_ctypes_test.pyd -------------------------------------------------------------------------------- /bin/python310/DLLs/_decimal.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/_decimal.pyd -------------------------------------------------------------------------------- /bin/python310/DLLs/_elementtree.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/_elementtree.pyd -------------------------------------------------------------------------------- /bin/python310/DLLs/_hashlib.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/_hashlib.pyd -------------------------------------------------------------------------------- /bin/python310/DLLs/_lzma.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/_lzma.pyd -------------------------------------------------------------------------------- /bin/python310/DLLs/_msi.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/_msi.pyd -------------------------------------------------------------------------------- /bin/python310/DLLs/_overlapped.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/_overlapped.pyd -------------------------------------------------------------------------------- /bin/python310/DLLs/_queue.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/_queue.pyd -------------------------------------------------------------------------------- /bin/python310/DLLs/_socket.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/_socket.pyd -------------------------------------------------------------------------------- /bin/python310/DLLs/_sqlite3.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/_sqlite3.pyd -------------------------------------------------------------------------------- /bin/python310/DLLs/_ssl.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/_ssl.pyd -------------------------------------------------------------------------------- /bin/python310/DLLs/_testbuffer.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/_testbuffer.pyd -------------------------------------------------------------------------------- /bin/python310/DLLs/_testcapi.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/_testcapi.pyd -------------------------------------------------------------------------------- /bin/python310/DLLs/_testconsole.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/_testconsole.pyd -------------------------------------------------------------------------------- /bin/python310/DLLs/_testmultiphase.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/_testmultiphase.pyd -------------------------------------------------------------------------------- /bin/python310/DLLs/_tkinter.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/_tkinter.pyd -------------------------------------------------------------------------------- /bin/python310/DLLs/_uuid.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/_uuid.pyd -------------------------------------------------------------------------------- /bin/python310/DLLs/_zoneinfo.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/_zoneinfo.pyd -------------------------------------------------------------------------------- /bin/python310/DLLs/libcrypto-1_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/libcrypto-1_1.dll -------------------------------------------------------------------------------- /bin/python310/DLLs/libffi-7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/libffi-7.dll -------------------------------------------------------------------------------- /bin/python310/DLLs/libssl-1_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/libssl-1_1.dll -------------------------------------------------------------------------------- /bin/python310/DLLs/py.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/py.ico -------------------------------------------------------------------------------- /bin/python310/DLLs/pyc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/pyc.ico -------------------------------------------------------------------------------- /bin/python310/DLLs/pyd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/pyd.ico -------------------------------------------------------------------------------- /bin/python310/DLLs/pyexpat.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/pyexpat.pyd -------------------------------------------------------------------------------- /bin/python310/DLLs/python_lib.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/python_lib.cat -------------------------------------------------------------------------------- /bin/python310/DLLs/python_tools.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/python_tools.cat -------------------------------------------------------------------------------- /bin/python310/DLLs/select.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/select.pyd -------------------------------------------------------------------------------- /bin/python310/DLLs/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/sqlite3.dll -------------------------------------------------------------------------------- /bin/python310/DLLs/tcl86t.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/tcl86t.dll -------------------------------------------------------------------------------- /bin/python310/DLLs/tk86t.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/tk86t.dll -------------------------------------------------------------------------------- /bin/python310/DLLs/unicodedata.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/unicodedata.pyd -------------------------------------------------------------------------------- /bin/python310/DLLs/winsound.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/DLLs/winsound.pyd -------------------------------------------------------------------------------- /bin/python310/Lib/__future__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/__future__.py -------------------------------------------------------------------------------- /bin/python310/Lib/__phello__.foo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/__phello__.foo.py -------------------------------------------------------------------------------- /bin/python310/Lib/_aix_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/_aix_support.py -------------------------------------------------------------------------------- /bin/python310/Lib/_bootsubprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/_bootsubprocess.py -------------------------------------------------------------------------------- /bin/python310/Lib/_collections_abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/_collections_abc.py -------------------------------------------------------------------------------- /bin/python310/Lib/_compat_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/_compat_pickle.py -------------------------------------------------------------------------------- /bin/python310/Lib/_compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/_compression.py -------------------------------------------------------------------------------- /bin/python310/Lib/_markupbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/_markupbase.py -------------------------------------------------------------------------------- /bin/python310/Lib/_osx_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/_osx_support.py -------------------------------------------------------------------------------- /bin/python310/Lib/_py_abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/_py_abc.py -------------------------------------------------------------------------------- /bin/python310/Lib/_pydecimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/_pydecimal.py -------------------------------------------------------------------------------- /bin/python310/Lib/_pyio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/_pyio.py -------------------------------------------------------------------------------- /bin/python310/Lib/_sitebuiltins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/_sitebuiltins.py -------------------------------------------------------------------------------- /bin/python310/Lib/_strptime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/_strptime.py -------------------------------------------------------------------------------- /bin/python310/Lib/_threading_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/_threading_local.py -------------------------------------------------------------------------------- /bin/python310/Lib/_weakrefset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/_weakrefset.py -------------------------------------------------------------------------------- /bin/python310/Lib/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/abc.py -------------------------------------------------------------------------------- /bin/python310/Lib/aifc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/aifc.py -------------------------------------------------------------------------------- /bin/python310/Lib/antigravity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/antigravity.py -------------------------------------------------------------------------------- /bin/python310/Lib/argparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/argparse.py -------------------------------------------------------------------------------- /bin/python310/Lib/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/ast.py -------------------------------------------------------------------------------- /bin/python310/Lib/asynchat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/asynchat.py -------------------------------------------------------------------------------- /bin/python310/Lib/asyncio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/asyncio/__init__.py -------------------------------------------------------------------------------- /bin/python310/Lib/asyncio/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/asyncio/__main__.py -------------------------------------------------------------------------------- /bin/python310/Lib/asyncio/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/asyncio/constants.py -------------------------------------------------------------------------------- /bin/python310/Lib/asyncio/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/asyncio/events.py -------------------------------------------------------------------------------- /bin/python310/Lib/asyncio/futures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/asyncio/futures.py -------------------------------------------------------------------------------- /bin/python310/Lib/asyncio/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/asyncio/locks.py -------------------------------------------------------------------------------- /bin/python310/Lib/asyncio/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/asyncio/log.py -------------------------------------------------------------------------------- /bin/python310/Lib/asyncio/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/asyncio/mixins.py -------------------------------------------------------------------------------- /bin/python310/Lib/asyncio/protocols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/asyncio/protocols.py -------------------------------------------------------------------------------- /bin/python310/Lib/asyncio/queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/asyncio/queues.py -------------------------------------------------------------------------------- /bin/python310/Lib/asyncio/runners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/asyncio/runners.py -------------------------------------------------------------------------------- /bin/python310/Lib/asyncio/sslproto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/asyncio/sslproto.py -------------------------------------------------------------------------------- /bin/python310/Lib/asyncio/staggered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/asyncio/staggered.py -------------------------------------------------------------------------------- /bin/python310/Lib/asyncio/streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/asyncio/streams.py -------------------------------------------------------------------------------- /bin/python310/Lib/asyncio/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/asyncio/tasks.py -------------------------------------------------------------------------------- /bin/python310/Lib/asyncio/threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/asyncio/threads.py -------------------------------------------------------------------------------- /bin/python310/Lib/asyncio/trsock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/asyncio/trsock.py -------------------------------------------------------------------------------- /bin/python310/Lib/asyncore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/asyncore.py -------------------------------------------------------------------------------- /bin/python310/Lib/base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/base64.py -------------------------------------------------------------------------------- /bin/python310/Lib/bdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/bdb.py -------------------------------------------------------------------------------- /bin/python310/Lib/binhex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/binhex.py -------------------------------------------------------------------------------- /bin/python310/Lib/bisect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/bisect.py -------------------------------------------------------------------------------- /bin/python310/Lib/bz2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/bz2.py -------------------------------------------------------------------------------- /bin/python310/Lib/cProfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/cProfile.py -------------------------------------------------------------------------------- /bin/python310/Lib/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/calendar.py -------------------------------------------------------------------------------- /bin/python310/Lib/cgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/cgi.py -------------------------------------------------------------------------------- /bin/python310/Lib/cgitb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/cgitb.py -------------------------------------------------------------------------------- /bin/python310/Lib/chunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/chunk.py -------------------------------------------------------------------------------- /bin/python310/Lib/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/cmd.py -------------------------------------------------------------------------------- /bin/python310/Lib/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/code.py -------------------------------------------------------------------------------- /bin/python310/Lib/codecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/codecs.py -------------------------------------------------------------------------------- /bin/python310/Lib/codeop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/codeop.py -------------------------------------------------------------------------------- /bin/python310/Lib/collections/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/collections/abc.py -------------------------------------------------------------------------------- /bin/python310/Lib/colorsys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/colorsys.py -------------------------------------------------------------------------------- /bin/python310/Lib/compileall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/compileall.py -------------------------------------------------------------------------------- /bin/python310/Lib/concurrent/__init__.py: -------------------------------------------------------------------------------- 1 | # This directory is a Python package. 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/configparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/configparser.py -------------------------------------------------------------------------------- /bin/python310/Lib/contextlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/contextlib.py -------------------------------------------------------------------------------- /bin/python310/Lib/contextvars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/contextvars.py -------------------------------------------------------------------------------- /bin/python310/Lib/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/copy.py -------------------------------------------------------------------------------- /bin/python310/Lib/copyreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/copyreg.py -------------------------------------------------------------------------------- /bin/python310/Lib/crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/crypt.py -------------------------------------------------------------------------------- /bin/python310/Lib/csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/csv.py -------------------------------------------------------------------------------- /bin/python310/Lib/ctypes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/ctypes/__init__.py -------------------------------------------------------------------------------- /bin/python310/Lib/ctypes/_aix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/ctypes/_aix.py -------------------------------------------------------------------------------- /bin/python310/Lib/ctypes/_endian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/ctypes/_endian.py -------------------------------------------------------------------------------- /bin/python310/Lib/ctypes/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/ctypes/util.py -------------------------------------------------------------------------------- /bin/python310/Lib/ctypes/wintypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/ctypes/wintypes.py -------------------------------------------------------------------------------- /bin/python310/Lib/curses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/curses/__init__.py -------------------------------------------------------------------------------- /bin/python310/Lib/curses/ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/curses/ascii.py -------------------------------------------------------------------------------- /bin/python310/Lib/curses/has_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/curses/has_key.py -------------------------------------------------------------------------------- /bin/python310/Lib/curses/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/curses/panel.py -------------------------------------------------------------------------------- /bin/python310/Lib/curses/textpad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/curses/textpad.py -------------------------------------------------------------------------------- /bin/python310/Lib/dataclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/dataclasses.py -------------------------------------------------------------------------------- /bin/python310/Lib/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/datetime.py -------------------------------------------------------------------------------- /bin/python310/Lib/dbm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/dbm/__init__.py -------------------------------------------------------------------------------- /bin/python310/Lib/dbm/dumb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/dbm/dumb.py -------------------------------------------------------------------------------- /bin/python310/Lib/dbm/gnu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/dbm/gnu.py -------------------------------------------------------------------------------- /bin/python310/Lib/dbm/ndbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/dbm/ndbm.py -------------------------------------------------------------------------------- /bin/python310/Lib/decimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/decimal.py -------------------------------------------------------------------------------- /bin/python310/Lib/difflib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/difflib.py -------------------------------------------------------------------------------- /bin/python310/Lib/dis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/dis.py -------------------------------------------------------------------------------- /bin/python310/Lib/distutils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/distutils/README -------------------------------------------------------------------------------- /bin/python310/Lib/distutils/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/distutils/cmd.py -------------------------------------------------------------------------------- /bin/python310/Lib/distutils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/distutils/config.py -------------------------------------------------------------------------------- /bin/python310/Lib/distutils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/distutils/core.py -------------------------------------------------------------------------------- /bin/python310/Lib/distutils/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/distutils/debug.py -------------------------------------------------------------------------------- /bin/python310/Lib/distutils/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/distutils/dist.py -------------------------------------------------------------------------------- /bin/python310/Lib/distutils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/distutils/errors.py -------------------------------------------------------------------------------- /bin/python310/Lib/distutils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/distutils/log.py -------------------------------------------------------------------------------- /bin/python310/Lib/distutils/spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/distutils/spawn.py -------------------------------------------------------------------------------- /bin/python310/Lib/distutils/tests/includetest.rst: -------------------------------------------------------------------------------- 1 | This should be included. 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/distutils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/distutils/util.py -------------------------------------------------------------------------------- /bin/python310/Lib/distutils/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/distutils/version.py -------------------------------------------------------------------------------- /bin/python310/Lib/doctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/doctest.py -------------------------------------------------------------------------------- /bin/python310/Lib/email/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/email/__init__.py -------------------------------------------------------------------------------- /bin/python310/Lib/email/_parseaddr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/email/_parseaddr.py -------------------------------------------------------------------------------- /bin/python310/Lib/email/_policybase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/email/_policybase.py -------------------------------------------------------------------------------- /bin/python310/Lib/email/base64mime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/email/base64mime.py -------------------------------------------------------------------------------- /bin/python310/Lib/email/charset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/email/charset.py -------------------------------------------------------------------------------- /bin/python310/Lib/email/encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/email/encoders.py -------------------------------------------------------------------------------- /bin/python310/Lib/email/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/email/errors.py -------------------------------------------------------------------------------- /bin/python310/Lib/email/feedparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/email/feedparser.py -------------------------------------------------------------------------------- /bin/python310/Lib/email/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/email/generator.py -------------------------------------------------------------------------------- /bin/python310/Lib/email/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/email/header.py -------------------------------------------------------------------------------- /bin/python310/Lib/email/iterators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/email/iterators.py -------------------------------------------------------------------------------- /bin/python310/Lib/email/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/email/message.py -------------------------------------------------------------------------------- /bin/python310/Lib/email/mime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/email/mime/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/email/mime/audio.py -------------------------------------------------------------------------------- /bin/python310/Lib/email/mime/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/email/mime/base.py -------------------------------------------------------------------------------- /bin/python310/Lib/email/mime/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/email/mime/image.py -------------------------------------------------------------------------------- /bin/python310/Lib/email/mime/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/email/mime/text.py -------------------------------------------------------------------------------- /bin/python310/Lib/email/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/email/parser.py -------------------------------------------------------------------------------- /bin/python310/Lib/email/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/email/policy.py -------------------------------------------------------------------------------- /bin/python310/Lib/email/quoprimime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/email/quoprimime.py -------------------------------------------------------------------------------- /bin/python310/Lib/email/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/email/utils.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/aliases.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/ascii.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/big5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/big5.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/charmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/charmap.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp037.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp037.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp1006.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp1006.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp1026.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp1026.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp1125.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp1125.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp1140.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp1140.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp1250.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp1250.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp1251.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp1251.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp1252.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp1252.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp1253.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp1253.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp1254.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp1254.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp1255.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp1255.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp1256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp1256.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp1257.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp1257.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp1258.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp1258.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp273.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp273.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp424.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp424.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp437.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp437.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp500.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp500.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp720.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp720.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp737.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp737.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp775.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp775.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp850.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp850.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp852.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp852.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp855.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp855.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp856.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp856.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp857.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp857.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp858.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp858.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp860.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp860.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp861.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp861.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp862.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp862.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp863.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp863.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp864.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp864.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp865.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp865.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp866.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp866.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp869.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp869.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp874.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp874.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp875.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp875.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp932.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp932.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp949.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp949.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/cp950.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/cp950.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/euc_jp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/euc_jp.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/euc_kr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/euc_kr.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/gb18030.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/gb18030.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/gb2312.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/gb2312.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/gbk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/gbk.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/hz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/hz.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/idna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/idna.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/johab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/johab.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/koi8_r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/koi8_r.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/koi8_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/koi8_t.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/koi8_u.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/koi8_u.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/kz1048.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/kz1048.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/latin_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/latin_1.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/mbcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/mbcs.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/oem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/oem.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/palmos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/palmos.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/ptcp154.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/ptcp154.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/rot_13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/rot_13.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/tis_620.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/tis_620.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/utf_16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/utf_16.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/utf_32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/utf_32.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/utf_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/utf_7.py -------------------------------------------------------------------------------- /bin/python310/Lib/encodings/utf_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/encodings/utf_8.py -------------------------------------------------------------------------------- /bin/python310/Lib/ensurepip/_bundled/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/enum.py -------------------------------------------------------------------------------- /bin/python310/Lib/filecmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/filecmp.py -------------------------------------------------------------------------------- /bin/python310/Lib/fileinput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/fileinput.py -------------------------------------------------------------------------------- /bin/python310/Lib/fnmatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/fnmatch.py -------------------------------------------------------------------------------- /bin/python310/Lib/fractions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/fractions.py -------------------------------------------------------------------------------- /bin/python310/Lib/ftplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/ftplib.py -------------------------------------------------------------------------------- /bin/python310/Lib/functools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/functools.py -------------------------------------------------------------------------------- /bin/python310/Lib/genericpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/genericpath.py -------------------------------------------------------------------------------- /bin/python310/Lib/getopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/getopt.py -------------------------------------------------------------------------------- /bin/python310/Lib/getpass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/getpass.py -------------------------------------------------------------------------------- /bin/python310/Lib/gettext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/gettext.py -------------------------------------------------------------------------------- /bin/python310/Lib/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/glob.py -------------------------------------------------------------------------------- /bin/python310/Lib/graphlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/graphlib.py -------------------------------------------------------------------------------- /bin/python310/Lib/gzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/gzip.py -------------------------------------------------------------------------------- /bin/python310/Lib/hashlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/hashlib.py -------------------------------------------------------------------------------- /bin/python310/Lib/heapq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/heapq.py -------------------------------------------------------------------------------- /bin/python310/Lib/hmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/hmac.py -------------------------------------------------------------------------------- /bin/python310/Lib/html/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/html/__init__.py -------------------------------------------------------------------------------- /bin/python310/Lib/html/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/html/entities.py -------------------------------------------------------------------------------- /bin/python310/Lib/html/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/html/parser.py -------------------------------------------------------------------------------- /bin/python310/Lib/http/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/http/__init__.py -------------------------------------------------------------------------------- /bin/python310/Lib/http/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/http/client.py -------------------------------------------------------------------------------- /bin/python310/Lib/http/cookiejar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/http/cookiejar.py -------------------------------------------------------------------------------- /bin/python310/Lib/http/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/http/cookies.py -------------------------------------------------------------------------------- /bin/python310/Lib/http/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/http/server.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/CREDITS.txt -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/ChangeLog -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/HISTORY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/HISTORY.txt -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/Icons/tk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/Icons/tk.gif -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/NEWS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/NEWS.txt -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/NEWS2x.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/NEWS2x.txt -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/README.txt -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/TODO.txt -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/__init__.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/__main__.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/browser.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/calltip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/calltip.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/calltip_w.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/calltip_w.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/colorizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/colorizer.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/config.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/debugger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/debugger.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/debugobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/debugobj.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/delegator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/delegator.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/dynoption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/dynoption.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/editor.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/extend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/extend.txt -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/filelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/filelist.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/format.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/grep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/grep.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/help.html -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/help.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/history.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/idle.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/idle.bat -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/idle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/idle.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/idle.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/idle.pyw -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/idle_test/example_noext: -------------------------------------------------------------------------------- 1 | #!usr/bin/env python 2 | 3 | def example_function(some_argument): 4 | pass 5 | -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/iomenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/iomenu.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/macosx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/macosx.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/mainmenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/mainmenu.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/multicall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/multicall.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/outwin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/outwin.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/pyparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/pyparse.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/pyshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/pyshell.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/query.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/replace.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/rpc.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/run.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/runscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/runscript.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/search.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/sidebar.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/squeezer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/squeezer.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/statusbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/statusbar.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/textview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/textview.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/tooltip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/tooltip.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/tree.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/undo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/undo.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/util.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/window.py -------------------------------------------------------------------------------- /bin/python310/Lib/idlelib/zzdummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/idlelib/zzdummy.py -------------------------------------------------------------------------------- /bin/python310/Lib/imaplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/imaplib.py -------------------------------------------------------------------------------- /bin/python310/Lib/imghdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/imghdr.py -------------------------------------------------------------------------------- /bin/python310/Lib/imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/imp.py -------------------------------------------------------------------------------- /bin/python310/Lib/importlib/_abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/importlib/_abc.py -------------------------------------------------------------------------------- /bin/python310/Lib/importlib/_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/importlib/_common.py -------------------------------------------------------------------------------- /bin/python310/Lib/importlib/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/importlib/abc.py -------------------------------------------------------------------------------- /bin/python310/Lib/importlib/readers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/importlib/readers.py -------------------------------------------------------------------------------- /bin/python310/Lib/importlib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/importlib/util.py -------------------------------------------------------------------------------- /bin/python310/Lib/inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/inspect.py -------------------------------------------------------------------------------- /bin/python310/Lib/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/io.py -------------------------------------------------------------------------------- /bin/python310/Lib/ipaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/ipaddress.py -------------------------------------------------------------------------------- /bin/python310/Lib/json/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/json/__init__.py -------------------------------------------------------------------------------- /bin/python310/Lib/json/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/json/decoder.py -------------------------------------------------------------------------------- /bin/python310/Lib/json/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/json/encoder.py -------------------------------------------------------------------------------- /bin/python310/Lib/json/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/json/scanner.py -------------------------------------------------------------------------------- /bin/python310/Lib/json/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/json/tool.py -------------------------------------------------------------------------------- /bin/python310/Lib/keyword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/keyword.py -------------------------------------------------------------------------------- /bin/python310/Lib/lib2to3/Grammar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/lib2to3/Grammar.txt -------------------------------------------------------------------------------- /bin/python310/Lib/lib2to3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/lib2to3/__init__.py -------------------------------------------------------------------------------- /bin/python310/Lib/lib2to3/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/lib2to3/__main__.py -------------------------------------------------------------------------------- /bin/python310/Lib/lib2to3/btm_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/lib2to3/btm_utils.py -------------------------------------------------------------------------------- /bin/python310/Lib/lib2to3/fixes/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/lib2to3/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/lib2to3/main.py -------------------------------------------------------------------------------- /bin/python310/Lib/lib2to3/patcomp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/lib2to3/patcomp.py -------------------------------------------------------------------------------- /bin/python310/Lib/lib2to3/pygram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/lib2to3/pygram.py -------------------------------------------------------------------------------- /bin/python310/Lib/lib2to3/pytree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/lib2to3/pytree.py -------------------------------------------------------------------------------- /bin/python310/Lib/lib2to3/refactor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/lib2to3/refactor.py -------------------------------------------------------------------------------- /bin/python310/Lib/lib2to3/tests/data/bom.py: -------------------------------------------------------------------------------- 1 | # coding: utf-8 2 | print "BOM BOOM!" 3 | -------------------------------------------------------------------------------- /bin/python310/Lib/lib2to3/tests/data/false_encoding.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | print '#coding=0' 3 | -------------------------------------------------------------------------------- /bin/python310/Lib/lib2to3/tests/data/fixers/myfixes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/lib2to3/tests/data/fixers/parrot_example.py: -------------------------------------------------------------------------------- 1 | def parrot(): 2 | pass 3 | -------------------------------------------------------------------------------- /bin/python310/Lib/linecache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/linecache.py -------------------------------------------------------------------------------- /bin/python310/Lib/locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/locale.py -------------------------------------------------------------------------------- /bin/python310/Lib/logging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/logging/__init__.py -------------------------------------------------------------------------------- /bin/python310/Lib/logging/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/logging/config.py -------------------------------------------------------------------------------- /bin/python310/Lib/logging/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/logging/handlers.py -------------------------------------------------------------------------------- /bin/python310/Lib/lzma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/lzma.py -------------------------------------------------------------------------------- /bin/python310/Lib/mailbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/mailbox.py -------------------------------------------------------------------------------- /bin/python310/Lib/mailcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/mailcap.py -------------------------------------------------------------------------------- /bin/python310/Lib/mimetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/mimetypes.py -------------------------------------------------------------------------------- /bin/python310/Lib/modulefinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/modulefinder.py -------------------------------------------------------------------------------- /bin/python310/Lib/msilib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/msilib/__init__.py -------------------------------------------------------------------------------- /bin/python310/Lib/msilib/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/msilib/schema.py -------------------------------------------------------------------------------- /bin/python310/Lib/msilib/sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/msilib/sequence.py -------------------------------------------------------------------------------- /bin/python310/Lib/msilib/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/msilib/text.py -------------------------------------------------------------------------------- /bin/python310/Lib/netrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/netrc.py -------------------------------------------------------------------------------- /bin/python310/Lib/nntplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/nntplib.py -------------------------------------------------------------------------------- /bin/python310/Lib/ntpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/ntpath.py -------------------------------------------------------------------------------- /bin/python310/Lib/nturl2path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/nturl2path.py -------------------------------------------------------------------------------- /bin/python310/Lib/numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/numbers.py -------------------------------------------------------------------------------- /bin/python310/Lib/opcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/opcode.py -------------------------------------------------------------------------------- /bin/python310/Lib/operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/operator.py -------------------------------------------------------------------------------- /bin/python310/Lib/optparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/optparse.py -------------------------------------------------------------------------------- /bin/python310/Lib/os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/os.py -------------------------------------------------------------------------------- /bin/python310/Lib/pathlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/pathlib.py -------------------------------------------------------------------------------- /bin/python310/Lib/pdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/pdb.py -------------------------------------------------------------------------------- /bin/python310/Lib/pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/pickle.py -------------------------------------------------------------------------------- /bin/python310/Lib/pickletools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/pickletools.py -------------------------------------------------------------------------------- /bin/python310/Lib/pipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/pipes.py -------------------------------------------------------------------------------- /bin/python310/Lib/pkgutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/pkgutil.py -------------------------------------------------------------------------------- /bin/python310/Lib/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/platform.py -------------------------------------------------------------------------------- /bin/python310/Lib/plistlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/plistlib.py -------------------------------------------------------------------------------- /bin/python310/Lib/poplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/poplib.py -------------------------------------------------------------------------------- /bin/python310/Lib/posixpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/posixpath.py -------------------------------------------------------------------------------- /bin/python310/Lib/pprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/pprint.py -------------------------------------------------------------------------------- /bin/python310/Lib/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/profile.py -------------------------------------------------------------------------------- /bin/python310/Lib/pstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/pstats.py -------------------------------------------------------------------------------- /bin/python310/Lib/pty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/pty.py -------------------------------------------------------------------------------- /bin/python310/Lib/py_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/py_compile.py -------------------------------------------------------------------------------- /bin/python310/Lib/pyclbr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/pyclbr.py -------------------------------------------------------------------------------- /bin/python310/Lib/pydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/pydoc.py -------------------------------------------------------------------------------- /bin/python310/Lib/pydoc_data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/pydoc_data/topics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/pydoc_data/topics.py -------------------------------------------------------------------------------- /bin/python310/Lib/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/queue.py -------------------------------------------------------------------------------- /bin/python310/Lib/quopri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/quopri.py -------------------------------------------------------------------------------- /bin/python310/Lib/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/random.py -------------------------------------------------------------------------------- /bin/python310/Lib/re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/re.py -------------------------------------------------------------------------------- /bin/python310/Lib/reprlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/reprlib.py -------------------------------------------------------------------------------- /bin/python310/Lib/rlcompleter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/rlcompleter.py -------------------------------------------------------------------------------- /bin/python310/Lib/runpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/runpy.py -------------------------------------------------------------------------------- /bin/python310/Lib/sched.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/sched.py -------------------------------------------------------------------------------- /bin/python310/Lib/secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/secrets.py -------------------------------------------------------------------------------- /bin/python310/Lib/selectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/selectors.py -------------------------------------------------------------------------------- /bin/python310/Lib/shelve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/shelve.py -------------------------------------------------------------------------------- /bin/python310/Lib/shlex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/shlex.py -------------------------------------------------------------------------------- /bin/python310/Lib/shutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/shutil.py -------------------------------------------------------------------------------- /bin/python310/Lib/signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/signal.py -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/_distutils_hack/override.py: -------------------------------------------------------------------------------- 1 | __import__('_distutils_hack').do_override() 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/docx/dml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/docx/opc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/docx/opc/parts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/docx/oxml/text/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/docx/parts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/docx/text/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/lxml-4.9.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/lxml-4.9.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | lxml 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/lxml/includes/__init__.pxd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/lxml/includes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/lxml/includes/extlibs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/lxml/includes/libexslt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/lxml/includes/libxml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/lxml/includes/libxslt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/pip-22.2.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/pip-22.2.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/pip-22.2.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.3' 2 | 3 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/pkg_resources/_vendor/jaraco/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/python_docx-0.8.11-py3.10.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/python_docx-0.8.11-py3.10.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/python_docx-0.8.11-py3.10.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | lxml>=2.3.2 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/python_docx-0.8.11-py3.10.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | docx 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/setuptools-63.2.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/setuptools-63.2.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/setuptools-63.2.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | _distutils_hack 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site-packages/setuptools/_vendor/jaraco/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/site.py -------------------------------------------------------------------------------- /bin/python310/Lib/smtpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/smtpd.py -------------------------------------------------------------------------------- /bin/python310/Lib/smtplib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/smtplib.py -------------------------------------------------------------------------------- /bin/python310/Lib/sndhdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/sndhdr.py -------------------------------------------------------------------------------- /bin/python310/Lib/socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/socket.py -------------------------------------------------------------------------------- /bin/python310/Lib/socketserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/socketserver.py -------------------------------------------------------------------------------- /bin/python310/Lib/sqlite3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/sqlite3/__init__.py -------------------------------------------------------------------------------- /bin/python310/Lib/sqlite3/dbapi2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/sqlite3/dbapi2.py -------------------------------------------------------------------------------- /bin/python310/Lib/sqlite3/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/sqlite3/dump.py -------------------------------------------------------------------------------- /bin/python310/Lib/sqlite3/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/sqlite3/test/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/sqlite3/test/dump.py -------------------------------------------------------------------------------- /bin/python310/Lib/sre_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/sre_compile.py -------------------------------------------------------------------------------- /bin/python310/Lib/sre_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/sre_constants.py -------------------------------------------------------------------------------- /bin/python310/Lib/sre_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/sre_parse.py -------------------------------------------------------------------------------- /bin/python310/Lib/ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/ssl.py -------------------------------------------------------------------------------- /bin/python310/Lib/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/stat.py -------------------------------------------------------------------------------- /bin/python310/Lib/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/statistics.py -------------------------------------------------------------------------------- /bin/python310/Lib/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/string.py -------------------------------------------------------------------------------- /bin/python310/Lib/stringprep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/stringprep.py -------------------------------------------------------------------------------- /bin/python310/Lib/struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/struct.py -------------------------------------------------------------------------------- /bin/python310/Lib/subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/subprocess.py -------------------------------------------------------------------------------- /bin/python310/Lib/sunau.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/sunau.py -------------------------------------------------------------------------------- /bin/python310/Lib/symtable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/symtable.py -------------------------------------------------------------------------------- /bin/python310/Lib/sysconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/sysconfig.py -------------------------------------------------------------------------------- /bin/python310/Lib/tabnanny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/tabnanny.py -------------------------------------------------------------------------------- /bin/python310/Lib/tarfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/tarfile.py -------------------------------------------------------------------------------- /bin/python310/Lib/telnetlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/telnetlib.py -------------------------------------------------------------------------------- /bin/python310/Lib/tempfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/tempfile.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/__init__.py: -------------------------------------------------------------------------------- 1 | # Dummy file to make this directory a package. 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/__main__.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/_test_atexit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/_test_atexit.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/_test_eintr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/_test_eintr.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/allsans.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/allsans.pem -------------------------------------------------------------------------------- /bin/python310/Lib/test/ann_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/ann_module.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/ann_module2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/ann_module2.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/ann_module3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/ann_module3.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/ann_module4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/ann_module4.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/ann_module5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/ann_module5.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/ann_module6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/ann_module6.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/ann_module7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/ann_module7.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/audiotest.au: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/audiotest.au -------------------------------------------------------------------------------- /bin/python310/Lib/test/audiotests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/audiotests.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/audit-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/audit-tests.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/autotest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/autotest.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/bad_coding.py: -------------------------------------------------------------------------------- 1 | # -*- coding: uft-8 -*- 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/bad_coding2.py: -------------------------------------------------------------------------------- 1 | #coding: utf8 2 | print('我') 3 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/bad_getattr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/bad_getattr.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/bad_getattr2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/bad_getattr2.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/bad_getattr3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/bad_getattr3.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/badcert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/badcert.pem -------------------------------------------------------------------------------- /bin/python310/Lib/test/badkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/badkey.pem -------------------------------------------------------------------------------- /bin/python310/Lib/test/badsyntax_3131.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | € = 2 3 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/bisect_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/bisect_cmd.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/cfgparser.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/cfgparser.1 -------------------------------------------------------------------------------- /bin/python310/Lib/test/cfgparser.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/cfgparser.2 -------------------------------------------------------------------------------- /bin/python310/Lib/test/cfgparser.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/cfgparser.3 -------------------------------------------------------------------------------- /bin/python310/Lib/test/cjkencodings/big5hkscs-utf8.txt: -------------------------------------------------------------------------------- 1 | 𠄌Ě鵮罓洆 2 | ÊÊ̄ê êê̄ 3 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/clinic.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/clinic.test -------------------------------------------------------------------------------- /bin/python310/Lib/test/coding20731.py: -------------------------------------------------------------------------------- 1 | #coding:latin1 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/crashers/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/crashers/README -------------------------------------------------------------------------------- /bin/python310/Lib/test/curses_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/curses_tests.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/data/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/data/README -------------------------------------------------------------------------------- /bin/python310/Lib/test/dis_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/dis_module.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/double_const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/double_const.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/dtracedata/gc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/dtracedata/gc.d -------------------------------------------------------------------------------- /bin/python310/Lib/test/empty.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/empty.vbs -------------------------------------------------------------------------------- /bin/python310/Lib/test/ffdh3072.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/ffdh3072.pem -------------------------------------------------------------------------------- /bin/python310/Lib/test/final_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/final_a.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/final_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/final_b.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/fork_wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/fork_wait.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/future_test1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/future_test1.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/future_test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/future_test2.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/gdb_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/gdb_sample.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/good_getattr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/good_getattr.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/idnsans.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/idnsans.pem -------------------------------------------------------------------------------- /bin/python310/Lib/test/ieee754.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/ieee754.txt -------------------------------------------------------------------------------- /bin/python310/Lib/test/imp_dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/imp_dummy.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/inspect_stringized_annotations_2.py: -------------------------------------------------------------------------------- 1 | from __future__ import annotations 2 | 3 | def foo(a, b, c): pass 4 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/keycert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/keycert.pem -------------------------------------------------------------------------------- /bin/python310/Lib/test/keycert2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/keycert2.pem -------------------------------------------------------------------------------- /bin/python310/Lib/test/keycert3.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/keycert3.pem -------------------------------------------------------------------------------- /bin/python310/Lib/test/keycert4.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/keycert4.pem -------------------------------------------------------------------------------- /bin/python310/Lib/test/keycertecc.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/keycertecc.pem -------------------------------------------------------------------------------- /bin/python310/Lib/test/leakers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/list_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/list_tests.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/lock_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/lock_tests.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/mailcap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/mailcap.txt -------------------------------------------------------------------------------- /bin/python310/Lib/test/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/mime.types -------------------------------------------------------------------------------- /bin/python310/Lib/test/mock_socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/mock_socket.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/mp_fork_bomb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/mp_fork_bomb.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/mp_preload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/mp_preload.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/nokia.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/nokia.pem -------------------------------------------------------------------------------- /bin/python310/Lib/test/nosan.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/nosan.pem -------------------------------------------------------------------------------- /bin/python310/Lib/test/nullcert.pem: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/pickletester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/pickletester.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/profilee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/profilee.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/pstats.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/pstats.pck -------------------------------------------------------------------------------- /bin/python310/Lib/test/pycacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/pycacert.pem -------------------------------------------------------------------------------- /bin/python310/Lib/test/pycakey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/pycakey.pem -------------------------------------------------------------------------------- /bin/python310/Lib/test/pyclbr_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/pyclbr_input.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/pydoc_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/pydoc_mod.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/pydocfodder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/pydocfodder.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/pythoninfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/pythoninfo.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/randv2_32.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/randv2_32.pck -------------------------------------------------------------------------------- /bin/python310/Lib/test/randv2_64.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/randv2_64.pck -------------------------------------------------------------------------------- /bin/python310/Lib/test/randv3.pck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/randv3.pck -------------------------------------------------------------------------------- /bin/python310/Lib/test/re_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/re_tests.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/recursion.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/recursion.tar -------------------------------------------------------------------------------- /bin/python310/Lib/test/regrtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/regrtest.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/relimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/relimport.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/reperf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/reperf.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/revocation.crl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/revocation.crl -------------------------------------------------------------------------------- /bin/python310/Lib/test/secp384r1.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/secp384r1.pem -------------------------------------------------------------------------------- /bin/python310/Lib/test/seq_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/seq_tests.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/sgml_input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/sgml_input.html -------------------------------------------------------------------------------- /bin/python310/Lib/test/sortperf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/sortperf.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/ssl_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/ssl_cert.pem -------------------------------------------------------------------------------- /bin/python310/Lib/test/ssl_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/ssl_key.pem -------------------------------------------------------------------------------- /bin/python310/Lib/test/ssl_servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/ssl_servers.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/ssltests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/ssltests.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/string_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/string_tests.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test___all__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test___all__.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test__locale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test__locale.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test__opcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test__opcode.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_abc.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_aifc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_aifc.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_array.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_ast.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_atexit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_atexit.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_audioop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_audioop.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_audit.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_base64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_base64.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_bdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_bdb.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_bigmem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_bigmem.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_binhex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_binhex.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_binop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_binop.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_bisect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_bisect.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_bool.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_buffer.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_bufio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_bufio.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_builtin.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_bytes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_bytes.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_bz2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_bz2.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_call.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_capi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_capi.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_cgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_cgi.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_cgitb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_cgitb.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_class.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_cmath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_cmath.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_cmd.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_code.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_copy.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_crypt.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_csv.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_dbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_dbm.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_deque.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_deque.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_descr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_descr.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_dict.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_dis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_dis.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_eintr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_eintr.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_embed.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_enum.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_eof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_eof.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_epoll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_epoll.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_errno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_errno.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_fcntl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_fcntl.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_file.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_float.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_float.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_flufl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_flufl.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_fork1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_fork1.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_frame.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_gc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_gc.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_gdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_gdb.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_glob.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_grp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_grp.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_gzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_gzip.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_hash.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_heapq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_heapq.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_hmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_hmac.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_html.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_idle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_idle.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_imp.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_import/data/circular_imports/basic2.py: -------------------------------------------------------------------------------- 1 | from . import basic 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_import/data/circular_imports/from_cycle1.py: -------------------------------------------------------------------------------- 1 | from .from_cycle2 import a 2 | b = 1 3 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_import/data/circular_imports/from_cycle2.py: -------------------------------------------------------------------------------- 1 | from .from_cycle1 import b 2 | a = 1 3 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_import/data/circular_imports/source.py: -------------------------------------------------------------------------------- 1 | from . import use 2 | spam = 1 3 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_import/data/circular_imports/subpkg/util.py: -------------------------------------------------------------------------------- 1 | def util(): 2 | pass 3 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_import/data/circular_imports/util.py: -------------------------------------------------------------------------------- 1 | def util(): 2 | pass 3 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_import/data/package/submodule.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_import/data/package2/submodule2.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_import/data/unwritable/x.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/data01/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/data01/binary.file: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/data01/subdirectory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/data01/subdirectory/binary.file: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/data01/utf-8.file: -------------------------------------------------------------------------------- 1 | Hello, UTF-8 world! 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/data02/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/data02/one/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/data02/one/resource1.txt: -------------------------------------------------------------------------------- 1 | one resource 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/data02/two/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/data02/two/resource2.txt: -------------------------------------------------------------------------------- 1 | two resource 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/data03/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/data03/namespace/portion1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/data03/namespace/portion2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/data03/namespace/resource1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/namespace_pkgs/both_portions/foo/one.py: -------------------------------------------------------------------------------- 1 | attr = 'both_portions foo one' 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/namespace_pkgs/both_portions/foo/two.py: -------------------------------------------------------------------------------- 1 | attr = 'both_portions foo two' 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test.py: -------------------------------------------------------------------------------- 1 | attr = 'in module' 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/one.py: -------------------------------------------------------------------------------- 1 | attr = 'portion1 foo one' 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/namespace_pkgs/portion1/foo/one.py: -------------------------------------------------------------------------------- 1 | attr = 'portion1 foo one' 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/namespace_pkgs/portion2/foo/two.py: -------------------------------------------------------------------------------- 1 | attr = 'portion2 foo two' 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/namespace_pkgs/project1/parent/child/one.py: -------------------------------------------------------------------------------- 1 | attr = 'parent child one' 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/namespace_pkgs/project2/parent/child/two.py: -------------------------------------------------------------------------------- 1 | attr = 'parent child two' 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/namespace_pkgs/project3/parent/child/three.py: -------------------------------------------------------------------------------- 1 | attr = 'parent child three' 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/namespacedata01/binary.file: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/namespacedata01/utf-8.file: -------------------------------------------------------------------------------- 1 | Hello, UTF-8 world! 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/zipdata01/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_importlib/zipdata02/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_index.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_int.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_io.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_ioctl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_ioctl.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_iter.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_list.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_long.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_long.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_lzma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_lzma.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_math.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_mmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_mmap.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_netrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_netrc.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_nis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_nis.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_os.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_os.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_patma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_patma.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_pdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_pdb.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_pipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_pipes.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_pkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_pkg.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_poll.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_popen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_popen.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_posix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_posix.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_pow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_pow.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_print.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_pty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_pty.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_pwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_pwd.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_pydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_pydoc.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_queue.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_raise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_raise.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_range.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_re.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_repl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_repl.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_runpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_runpy.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_sax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_sax.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_sched.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_sched.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_scope.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_set.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_shlex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_shlex.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_site.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_slice.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_smtpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_smtpd.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_sort.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_spwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_spwd.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_ssl.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_stat.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_sunau.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_sunau.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_super.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_super.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_sys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_sys.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_tcl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_tcl.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_time.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_tix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_tix.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_tk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_tk.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_trace.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_tuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_tuple.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_types.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_ucn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_ucn.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_unary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_unary.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_uu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_uu.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_uuid.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_venv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_venv.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_wait3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_wait3.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_wait4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_wait4.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_wave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_wave.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_with.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_with.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_zlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/test_zlib.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/test_zoneinfo/__init__.py: -------------------------------------------------------------------------------- 1 | from .test_zoneinfo import * 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/test/testcodec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/testcodec.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/testtar.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/testtar.tar -------------------------------------------------------------------------------- /bin/python310/Lib/test/xmltestdata/c14n-20/out_inC14N6_c14nDefault.xml: -------------------------------------------------------------------------------- 1 | © -------------------------------------------------------------------------------- /bin/python310/Lib/test/xmltestdata/c14n-20/world.txt: -------------------------------------------------------------------------------- 1 | world -------------------------------------------------------------------------------- /bin/python310/Lib/test/xmltests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/xmltests.py -------------------------------------------------------------------------------- /bin/python310/Lib/test/zipdir.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/test/zipdir.zip -------------------------------------------------------------------------------- /bin/python310/Lib/textwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/textwrap.py -------------------------------------------------------------------------------- /bin/python310/Lib/this.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/this.py -------------------------------------------------------------------------------- /bin/python310/Lib/threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/threading.py -------------------------------------------------------------------------------- /bin/python310/Lib/timeit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/timeit.py -------------------------------------------------------------------------------- /bin/python310/Lib/tkinter/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/tkinter/dialog.py -------------------------------------------------------------------------------- /bin/python310/Lib/tkinter/dnd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/tkinter/dnd.py -------------------------------------------------------------------------------- /bin/python310/Lib/tkinter/font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/tkinter/font.py -------------------------------------------------------------------------------- /bin/python310/Lib/tkinter/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/tkinter/test/test_tkinter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/tkinter/test/test_ttk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/tkinter/tix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/tkinter/tix.py -------------------------------------------------------------------------------- /bin/python310/Lib/tkinter/ttk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/tkinter/ttk.py -------------------------------------------------------------------------------- /bin/python310/Lib/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/token.py -------------------------------------------------------------------------------- /bin/python310/Lib/tokenize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/tokenize.py -------------------------------------------------------------------------------- /bin/python310/Lib/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/trace.py -------------------------------------------------------------------------------- /bin/python310/Lib/traceback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/traceback.py -------------------------------------------------------------------------------- /bin/python310/Lib/tracemalloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/tracemalloc.py -------------------------------------------------------------------------------- /bin/python310/Lib/tty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/tty.py -------------------------------------------------------------------------------- /bin/python310/Lib/turtle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/turtle.py -------------------------------------------------------------------------------- /bin/python310/Lib/turtledemo/nim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/turtledemo/nim.py -------------------------------------------------------------------------------- /bin/python310/Lib/turtledemo/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/turtledemo/tree.py -------------------------------------------------------------------------------- /bin/python310/Lib/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/types.py -------------------------------------------------------------------------------- /bin/python310/Lib/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/typing.py -------------------------------------------------------------------------------- /bin/python310/Lib/unittest/_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/unittest/_log.py -------------------------------------------------------------------------------- /bin/python310/Lib/unittest/case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/unittest/case.py -------------------------------------------------------------------------------- /bin/python310/Lib/unittest/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/unittest/loader.py -------------------------------------------------------------------------------- /bin/python310/Lib/unittest/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/unittest/main.py -------------------------------------------------------------------------------- /bin/python310/Lib/unittest/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/unittest/mock.py -------------------------------------------------------------------------------- /bin/python310/Lib/unittest/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/unittest/result.py -------------------------------------------------------------------------------- /bin/python310/Lib/unittest/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/unittest/runner.py -------------------------------------------------------------------------------- /bin/python310/Lib/unittest/suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/unittest/suite.py -------------------------------------------------------------------------------- /bin/python310/Lib/unittest/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/unittest/util.py -------------------------------------------------------------------------------- /bin/python310/Lib/urllib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/python310/Lib/urllib/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/urllib/error.py -------------------------------------------------------------------------------- /bin/python310/Lib/urllib/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/urllib/parse.py -------------------------------------------------------------------------------- /bin/python310/Lib/urllib/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/urllib/request.py -------------------------------------------------------------------------------- /bin/python310/Lib/urllib/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/urllib/response.py -------------------------------------------------------------------------------- /bin/python310/Lib/uu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/uu.py -------------------------------------------------------------------------------- /bin/python310/Lib/uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/uuid.py -------------------------------------------------------------------------------- /bin/python310/Lib/venv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/venv/__init__.py -------------------------------------------------------------------------------- /bin/python310/Lib/venv/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/venv/__main__.py -------------------------------------------------------------------------------- /bin/python310/Lib/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/warnings.py -------------------------------------------------------------------------------- /bin/python310/Lib/wave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/wave.py -------------------------------------------------------------------------------- /bin/python310/Lib/weakref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/weakref.py -------------------------------------------------------------------------------- /bin/python310/Lib/webbrowser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/webbrowser.py -------------------------------------------------------------------------------- /bin/python310/Lib/wsgiref/headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/wsgiref/headers.py -------------------------------------------------------------------------------- /bin/python310/Lib/wsgiref/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/wsgiref/util.py -------------------------------------------------------------------------------- /bin/python310/Lib/xdrlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/xdrlib.py -------------------------------------------------------------------------------- /bin/python310/Lib/xml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/xml/__init__.py -------------------------------------------------------------------------------- /bin/python310/Lib/xml/dom/domreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/xml/dom/domreg.py -------------------------------------------------------------------------------- /bin/python310/Lib/xml/dom/minidom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/xml/dom/minidom.py -------------------------------------------------------------------------------- /bin/python310/Lib/xml/dom/pulldom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/xml/dom/pulldom.py -------------------------------------------------------------------------------- /bin/python310/Lib/xml/sax/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/xml/sax/handler.py -------------------------------------------------------------------------------- /bin/python310/Lib/xmlrpc/__init__.py: -------------------------------------------------------------------------------- 1 | # This directory is a Python package. 2 | -------------------------------------------------------------------------------- /bin/python310/Lib/xmlrpc/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/xmlrpc/client.py -------------------------------------------------------------------------------- /bin/python310/Lib/xmlrpc/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/xmlrpc/server.py -------------------------------------------------------------------------------- /bin/python310/Lib/zipapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/zipapp.py -------------------------------------------------------------------------------- /bin/python310/Lib/zipfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/zipfile.py -------------------------------------------------------------------------------- /bin/python310/Lib/zipimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/python310/Lib/zipimport.py -------------------------------------------------------------------------------- /bin/script/wordOperate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/script/wordOperate.py -------------------------------------------------------------------------------- /bin/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/bin/title.png -------------------------------------------------------------------------------- /doc/Json_Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/doc/Json_Format.md -------------------------------------------------------------------------------- /doc/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/doc/test.json -------------------------------------------------------------------------------- /examples/MainWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/examples/MainWidget.cpp -------------------------------------------------------------------------------- /examples/MainWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/examples/MainWidget.h -------------------------------------------------------------------------------- /examples/WordItemData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/examples/WordItemData.cpp -------------------------------------------------------------------------------- /examples/WordItemData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/examples/WordItemData.h -------------------------------------------------------------------------------- /examples/examples.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/examples/examples.pro -------------------------------------------------------------------------------- /examples/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/examples/main.cpp -------------------------------------------------------------------------------- /images/build_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/images/build_setting.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/mainWidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/images/mainWidget.png -------------------------------------------------------------------------------- /images/myCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/images/myCode.png -------------------------------------------------------------------------------- /images/python-install-docx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/images/python-install-docx.png -------------------------------------------------------------------------------- /images/qrcode_for_devstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/images/qrcode_for_devstone.png -------------------------------------------------------------------------------- /images/word_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/images/word_result.png -------------------------------------------------------------------------------- /images/word_result2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/images/word_result2.png -------------------------------------------------------------------------------- /src/KPYSDK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/src/KPYSDK.cpp -------------------------------------------------------------------------------- /src/KPYSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/src/KPYSDK.h -------------------------------------------------------------------------------- /src/KPYSDK_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/src/KPYSDK_global.h -------------------------------------------------------------------------------- /src/src.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlq/QtPythonDocx/HEAD/src/src.pro --------------------------------------------------------------------------------