4f191912d6
Python 3.9.6 final Security bpo-44022: mod:http.client now avoids infinitely reading potential HTTP headers after a 100 Continue status response from the server. Core and Builtins bpo-44409: Fix error location information for tokenizer errors raised on initialization of the tokenizer. Patch by Pablo Galindo. bpo-43667: Improve Unicode support in non-UTF locales on Oracle Solaris. This issue does not affect other Solaris systems. bpo-44168: Fix error message in the parser involving keyword arguments with invalid expressions. Patch by Pablo Galindo bpo-44114: Fix incorrect dictkeys_reversed and dictitems_reversed function signatures in C code, which broke webassembly builds. bpo-44070: No longer eagerly makes import filenames absolute, except for extension modules, which was introduced in 3.9.5. bpo-28146: Fix a confusing error message in str.format(). bpo-11105: When compiling ast.AST objects with recursive references through compile(), the interpreter doesn’t crash anymore instead it raises a RecursionError. Library bpo-44516: Update vendored pip to 21.1.3 bpo-44482: Fix very unlikely resource leak in glob in alternate Python implementations. bpo-44439: Fix in bz2.BZ2File.write() / lzma.LZMAFile.write() methods, when the input data is an object that supports the buffer protocol, the file length may be wrong. bpo-44434: _thread.start_new_thread() no longer calls PyThread_exit_thread() explicitly at the thread exit, the call was redundant. On Linux with the glibc, pthread_exit() aborts the whole process if dlopen() fails to open libgcc_s.so file (ex: EMFILE error). Patch by Victor Stinner. bpo-44422: The threading.enumerate() function now uses a reentrant lock to prevent a hang on reentrant call. Patch by Victor Stinner. bpo-44395: Fix as_string() to pass unixfrom properly. Patch by Dong-hee Na. bpo-44342: [Enum] Be more robust in searching for pickle support before making an enum class unpicklable. bpo-44356: [Enum] Allow multiple data-type mixins if they are all the same. bpo-44254: On Mac, give turtledemo button text a color that works on both light or dark background. Programmers cannot control the latter. bpo-44145: hmac computations were not releasing the GIL while calling the OpenSSL HMAC_Update C API (a new feature in 3.9). This unintentionally prevented parallel computation as other hashlib algorithms support. bpo-37788: Fix a reference leak when a Thread object is never joined. bpo-44061: Fix regression in previous release when calling pkgutil.iter_modules() with a list of pathlib.Path objects bpo-36515: The hashlib module no longer does unaligned memory accesses when compiled for ARM platforms. bpo-44018: random.seed() no longer mutates bytearray inputs. bpo-38352: Add IO, BinaryIO, TextIO, Match, and Pattern to typing.__all__. Patch by Jelle Zijlstra. bpo-43972: When http.server.SimpleHTTPRequestHandler sends a 301 (Moved Permanently) for a directory path not ending with /, add a Content-Length: 0 header. This improves the behavior for certain clients. bpo-28528: Fix a bug in pdb where checkline() raises AttributeError if it is called after reset(). bpo-43776: When subprocess.Popen args are provided as a string or as pathlib.Path, the Popen instance repr now shows the right thing. bpo-43666: AIX: Lib/_aix_support.get_platform() may fail in an AIX WPAR. The fileset bos.rte appears to have a builddate in both LPAR and WPAR so this fileset is queried rather than bos.mp64. To prevent a similiar situation (no builddate in ODM) a value (9988) sufficient for completing a build is provided. Patch by M Felt. bpo-43650: Fix MemoryError in shutil.unpack_archive() which fails inside shutil._unpack_zipfile() on large files. Patch by Igor Bolshakov. bpo-43318: Fix a bug where pdb does not always echo cleared breakpoints. bpo-43295: datetime.datetime.strptime() now raises ValueError instead of IndexError when matching 'z' with the %z format specifier. bpo-37022: pdb now displays exceptions from repr() with its p and pp commands. Documentation bpo-40620: Convert examples in tutorial controlflow.rst section 4.3 to be interpreter-demo style. bpo-13814: In the Design FAQ, answer “Why don’t generators support the with statement?” bpo-44392: Added a new section in the C API documentation for types used in type hinting. Documented Py_GenericAlias and Py_GenericAliasType. bpo-38291: Mark typing.io and typing.re as deprecated since Python 3.8 in the documentation. They were never properly supported by type checkers. bpo-44322: Document that SyntaxError args have a details tuple and that details are adjusted for errors in f-string field replacement expressions. bpo-44195: Corrected references to TraversableResources in docs. There is no TraversableReader. bpo-41963: Document that ConfigParser strips off comments when reading configuration files. bpo-44072: Correct where in the numeric ABC hierarchy ** support is added, i.e., in numbers.Complex, not numbers.Integral. bpo-43558: Add the remark to dataclasses documentation that the __init__() of any base class has to be called in __post_init__(), along with a code example. bpo-41621: Document that collections.defaultdict parameter default_factory defaults to None and is positional-only. Tests bpo-44287: Fix asyncio test_popen() of test_windows_utils by using a longer timeout. Use military grade battle-tested test.support.SHORT_TIMEOUT timeout rather than a hardcoded timeout of 10 seconds: it’s 30 seconds by default, but it is made longer on slow buildbots. Patch by Victor Stinner. bpo-44363: Account for address sanitizer in test_capi. test_capi now passes when run GCC address sanitizer. Build bpo-44381: The Windows build now accepts EnableControlFlowGuard set to guard to enable CFG. Windows bpo-41299: Fix 16ms jitter when using timeouts in threading, such as with threading.Lock.acquire() or threading.Condition.wait(). macOS bpo-43568: Relax unnecessarily restrictive MACOSX_DEPLOYMENT_TARGET check when building extension modules for macOS. Patch by Joshua Root. bpo-43109: Allow –with-lto configure option to work with Apple-supplied Xcode or Command Line Tools. IDLE bpo-40128: Mostly fix completions on macOS when not using tcl/tk 8.6.11 (as with 3.9). The added update_idletask call should be harmless and possibly helpful otherwise. bpo-33962: Move the indent space setting from the Font tab to the new Windows tab. Patch by Mark Roseman and Terry Jan Reedy. bpo-40468: Split the settings dialog General tab into Windows and Shell/ED tabs. Move help sources, which extend the Help menu, to the Extensions tab. Make space for new options and shorten the dialog. The latter makes the dialog better fit small screens. bpo-41611: Avoid uncaught exceptions in AutoCompleteWindow.winconfig_event(). bpo-41611: Fix IDLE sometimes freezing upon tab-completion on macOS. Tools/Demos bpo-44074: Make patchcheck automatically detect the correct base branch name (previously it was hardcoded to ‘master’) C API bpo-44441: Py_RunMain() now resets PyImport_Inittab to its initial value at exit. It must be possible to call PyImport_AppendInittab() or PyImport_ExtendInittab() at each Python initialization. Patch by Victor Stinner. bpo-42083: Fix crash in PyStructSequence_NewType() when passed NULL in the documentation string slot.
1045 lines
48 KiB
Text
1045 lines
48 KiB
Text
@comment $NetBSD: PLIST,v 1.2 2021/06/29 12:43:42 adam Exp $
|
|
share/doc/python3.9/.buildinfo
|
|
share/doc/python3.9/_downloads/6b45dc135219d1404be49d606589a11d/tzinfo_examples.py
|
|
share/doc/python3.9/_images/hashlib-blake2-tree.png
|
|
share/doc/python3.9/_images/logging_flow.png
|
|
share/doc/python3.9/_images/pathlib-inheritance.png
|
|
share/doc/python3.9/_images/tk_msg.png
|
|
share/doc/python3.9/_images/turtle-star.png
|
|
share/doc/python3.9/_images/win_installer.png
|
|
share/doc/python3.9/_sources/about.rst.txt
|
|
share/doc/python3.9/_sources/bugs.rst.txt
|
|
share/doc/python3.9/_sources/c-api/abstract.rst.txt
|
|
share/doc/python3.9/_sources/c-api/allocation.rst.txt
|
|
share/doc/python3.9/_sources/c-api/apiabiversion.rst.txt
|
|
share/doc/python3.9/_sources/c-api/arg.rst.txt
|
|
share/doc/python3.9/_sources/c-api/bool.rst.txt
|
|
share/doc/python3.9/_sources/c-api/buffer.rst.txt
|
|
share/doc/python3.9/_sources/c-api/bytearray.rst.txt
|
|
share/doc/python3.9/_sources/c-api/bytes.rst.txt
|
|
share/doc/python3.9/_sources/c-api/call.rst.txt
|
|
share/doc/python3.9/_sources/c-api/capsule.rst.txt
|
|
share/doc/python3.9/_sources/c-api/cell.rst.txt
|
|
share/doc/python3.9/_sources/c-api/code.rst.txt
|
|
share/doc/python3.9/_sources/c-api/codec.rst.txt
|
|
share/doc/python3.9/_sources/c-api/complex.rst.txt
|
|
share/doc/python3.9/_sources/c-api/concrete.rst.txt
|
|
share/doc/python3.9/_sources/c-api/contextvars.rst.txt
|
|
share/doc/python3.9/_sources/c-api/conversion.rst.txt
|
|
share/doc/python3.9/_sources/c-api/coro.rst.txt
|
|
share/doc/python3.9/_sources/c-api/datetime.rst.txt
|
|
share/doc/python3.9/_sources/c-api/descriptor.rst.txt
|
|
share/doc/python3.9/_sources/c-api/dict.rst.txt
|
|
share/doc/python3.9/_sources/c-api/exceptions.rst.txt
|
|
share/doc/python3.9/_sources/c-api/file.rst.txt
|
|
share/doc/python3.9/_sources/c-api/float.rst.txt
|
|
share/doc/python3.9/_sources/c-api/function.rst.txt
|
|
share/doc/python3.9/_sources/c-api/gcsupport.rst.txt
|
|
share/doc/python3.9/_sources/c-api/gen.rst.txt
|
|
share/doc/python3.9/_sources/c-api/import.rst.txt
|
|
share/doc/python3.9/_sources/c-api/index.rst.txt
|
|
share/doc/python3.9/_sources/c-api/init.rst.txt
|
|
share/doc/python3.9/_sources/c-api/init_config.rst.txt
|
|
share/doc/python3.9/_sources/c-api/intro.rst.txt
|
|
share/doc/python3.9/_sources/c-api/iter.rst.txt
|
|
share/doc/python3.9/_sources/c-api/iterator.rst.txt
|
|
share/doc/python3.9/_sources/c-api/list.rst.txt
|
|
share/doc/python3.9/_sources/c-api/long.rst.txt
|
|
share/doc/python3.9/_sources/c-api/mapping.rst.txt
|
|
share/doc/python3.9/_sources/c-api/marshal.rst.txt
|
|
share/doc/python3.9/_sources/c-api/memory.rst.txt
|
|
share/doc/python3.9/_sources/c-api/memoryview.rst.txt
|
|
share/doc/python3.9/_sources/c-api/method.rst.txt
|
|
share/doc/python3.9/_sources/c-api/module.rst.txt
|
|
share/doc/python3.9/_sources/c-api/none.rst.txt
|
|
share/doc/python3.9/_sources/c-api/number.rst.txt
|
|
share/doc/python3.9/_sources/c-api/objbuffer.rst.txt
|
|
share/doc/python3.9/_sources/c-api/object.rst.txt
|
|
share/doc/python3.9/_sources/c-api/objimpl.rst.txt
|
|
share/doc/python3.9/_sources/c-api/refcounting.rst.txt
|
|
share/doc/python3.9/_sources/c-api/reflection.rst.txt
|
|
share/doc/python3.9/_sources/c-api/sequence.rst.txt
|
|
share/doc/python3.9/_sources/c-api/set.rst.txt
|
|
share/doc/python3.9/_sources/c-api/slice.rst.txt
|
|
share/doc/python3.9/_sources/c-api/stable.rst.txt
|
|
share/doc/python3.9/_sources/c-api/structures.rst.txt
|
|
share/doc/python3.9/_sources/c-api/sys.rst.txt
|
|
share/doc/python3.9/_sources/c-api/tuple.rst.txt
|
|
share/doc/python3.9/_sources/c-api/type.rst.txt
|
|
share/doc/python3.9/_sources/c-api/typehints.rst.txt
|
|
share/doc/python3.9/_sources/c-api/typeobj.rst.txt
|
|
share/doc/python3.9/_sources/c-api/unicode.rst.txt
|
|
share/doc/python3.9/_sources/c-api/utilities.rst.txt
|
|
share/doc/python3.9/_sources/c-api/veryhigh.rst.txt
|
|
share/doc/python3.9/_sources/c-api/weakref.rst.txt
|
|
share/doc/python3.9/_sources/contents.rst.txt
|
|
share/doc/python3.9/_sources/copyright.rst.txt
|
|
share/doc/python3.9/_sources/distributing/index.rst.txt
|
|
share/doc/python3.9/_sources/distutils/_setuptools_disclaimer.rst.txt
|
|
share/doc/python3.9/_sources/distutils/apiref.rst.txt
|
|
share/doc/python3.9/_sources/distutils/builtdist.rst.txt
|
|
share/doc/python3.9/_sources/distutils/commandref.rst.txt
|
|
share/doc/python3.9/_sources/distutils/configfile.rst.txt
|
|
share/doc/python3.9/_sources/distutils/examples.rst.txt
|
|
share/doc/python3.9/_sources/distutils/extending.rst.txt
|
|
share/doc/python3.9/_sources/distutils/index.rst.txt
|
|
share/doc/python3.9/_sources/distutils/introduction.rst.txt
|
|
share/doc/python3.9/_sources/distutils/packageindex.rst.txt
|
|
share/doc/python3.9/_sources/distutils/setupscript.rst.txt
|
|
share/doc/python3.9/_sources/distutils/sourcedist.rst.txt
|
|
share/doc/python3.9/_sources/distutils/uploading.rst.txt
|
|
share/doc/python3.9/_sources/extending/building.rst.txt
|
|
share/doc/python3.9/_sources/extending/embedding.rst.txt
|
|
share/doc/python3.9/_sources/extending/extending.rst.txt
|
|
share/doc/python3.9/_sources/extending/index.rst.txt
|
|
share/doc/python3.9/_sources/extending/newtypes.rst.txt
|
|
share/doc/python3.9/_sources/extending/newtypes_tutorial.rst.txt
|
|
share/doc/python3.9/_sources/extending/windows.rst.txt
|
|
share/doc/python3.9/_sources/faq/design.rst.txt
|
|
share/doc/python3.9/_sources/faq/extending.rst.txt
|
|
share/doc/python3.9/_sources/faq/general.rst.txt
|
|
share/doc/python3.9/_sources/faq/gui.rst.txt
|
|
share/doc/python3.9/_sources/faq/index.rst.txt
|
|
share/doc/python3.9/_sources/faq/installed.rst.txt
|
|
share/doc/python3.9/_sources/faq/library.rst.txt
|
|
share/doc/python3.9/_sources/faq/programming.rst.txt
|
|
share/doc/python3.9/_sources/faq/windows.rst.txt
|
|
share/doc/python3.9/_sources/glossary.rst.txt
|
|
share/doc/python3.9/_sources/howto/argparse.rst.txt
|
|
share/doc/python3.9/_sources/howto/clinic.rst.txt
|
|
share/doc/python3.9/_sources/howto/cporting.rst.txt
|
|
share/doc/python3.9/_sources/howto/curses.rst.txt
|
|
share/doc/python3.9/_sources/howto/descriptor.rst.txt
|
|
share/doc/python3.9/_sources/howto/functional.rst.txt
|
|
share/doc/python3.9/_sources/howto/index.rst.txt
|
|
share/doc/python3.9/_sources/howto/instrumentation.rst.txt
|
|
share/doc/python3.9/_sources/howto/ipaddress.rst.txt
|
|
share/doc/python3.9/_sources/howto/logging-cookbook.rst.txt
|
|
share/doc/python3.9/_sources/howto/logging.rst.txt
|
|
share/doc/python3.9/_sources/howto/pyporting.rst.txt
|
|
share/doc/python3.9/_sources/howto/regex.rst.txt
|
|
share/doc/python3.9/_sources/howto/sockets.rst.txt
|
|
share/doc/python3.9/_sources/howto/sorting.rst.txt
|
|
share/doc/python3.9/_sources/howto/unicode.rst.txt
|
|
share/doc/python3.9/_sources/howto/urllib2.rst.txt
|
|
share/doc/python3.9/_sources/install/index.rst.txt
|
|
share/doc/python3.9/_sources/installing/index.rst.txt
|
|
share/doc/python3.9/_sources/library/2to3.rst.txt
|
|
share/doc/python3.9/_sources/library/__future__.rst.txt
|
|
share/doc/python3.9/_sources/library/__main__.rst.txt
|
|
share/doc/python3.9/_sources/library/_thread.rst.txt
|
|
share/doc/python3.9/_sources/library/abc.rst.txt
|
|
share/doc/python3.9/_sources/library/aifc.rst.txt
|
|
share/doc/python3.9/_sources/library/allos.rst.txt
|
|
share/doc/python3.9/_sources/library/archiving.rst.txt
|
|
share/doc/python3.9/_sources/library/argparse.rst.txt
|
|
share/doc/python3.9/_sources/library/array.rst.txt
|
|
share/doc/python3.9/_sources/library/ast.rst.txt
|
|
share/doc/python3.9/_sources/library/asynchat.rst.txt
|
|
share/doc/python3.9/_sources/library/asyncio-api-index.rst.txt
|
|
share/doc/python3.9/_sources/library/asyncio-dev.rst.txt
|
|
share/doc/python3.9/_sources/library/asyncio-eventloop.rst.txt
|
|
share/doc/python3.9/_sources/library/asyncio-exceptions.rst.txt
|
|
share/doc/python3.9/_sources/library/asyncio-future.rst.txt
|
|
share/doc/python3.9/_sources/library/asyncio-llapi-index.rst.txt
|
|
share/doc/python3.9/_sources/library/asyncio-platforms.rst.txt
|
|
share/doc/python3.9/_sources/library/asyncio-policy.rst.txt
|
|
share/doc/python3.9/_sources/library/asyncio-protocol.rst.txt
|
|
share/doc/python3.9/_sources/library/asyncio-queue.rst.txt
|
|
share/doc/python3.9/_sources/library/asyncio-stream.rst.txt
|
|
share/doc/python3.9/_sources/library/asyncio-subprocess.rst.txt
|
|
share/doc/python3.9/_sources/library/asyncio-sync.rst.txt
|
|
share/doc/python3.9/_sources/library/asyncio-task.rst.txt
|
|
share/doc/python3.9/_sources/library/asyncio.rst.txt
|
|
share/doc/python3.9/_sources/library/asyncore.rst.txt
|
|
share/doc/python3.9/_sources/library/atexit.rst.txt
|
|
share/doc/python3.9/_sources/library/audioop.rst.txt
|
|
share/doc/python3.9/_sources/library/audit_events.rst.txt
|
|
share/doc/python3.9/_sources/library/base64.rst.txt
|
|
share/doc/python3.9/_sources/library/bdb.rst.txt
|
|
share/doc/python3.9/_sources/library/binary.rst.txt
|
|
share/doc/python3.9/_sources/library/binascii.rst.txt
|
|
share/doc/python3.9/_sources/library/binhex.rst.txt
|
|
share/doc/python3.9/_sources/library/bisect.rst.txt
|
|
share/doc/python3.9/_sources/library/builtins.rst.txt
|
|
share/doc/python3.9/_sources/library/bz2.rst.txt
|
|
share/doc/python3.9/_sources/library/calendar.rst.txt
|
|
share/doc/python3.9/_sources/library/cgi.rst.txt
|
|
share/doc/python3.9/_sources/library/cgitb.rst.txt
|
|
share/doc/python3.9/_sources/library/chunk.rst.txt
|
|
share/doc/python3.9/_sources/library/cmath.rst.txt
|
|
share/doc/python3.9/_sources/library/cmd.rst.txt
|
|
share/doc/python3.9/_sources/library/code.rst.txt
|
|
share/doc/python3.9/_sources/library/codecs.rst.txt
|
|
share/doc/python3.9/_sources/library/codeop.rst.txt
|
|
share/doc/python3.9/_sources/library/collections.abc.rst.txt
|
|
share/doc/python3.9/_sources/library/collections.rst.txt
|
|
share/doc/python3.9/_sources/library/colorsys.rst.txt
|
|
share/doc/python3.9/_sources/library/compileall.rst.txt
|
|
share/doc/python3.9/_sources/library/concurrency.rst.txt
|
|
share/doc/python3.9/_sources/library/concurrent.futures.rst.txt
|
|
share/doc/python3.9/_sources/library/concurrent.rst.txt
|
|
share/doc/python3.9/_sources/library/configparser.rst.txt
|
|
share/doc/python3.9/_sources/library/constants.rst.txt
|
|
share/doc/python3.9/_sources/library/contextlib.rst.txt
|
|
share/doc/python3.9/_sources/library/contextvars.rst.txt
|
|
share/doc/python3.9/_sources/library/copy.rst.txt
|
|
share/doc/python3.9/_sources/library/copyreg.rst.txt
|
|
share/doc/python3.9/_sources/library/crypt.rst.txt
|
|
share/doc/python3.9/_sources/library/crypto.rst.txt
|
|
share/doc/python3.9/_sources/library/csv.rst.txt
|
|
share/doc/python3.9/_sources/library/ctypes.rst.txt
|
|
share/doc/python3.9/_sources/library/curses.ascii.rst.txt
|
|
share/doc/python3.9/_sources/library/curses.panel.rst.txt
|
|
share/doc/python3.9/_sources/library/curses.rst.txt
|
|
share/doc/python3.9/_sources/library/custominterp.rst.txt
|
|
share/doc/python3.9/_sources/library/dataclasses.rst.txt
|
|
share/doc/python3.9/_sources/library/datatypes.rst.txt
|
|
share/doc/python3.9/_sources/library/datetime.rst.txt
|
|
share/doc/python3.9/_sources/library/dbm.rst.txt
|
|
share/doc/python3.9/_sources/library/debug.rst.txt
|
|
share/doc/python3.9/_sources/library/decimal.rst.txt
|
|
share/doc/python3.9/_sources/library/development.rst.txt
|
|
share/doc/python3.9/_sources/library/devmode.rst.txt
|
|
share/doc/python3.9/_sources/library/dialog.rst.txt
|
|
share/doc/python3.9/_sources/library/difflib.rst.txt
|
|
share/doc/python3.9/_sources/library/dis.rst.txt
|
|
share/doc/python3.9/_sources/library/distribution.rst.txt
|
|
share/doc/python3.9/_sources/library/distutils.rst.txt
|
|
share/doc/python3.9/_sources/library/doctest.rst.txt
|
|
share/doc/python3.9/_sources/library/email.charset.rst.txt
|
|
share/doc/python3.9/_sources/library/email.compat32-message.rst.txt
|
|
share/doc/python3.9/_sources/library/email.contentmanager.rst.txt
|
|
share/doc/python3.9/_sources/library/email.encoders.rst.txt
|
|
share/doc/python3.9/_sources/library/email.errors.rst.txt
|
|
share/doc/python3.9/_sources/library/email.examples.rst.txt
|
|
share/doc/python3.9/_sources/library/email.generator.rst.txt
|
|
share/doc/python3.9/_sources/library/email.header.rst.txt
|
|
share/doc/python3.9/_sources/library/email.headerregistry.rst.txt
|
|
share/doc/python3.9/_sources/library/email.iterators.rst.txt
|
|
share/doc/python3.9/_sources/library/email.message.rst.txt
|
|
share/doc/python3.9/_sources/library/email.mime.rst.txt
|
|
share/doc/python3.9/_sources/library/email.parser.rst.txt
|
|
share/doc/python3.9/_sources/library/email.policy.rst.txt
|
|
share/doc/python3.9/_sources/library/email.rst.txt
|
|
share/doc/python3.9/_sources/library/email.utils.rst.txt
|
|
share/doc/python3.9/_sources/library/ensurepip.rst.txt
|
|
share/doc/python3.9/_sources/library/enum.rst.txt
|
|
share/doc/python3.9/_sources/library/errno.rst.txt
|
|
share/doc/python3.9/_sources/library/exceptions.rst.txt
|
|
share/doc/python3.9/_sources/library/faulthandler.rst.txt
|
|
share/doc/python3.9/_sources/library/fcntl.rst.txt
|
|
share/doc/python3.9/_sources/library/filecmp.rst.txt
|
|
share/doc/python3.9/_sources/library/fileformats.rst.txt
|
|
share/doc/python3.9/_sources/library/fileinput.rst.txt
|
|
share/doc/python3.9/_sources/library/filesys.rst.txt
|
|
share/doc/python3.9/_sources/library/fnmatch.rst.txt
|
|
share/doc/python3.9/_sources/library/formatter.rst.txt
|
|
share/doc/python3.9/_sources/library/fractions.rst.txt
|
|
share/doc/python3.9/_sources/library/frameworks.rst.txt
|
|
share/doc/python3.9/_sources/library/ftplib.rst.txt
|
|
share/doc/python3.9/_sources/library/functional.rst.txt
|
|
share/doc/python3.9/_sources/library/functions.rst.txt
|
|
share/doc/python3.9/_sources/library/functools.rst.txt
|
|
share/doc/python3.9/_sources/library/gc.rst.txt
|
|
share/doc/python3.9/_sources/library/getopt.rst.txt
|
|
share/doc/python3.9/_sources/library/getpass.rst.txt
|
|
share/doc/python3.9/_sources/library/gettext.rst.txt
|
|
share/doc/python3.9/_sources/library/glob.rst.txt
|
|
share/doc/python3.9/_sources/library/graphlib.rst.txt
|
|
share/doc/python3.9/_sources/library/grp.rst.txt
|
|
share/doc/python3.9/_sources/library/gzip.rst.txt
|
|
share/doc/python3.9/_sources/library/hashlib.rst.txt
|
|
share/doc/python3.9/_sources/library/heapq.rst.txt
|
|
share/doc/python3.9/_sources/library/hmac.rst.txt
|
|
share/doc/python3.9/_sources/library/html.entities.rst.txt
|
|
share/doc/python3.9/_sources/library/html.parser.rst.txt
|
|
share/doc/python3.9/_sources/library/html.rst.txt
|
|
share/doc/python3.9/_sources/library/http.client.rst.txt
|
|
share/doc/python3.9/_sources/library/http.cookiejar.rst.txt
|
|
share/doc/python3.9/_sources/library/http.cookies.rst.txt
|
|
share/doc/python3.9/_sources/library/http.rst.txt
|
|
share/doc/python3.9/_sources/library/http.server.rst.txt
|
|
share/doc/python3.9/_sources/library/i18n.rst.txt
|
|
share/doc/python3.9/_sources/library/idle.rst.txt
|
|
share/doc/python3.9/_sources/library/imaplib.rst.txt
|
|
share/doc/python3.9/_sources/library/imghdr.rst.txt
|
|
share/doc/python3.9/_sources/library/imp.rst.txt
|
|
share/doc/python3.9/_sources/library/importlib.metadata.rst.txt
|
|
share/doc/python3.9/_sources/library/importlib.rst.txt
|
|
share/doc/python3.9/_sources/library/index.rst.txt
|
|
share/doc/python3.9/_sources/library/inspect.rst.txt
|
|
share/doc/python3.9/_sources/library/internet.rst.txt
|
|
share/doc/python3.9/_sources/library/intro.rst.txt
|
|
share/doc/python3.9/_sources/library/io.rst.txt
|
|
share/doc/python3.9/_sources/library/ipaddress.rst.txt
|
|
share/doc/python3.9/_sources/library/ipc.rst.txt
|
|
share/doc/python3.9/_sources/library/itertools.rst.txt
|
|
share/doc/python3.9/_sources/library/json.rst.txt
|
|
share/doc/python3.9/_sources/library/keyword.rst.txt
|
|
share/doc/python3.9/_sources/library/language.rst.txt
|
|
share/doc/python3.9/_sources/library/linecache.rst.txt
|
|
share/doc/python3.9/_sources/library/locale.rst.txt
|
|
share/doc/python3.9/_sources/library/logging.config.rst.txt
|
|
share/doc/python3.9/_sources/library/logging.handlers.rst.txt
|
|
share/doc/python3.9/_sources/library/logging.rst.txt
|
|
share/doc/python3.9/_sources/library/lzma.rst.txt
|
|
share/doc/python3.9/_sources/library/mailbox.rst.txt
|
|
share/doc/python3.9/_sources/library/mailcap.rst.txt
|
|
share/doc/python3.9/_sources/library/markup.rst.txt
|
|
share/doc/python3.9/_sources/library/marshal.rst.txt
|
|
share/doc/python3.9/_sources/library/math.rst.txt
|
|
share/doc/python3.9/_sources/library/mimetypes.rst.txt
|
|
share/doc/python3.9/_sources/library/misc.rst.txt
|
|
share/doc/python3.9/_sources/library/mm.rst.txt
|
|
share/doc/python3.9/_sources/library/mmap.rst.txt
|
|
share/doc/python3.9/_sources/library/modulefinder.rst.txt
|
|
share/doc/python3.9/_sources/library/modules.rst.txt
|
|
share/doc/python3.9/_sources/library/msilib.rst.txt
|
|
share/doc/python3.9/_sources/library/msvcrt.rst.txt
|
|
share/doc/python3.9/_sources/library/multiprocessing.rst.txt
|
|
share/doc/python3.9/_sources/library/multiprocessing.shared_memory.rst.txt
|
|
share/doc/python3.9/_sources/library/netdata.rst.txt
|
|
share/doc/python3.9/_sources/library/netrc.rst.txt
|
|
share/doc/python3.9/_sources/library/nis.rst.txt
|
|
share/doc/python3.9/_sources/library/nntplib.rst.txt
|
|
share/doc/python3.9/_sources/library/numbers.rst.txt
|
|
share/doc/python3.9/_sources/library/numeric.rst.txt
|
|
share/doc/python3.9/_sources/library/operator.rst.txt
|
|
share/doc/python3.9/_sources/library/optparse.rst.txt
|
|
share/doc/python3.9/_sources/library/os.path.rst.txt
|
|
share/doc/python3.9/_sources/library/os.rst.txt
|
|
share/doc/python3.9/_sources/library/ossaudiodev.rst.txt
|
|
share/doc/python3.9/_sources/library/othergui.rst.txt
|
|
share/doc/python3.9/_sources/library/parser.rst.txt
|
|
share/doc/python3.9/_sources/library/pathlib.rst.txt
|
|
share/doc/python3.9/_sources/library/pdb.rst.txt
|
|
share/doc/python3.9/_sources/library/persistence.rst.txt
|
|
share/doc/python3.9/_sources/library/pickle.rst.txt
|
|
share/doc/python3.9/_sources/library/pickletools.rst.txt
|
|
share/doc/python3.9/_sources/library/pipes.rst.txt
|
|
share/doc/python3.9/_sources/library/pkgutil.rst.txt
|
|
share/doc/python3.9/_sources/library/platform.rst.txt
|
|
share/doc/python3.9/_sources/library/plistlib.rst.txt
|
|
share/doc/python3.9/_sources/library/poplib.rst.txt
|
|
share/doc/python3.9/_sources/library/posix.rst.txt
|
|
share/doc/python3.9/_sources/library/pprint.rst.txt
|
|
share/doc/python3.9/_sources/library/profile.rst.txt
|
|
share/doc/python3.9/_sources/library/pty.rst.txt
|
|
share/doc/python3.9/_sources/library/pwd.rst.txt
|
|
share/doc/python3.9/_sources/library/py_compile.rst.txt
|
|
share/doc/python3.9/_sources/library/pyclbr.rst.txt
|
|
share/doc/python3.9/_sources/library/pydoc.rst.txt
|
|
share/doc/python3.9/_sources/library/pyexpat.rst.txt
|
|
share/doc/python3.9/_sources/library/python.rst.txt
|
|
share/doc/python3.9/_sources/library/queue.rst.txt
|
|
share/doc/python3.9/_sources/library/quopri.rst.txt
|
|
share/doc/python3.9/_sources/library/random.rst.txt
|
|
share/doc/python3.9/_sources/library/re.rst.txt
|
|
share/doc/python3.9/_sources/library/readline.rst.txt
|
|
share/doc/python3.9/_sources/library/reprlib.rst.txt
|
|
share/doc/python3.9/_sources/library/resource.rst.txt
|
|
share/doc/python3.9/_sources/library/rlcompleter.rst.txt
|
|
share/doc/python3.9/_sources/library/runpy.rst.txt
|
|
share/doc/python3.9/_sources/library/sched.rst.txt
|
|
share/doc/python3.9/_sources/library/secrets.rst.txt
|
|
share/doc/python3.9/_sources/library/select.rst.txt
|
|
share/doc/python3.9/_sources/library/selectors.rst.txt
|
|
share/doc/python3.9/_sources/library/shelve.rst.txt
|
|
share/doc/python3.9/_sources/library/shlex.rst.txt
|
|
share/doc/python3.9/_sources/library/shutil.rst.txt
|
|
share/doc/python3.9/_sources/library/signal.rst.txt
|
|
share/doc/python3.9/_sources/library/site.rst.txt
|
|
share/doc/python3.9/_sources/library/smtpd.rst.txt
|
|
share/doc/python3.9/_sources/library/smtplib.rst.txt
|
|
share/doc/python3.9/_sources/library/sndhdr.rst.txt
|
|
share/doc/python3.9/_sources/library/socket.rst.txt
|
|
share/doc/python3.9/_sources/library/socketserver.rst.txt
|
|
share/doc/python3.9/_sources/library/spwd.rst.txt
|
|
share/doc/python3.9/_sources/library/sqlite3.rst.txt
|
|
share/doc/python3.9/_sources/library/ssl.rst.txt
|
|
share/doc/python3.9/_sources/library/stat.rst.txt
|
|
share/doc/python3.9/_sources/library/statistics.rst.txt
|
|
share/doc/python3.9/_sources/library/stdtypes.rst.txt
|
|
share/doc/python3.9/_sources/library/string.rst.txt
|
|
share/doc/python3.9/_sources/library/stringprep.rst.txt
|
|
share/doc/python3.9/_sources/library/struct.rst.txt
|
|
share/doc/python3.9/_sources/library/subprocess.rst.txt
|
|
share/doc/python3.9/_sources/library/sunau.rst.txt
|
|
share/doc/python3.9/_sources/library/superseded.rst.txt
|
|
share/doc/python3.9/_sources/library/symbol.rst.txt
|
|
share/doc/python3.9/_sources/library/symtable.rst.txt
|
|
share/doc/python3.9/_sources/library/sys.rst.txt
|
|
share/doc/python3.9/_sources/library/sysconfig.rst.txt
|
|
share/doc/python3.9/_sources/library/syslog.rst.txt
|
|
share/doc/python3.9/_sources/library/tabnanny.rst.txt
|
|
share/doc/python3.9/_sources/library/tarfile.rst.txt
|
|
share/doc/python3.9/_sources/library/telnetlib.rst.txt
|
|
share/doc/python3.9/_sources/library/tempfile.rst.txt
|
|
share/doc/python3.9/_sources/library/termios.rst.txt
|
|
share/doc/python3.9/_sources/library/test.rst.txt
|
|
share/doc/python3.9/_sources/library/text.rst.txt
|
|
share/doc/python3.9/_sources/library/textwrap.rst.txt
|
|
share/doc/python3.9/_sources/library/threading.rst.txt
|
|
share/doc/python3.9/_sources/library/time.rst.txt
|
|
share/doc/python3.9/_sources/library/timeit.rst.txt
|
|
share/doc/python3.9/_sources/library/tk.rst.txt
|
|
share/doc/python3.9/_sources/library/tkinter.colorchooser.rst.txt
|
|
share/doc/python3.9/_sources/library/tkinter.dnd.rst.txt
|
|
share/doc/python3.9/_sources/library/tkinter.font.rst.txt
|
|
share/doc/python3.9/_sources/library/tkinter.messagebox.rst.txt
|
|
share/doc/python3.9/_sources/library/tkinter.rst.txt
|
|
share/doc/python3.9/_sources/library/tkinter.scrolledtext.rst.txt
|
|
share/doc/python3.9/_sources/library/tkinter.tix.rst.txt
|
|
share/doc/python3.9/_sources/library/tkinter.ttk.rst.txt
|
|
share/doc/python3.9/_sources/library/token.rst.txt
|
|
share/doc/python3.9/_sources/library/tokenize.rst.txt
|
|
share/doc/python3.9/_sources/library/trace.rst.txt
|
|
share/doc/python3.9/_sources/library/traceback.rst.txt
|
|
share/doc/python3.9/_sources/library/tracemalloc.rst.txt
|
|
share/doc/python3.9/_sources/library/tty.rst.txt
|
|
share/doc/python3.9/_sources/library/turtle.rst.txt
|
|
share/doc/python3.9/_sources/library/types.rst.txt
|
|
share/doc/python3.9/_sources/library/typing.rst.txt
|
|
share/doc/python3.9/_sources/library/undoc.rst.txt
|
|
share/doc/python3.9/_sources/library/unicodedata.rst.txt
|
|
share/doc/python3.9/_sources/library/unittest.mock-examples.rst.txt
|
|
share/doc/python3.9/_sources/library/unittest.mock.rst.txt
|
|
share/doc/python3.9/_sources/library/unittest.rst.txt
|
|
share/doc/python3.9/_sources/library/unix.rst.txt
|
|
share/doc/python3.9/_sources/library/urllib.error.rst.txt
|
|
share/doc/python3.9/_sources/library/urllib.parse.rst.txt
|
|
share/doc/python3.9/_sources/library/urllib.request.rst.txt
|
|
share/doc/python3.9/_sources/library/urllib.robotparser.rst.txt
|
|
share/doc/python3.9/_sources/library/urllib.rst.txt
|
|
share/doc/python3.9/_sources/library/uu.rst.txt
|
|
share/doc/python3.9/_sources/library/uuid.rst.txt
|
|
share/doc/python3.9/_sources/library/venv.rst.txt
|
|
share/doc/python3.9/_sources/library/warnings.rst.txt
|
|
share/doc/python3.9/_sources/library/wave.rst.txt
|
|
share/doc/python3.9/_sources/library/weakref.rst.txt
|
|
share/doc/python3.9/_sources/library/webbrowser.rst.txt
|
|
share/doc/python3.9/_sources/library/windows.rst.txt
|
|
share/doc/python3.9/_sources/library/winreg.rst.txt
|
|
share/doc/python3.9/_sources/library/winsound.rst.txt
|
|
share/doc/python3.9/_sources/library/wsgiref.rst.txt
|
|
share/doc/python3.9/_sources/library/xdrlib.rst.txt
|
|
share/doc/python3.9/_sources/library/xml.dom.minidom.rst.txt
|
|
share/doc/python3.9/_sources/library/xml.dom.pulldom.rst.txt
|
|
share/doc/python3.9/_sources/library/xml.dom.rst.txt
|
|
share/doc/python3.9/_sources/library/xml.etree.elementtree.rst.txt
|
|
share/doc/python3.9/_sources/library/xml.rst.txt
|
|
share/doc/python3.9/_sources/library/xml.sax.handler.rst.txt
|
|
share/doc/python3.9/_sources/library/xml.sax.reader.rst.txt
|
|
share/doc/python3.9/_sources/library/xml.sax.rst.txt
|
|
share/doc/python3.9/_sources/library/xml.sax.utils.rst.txt
|
|
share/doc/python3.9/_sources/library/xmlrpc.client.rst.txt
|
|
share/doc/python3.9/_sources/library/xmlrpc.rst.txt
|
|
share/doc/python3.9/_sources/library/xmlrpc.server.rst.txt
|
|
share/doc/python3.9/_sources/library/zipapp.rst.txt
|
|
share/doc/python3.9/_sources/library/zipfile.rst.txt
|
|
share/doc/python3.9/_sources/library/zipimport.rst.txt
|
|
share/doc/python3.9/_sources/library/zlib.rst.txt
|
|
share/doc/python3.9/_sources/library/zoneinfo.rst.txt
|
|
share/doc/python3.9/_sources/license.rst.txt
|
|
share/doc/python3.9/_sources/reference/compound_stmts.rst.txt
|
|
share/doc/python3.9/_sources/reference/datamodel.rst.txt
|
|
share/doc/python3.9/_sources/reference/executionmodel.rst.txt
|
|
share/doc/python3.9/_sources/reference/expressions.rst.txt
|
|
share/doc/python3.9/_sources/reference/grammar.rst.txt
|
|
share/doc/python3.9/_sources/reference/import.rst.txt
|
|
share/doc/python3.9/_sources/reference/index.rst.txt
|
|
share/doc/python3.9/_sources/reference/introduction.rst.txt
|
|
share/doc/python3.9/_sources/reference/lexical_analysis.rst.txt
|
|
share/doc/python3.9/_sources/reference/simple_stmts.rst.txt
|
|
share/doc/python3.9/_sources/reference/toplevel_components.rst.txt
|
|
share/doc/python3.9/_sources/tutorial/appendix.rst.txt
|
|
share/doc/python3.9/_sources/tutorial/appetite.rst.txt
|
|
share/doc/python3.9/_sources/tutorial/classes.rst.txt
|
|
share/doc/python3.9/_sources/tutorial/controlflow.rst.txt
|
|
share/doc/python3.9/_sources/tutorial/datastructures.rst.txt
|
|
share/doc/python3.9/_sources/tutorial/errors.rst.txt
|
|
share/doc/python3.9/_sources/tutorial/floatingpoint.rst.txt
|
|
share/doc/python3.9/_sources/tutorial/index.rst.txt
|
|
share/doc/python3.9/_sources/tutorial/inputoutput.rst.txt
|
|
share/doc/python3.9/_sources/tutorial/interactive.rst.txt
|
|
share/doc/python3.9/_sources/tutorial/interpreter.rst.txt
|
|
share/doc/python3.9/_sources/tutorial/introduction.rst.txt
|
|
share/doc/python3.9/_sources/tutorial/modules.rst.txt
|
|
share/doc/python3.9/_sources/tutorial/stdlib.rst.txt
|
|
share/doc/python3.9/_sources/tutorial/stdlib2.rst.txt
|
|
share/doc/python3.9/_sources/tutorial/venv.rst.txt
|
|
share/doc/python3.9/_sources/tutorial/whatnow.rst.txt
|
|
share/doc/python3.9/_sources/using/cmdline.rst.txt
|
|
share/doc/python3.9/_sources/using/editors.rst.txt
|
|
share/doc/python3.9/_sources/using/index.rst.txt
|
|
share/doc/python3.9/_sources/using/mac.rst.txt
|
|
share/doc/python3.9/_sources/using/unix.rst.txt
|
|
share/doc/python3.9/_sources/using/windows.rst.txt
|
|
share/doc/python3.9/_sources/whatsnew/2.0.rst.txt
|
|
share/doc/python3.9/_sources/whatsnew/2.1.rst.txt
|
|
share/doc/python3.9/_sources/whatsnew/2.2.rst.txt
|
|
share/doc/python3.9/_sources/whatsnew/2.3.rst.txt
|
|
share/doc/python3.9/_sources/whatsnew/2.4.rst.txt
|
|
share/doc/python3.9/_sources/whatsnew/2.5.rst.txt
|
|
share/doc/python3.9/_sources/whatsnew/2.6.rst.txt
|
|
share/doc/python3.9/_sources/whatsnew/2.7.rst.txt
|
|
share/doc/python3.9/_sources/whatsnew/3.0.rst.txt
|
|
share/doc/python3.9/_sources/whatsnew/3.1.rst.txt
|
|
share/doc/python3.9/_sources/whatsnew/3.2.rst.txt
|
|
share/doc/python3.9/_sources/whatsnew/3.3.rst.txt
|
|
share/doc/python3.9/_sources/whatsnew/3.4.rst.txt
|
|
share/doc/python3.9/_sources/whatsnew/3.5.rst.txt
|
|
share/doc/python3.9/_sources/whatsnew/3.6.rst.txt
|
|
share/doc/python3.9/_sources/whatsnew/3.7.rst.txt
|
|
share/doc/python3.9/_sources/whatsnew/3.8.rst.txt
|
|
share/doc/python3.9/_sources/whatsnew/3.9.rst.txt
|
|
share/doc/python3.9/_sources/whatsnew/changelog.rst.txt
|
|
share/doc/python3.9/_sources/whatsnew/index.rst.txt
|
|
share/doc/python3.9/_static/basic.css
|
|
share/doc/python3.9/_static/changelog_search.js
|
|
share/doc/python3.9/_static/classic.css
|
|
share/doc/python3.9/_static/copybutton.js
|
|
share/doc/python3.9/_static/default.css
|
|
share/doc/python3.9/_static/doctools.js
|
|
share/doc/python3.9/_static/documentation_options.js
|
|
share/doc/python3.9/_static/file.png
|
|
share/doc/python3.9/_static/jquery-3.4.1.js
|
|
share/doc/python3.9/_static/jquery.js
|
|
share/doc/python3.9/_static/language_data.js
|
|
share/doc/python3.9/_static/minus.png
|
|
share/doc/python3.9/_static/opensearch.xml
|
|
share/doc/python3.9/_static/plus.png
|
|
share/doc/python3.9/_static/py.png
|
|
share/doc/python3.9/_static/pydoctheme.css
|
|
share/doc/python3.9/_static/pygments.css
|
|
share/doc/python3.9/_static/searchtools.js
|
|
share/doc/python3.9/_static/sidebar.js
|
|
share/doc/python3.9/_static/switchers.js
|
|
share/doc/python3.9/_static/underscore-1.3.1.js
|
|
share/doc/python3.9/_static/underscore.js
|
|
share/doc/python3.9/about.html
|
|
share/doc/python3.9/bugs.html
|
|
share/doc/python3.9/c-api/abstract.html
|
|
share/doc/python3.9/c-api/allocation.html
|
|
share/doc/python3.9/c-api/apiabiversion.html
|
|
share/doc/python3.9/c-api/arg.html
|
|
share/doc/python3.9/c-api/bool.html
|
|
share/doc/python3.9/c-api/buffer.html
|
|
share/doc/python3.9/c-api/bytearray.html
|
|
share/doc/python3.9/c-api/bytes.html
|
|
share/doc/python3.9/c-api/call.html
|
|
share/doc/python3.9/c-api/capsule.html
|
|
share/doc/python3.9/c-api/cell.html
|
|
share/doc/python3.9/c-api/code.html
|
|
share/doc/python3.9/c-api/codec.html
|
|
share/doc/python3.9/c-api/complex.html
|
|
share/doc/python3.9/c-api/concrete.html
|
|
share/doc/python3.9/c-api/contextvars.html
|
|
share/doc/python3.9/c-api/conversion.html
|
|
share/doc/python3.9/c-api/coro.html
|
|
share/doc/python3.9/c-api/datetime.html
|
|
share/doc/python3.9/c-api/descriptor.html
|
|
share/doc/python3.9/c-api/dict.html
|
|
share/doc/python3.9/c-api/exceptions.html
|
|
share/doc/python3.9/c-api/file.html
|
|
share/doc/python3.9/c-api/float.html
|
|
share/doc/python3.9/c-api/function.html
|
|
share/doc/python3.9/c-api/gcsupport.html
|
|
share/doc/python3.9/c-api/gen.html
|
|
share/doc/python3.9/c-api/import.html
|
|
share/doc/python3.9/c-api/index.html
|
|
share/doc/python3.9/c-api/init.html
|
|
share/doc/python3.9/c-api/init_config.html
|
|
share/doc/python3.9/c-api/intro.html
|
|
share/doc/python3.9/c-api/iter.html
|
|
share/doc/python3.9/c-api/iterator.html
|
|
share/doc/python3.9/c-api/list.html
|
|
share/doc/python3.9/c-api/long.html
|
|
share/doc/python3.9/c-api/mapping.html
|
|
share/doc/python3.9/c-api/marshal.html
|
|
share/doc/python3.9/c-api/memory.html
|
|
share/doc/python3.9/c-api/memoryview.html
|
|
share/doc/python3.9/c-api/method.html
|
|
share/doc/python3.9/c-api/module.html
|
|
share/doc/python3.9/c-api/none.html
|
|
share/doc/python3.9/c-api/number.html
|
|
share/doc/python3.9/c-api/objbuffer.html
|
|
share/doc/python3.9/c-api/object.html
|
|
share/doc/python3.9/c-api/objimpl.html
|
|
share/doc/python3.9/c-api/refcounting.html
|
|
share/doc/python3.9/c-api/reflection.html
|
|
share/doc/python3.9/c-api/sequence.html
|
|
share/doc/python3.9/c-api/set.html
|
|
share/doc/python3.9/c-api/slice.html
|
|
share/doc/python3.9/c-api/stable.html
|
|
share/doc/python3.9/c-api/structures.html
|
|
share/doc/python3.9/c-api/sys.html
|
|
share/doc/python3.9/c-api/tuple.html
|
|
share/doc/python3.9/c-api/type.html
|
|
share/doc/python3.9/c-api/typehints.html
|
|
share/doc/python3.9/c-api/typeobj.html
|
|
share/doc/python3.9/c-api/unicode.html
|
|
share/doc/python3.9/c-api/utilities.html
|
|
share/doc/python3.9/c-api/veryhigh.html
|
|
share/doc/python3.9/c-api/weakref.html
|
|
share/doc/python3.9/contents.html
|
|
share/doc/python3.9/copyright.html
|
|
share/doc/python3.9/distributing/index.html
|
|
share/doc/python3.9/distutils/_setuptools_disclaimer.html
|
|
share/doc/python3.9/distutils/apiref.html
|
|
share/doc/python3.9/distutils/builtdist.html
|
|
share/doc/python3.9/distutils/commandref.html
|
|
share/doc/python3.9/distutils/configfile.html
|
|
share/doc/python3.9/distutils/examples.html
|
|
share/doc/python3.9/distutils/extending.html
|
|
share/doc/python3.9/distutils/index.html
|
|
share/doc/python3.9/distutils/introduction.html
|
|
share/doc/python3.9/distutils/packageindex.html
|
|
share/doc/python3.9/distutils/setupscript.html
|
|
share/doc/python3.9/distutils/sourcedist.html
|
|
share/doc/python3.9/distutils/uploading.html
|
|
share/doc/python3.9/download.html
|
|
share/doc/python3.9/extending/building.html
|
|
share/doc/python3.9/extending/embedding.html
|
|
share/doc/python3.9/extending/extending.html
|
|
share/doc/python3.9/extending/index.html
|
|
share/doc/python3.9/extending/newtypes.html
|
|
share/doc/python3.9/extending/newtypes_tutorial.html
|
|
share/doc/python3.9/extending/windows.html
|
|
share/doc/python3.9/faq/design.html
|
|
share/doc/python3.9/faq/extending.html
|
|
share/doc/python3.9/faq/general.html
|
|
share/doc/python3.9/faq/gui.html
|
|
share/doc/python3.9/faq/index.html
|
|
share/doc/python3.9/faq/installed.html
|
|
share/doc/python3.9/faq/library.html
|
|
share/doc/python3.9/faq/programming.html
|
|
share/doc/python3.9/faq/windows.html
|
|
share/doc/python3.9/genindex-A.html
|
|
share/doc/python3.9/genindex-B.html
|
|
share/doc/python3.9/genindex-C.html
|
|
share/doc/python3.9/genindex-D.html
|
|
share/doc/python3.9/genindex-E.html
|
|
share/doc/python3.9/genindex-F.html
|
|
share/doc/python3.9/genindex-G.html
|
|
share/doc/python3.9/genindex-H.html
|
|
share/doc/python3.9/genindex-I.html
|
|
share/doc/python3.9/genindex-J.html
|
|
share/doc/python3.9/genindex-K.html
|
|
share/doc/python3.9/genindex-L.html
|
|
share/doc/python3.9/genindex-M.html
|
|
share/doc/python3.9/genindex-N.html
|
|
share/doc/python3.9/genindex-O.html
|
|
share/doc/python3.9/genindex-P.html
|
|
share/doc/python3.9/genindex-Q.html
|
|
share/doc/python3.9/genindex-R.html
|
|
share/doc/python3.9/genindex-S.html
|
|
share/doc/python3.9/genindex-Symbols.html
|
|
share/doc/python3.9/genindex-T.html
|
|
share/doc/python3.9/genindex-U.html
|
|
share/doc/python3.9/genindex-V.html
|
|
share/doc/python3.9/genindex-W.html
|
|
share/doc/python3.9/genindex-X.html
|
|
share/doc/python3.9/genindex-Y.html
|
|
share/doc/python3.9/genindex-Z.html
|
|
share/doc/python3.9/genindex-_.html
|
|
share/doc/python3.9/genindex-all.html
|
|
share/doc/python3.9/genindex.html
|
|
share/doc/python3.9/glossary.html
|
|
share/doc/python3.9/howto/argparse.html
|
|
share/doc/python3.9/howto/clinic.html
|
|
share/doc/python3.9/howto/cporting.html
|
|
share/doc/python3.9/howto/curses.html
|
|
share/doc/python3.9/howto/descriptor.html
|
|
share/doc/python3.9/howto/functional.html
|
|
share/doc/python3.9/howto/index.html
|
|
share/doc/python3.9/howto/instrumentation.html
|
|
share/doc/python3.9/howto/ipaddress.html
|
|
share/doc/python3.9/howto/logging-cookbook.html
|
|
share/doc/python3.9/howto/logging.html
|
|
share/doc/python3.9/howto/pyporting.html
|
|
share/doc/python3.9/howto/regex.html
|
|
share/doc/python3.9/howto/sockets.html
|
|
share/doc/python3.9/howto/sorting.html
|
|
share/doc/python3.9/howto/unicode.html
|
|
share/doc/python3.9/howto/urllib2.html
|
|
share/doc/python3.9/index.html
|
|
share/doc/python3.9/install/index.html
|
|
share/doc/python3.9/installing/index.html
|
|
share/doc/python3.9/library/2to3.html
|
|
share/doc/python3.9/library/__future__.html
|
|
share/doc/python3.9/library/__main__.html
|
|
share/doc/python3.9/library/_thread.html
|
|
share/doc/python3.9/library/abc.html
|
|
share/doc/python3.9/library/aifc.html
|
|
share/doc/python3.9/library/allos.html
|
|
share/doc/python3.9/library/archiving.html
|
|
share/doc/python3.9/library/argparse.html
|
|
share/doc/python3.9/library/array.html
|
|
share/doc/python3.9/library/ast.html
|
|
share/doc/python3.9/library/asynchat.html
|
|
share/doc/python3.9/library/asyncio-api-index.html
|
|
share/doc/python3.9/library/asyncio-dev.html
|
|
share/doc/python3.9/library/asyncio-eventloop.html
|
|
share/doc/python3.9/library/asyncio-exceptions.html
|
|
share/doc/python3.9/library/asyncio-future.html
|
|
share/doc/python3.9/library/asyncio-llapi-index.html
|
|
share/doc/python3.9/library/asyncio-platforms.html
|
|
share/doc/python3.9/library/asyncio-policy.html
|
|
share/doc/python3.9/library/asyncio-protocol.html
|
|
share/doc/python3.9/library/asyncio-queue.html
|
|
share/doc/python3.9/library/asyncio-stream.html
|
|
share/doc/python3.9/library/asyncio-subprocess.html
|
|
share/doc/python3.9/library/asyncio-sync.html
|
|
share/doc/python3.9/library/asyncio-task.html
|
|
share/doc/python3.9/library/asyncio.html
|
|
share/doc/python3.9/library/asyncore.html
|
|
share/doc/python3.9/library/atexit.html
|
|
share/doc/python3.9/library/audioop.html
|
|
share/doc/python3.9/library/audit_events.html
|
|
share/doc/python3.9/library/base64.html
|
|
share/doc/python3.9/library/bdb.html
|
|
share/doc/python3.9/library/binary.html
|
|
share/doc/python3.9/library/binascii.html
|
|
share/doc/python3.9/library/binhex.html
|
|
share/doc/python3.9/library/bisect.html
|
|
share/doc/python3.9/library/builtins.html
|
|
share/doc/python3.9/library/bz2.html
|
|
share/doc/python3.9/library/calendar.html
|
|
share/doc/python3.9/library/cgi.html
|
|
share/doc/python3.9/library/cgitb.html
|
|
share/doc/python3.9/library/chunk.html
|
|
share/doc/python3.9/library/cmath.html
|
|
share/doc/python3.9/library/cmd.html
|
|
share/doc/python3.9/library/code.html
|
|
share/doc/python3.9/library/codecs.html
|
|
share/doc/python3.9/library/codeop.html
|
|
share/doc/python3.9/library/collections.abc.html
|
|
share/doc/python3.9/library/collections.html
|
|
share/doc/python3.9/library/colorsys.html
|
|
share/doc/python3.9/library/compileall.html
|
|
share/doc/python3.9/library/concurrency.html
|
|
share/doc/python3.9/library/concurrent.futures.html
|
|
share/doc/python3.9/library/concurrent.html
|
|
share/doc/python3.9/library/configparser.html
|
|
share/doc/python3.9/library/constants.html
|
|
share/doc/python3.9/library/contextlib.html
|
|
share/doc/python3.9/library/contextvars.html
|
|
share/doc/python3.9/library/copy.html
|
|
share/doc/python3.9/library/copyreg.html
|
|
share/doc/python3.9/library/crypt.html
|
|
share/doc/python3.9/library/crypto.html
|
|
share/doc/python3.9/library/csv.html
|
|
share/doc/python3.9/library/ctypes.html
|
|
share/doc/python3.9/library/curses.ascii.html
|
|
share/doc/python3.9/library/curses.html
|
|
share/doc/python3.9/library/curses.panel.html
|
|
share/doc/python3.9/library/custominterp.html
|
|
share/doc/python3.9/library/dataclasses.html
|
|
share/doc/python3.9/library/datatypes.html
|
|
share/doc/python3.9/library/datetime.html
|
|
share/doc/python3.9/library/dbm.html
|
|
share/doc/python3.9/library/debug.html
|
|
share/doc/python3.9/library/decimal.html
|
|
share/doc/python3.9/library/development.html
|
|
share/doc/python3.9/library/devmode.html
|
|
share/doc/python3.9/library/dialog.html
|
|
share/doc/python3.9/library/difflib.html
|
|
share/doc/python3.9/library/dis.html
|
|
share/doc/python3.9/library/distribution.html
|
|
share/doc/python3.9/library/distutils.html
|
|
share/doc/python3.9/library/doctest.html
|
|
share/doc/python3.9/library/email.charset.html
|
|
share/doc/python3.9/library/email.compat32-message.html
|
|
share/doc/python3.9/library/email.contentmanager.html
|
|
share/doc/python3.9/library/email.encoders.html
|
|
share/doc/python3.9/library/email.errors.html
|
|
share/doc/python3.9/library/email.examples.html
|
|
share/doc/python3.9/library/email.generator.html
|
|
share/doc/python3.9/library/email.header.html
|
|
share/doc/python3.9/library/email.headerregistry.html
|
|
share/doc/python3.9/library/email.html
|
|
share/doc/python3.9/library/email.iterators.html
|
|
share/doc/python3.9/library/email.message.html
|
|
share/doc/python3.9/library/email.mime.html
|
|
share/doc/python3.9/library/email.parser.html
|
|
share/doc/python3.9/library/email.policy.html
|
|
share/doc/python3.9/library/email.utils.html
|
|
share/doc/python3.9/library/ensurepip.html
|
|
share/doc/python3.9/library/enum.html
|
|
share/doc/python3.9/library/errno.html
|
|
share/doc/python3.9/library/exceptions.html
|
|
share/doc/python3.9/library/faulthandler.html
|
|
share/doc/python3.9/library/fcntl.html
|
|
share/doc/python3.9/library/filecmp.html
|
|
share/doc/python3.9/library/fileformats.html
|
|
share/doc/python3.9/library/fileinput.html
|
|
share/doc/python3.9/library/filesys.html
|
|
share/doc/python3.9/library/fnmatch.html
|
|
share/doc/python3.9/library/formatter.html
|
|
share/doc/python3.9/library/fractions.html
|
|
share/doc/python3.9/library/frameworks.html
|
|
share/doc/python3.9/library/ftplib.html
|
|
share/doc/python3.9/library/functional.html
|
|
share/doc/python3.9/library/functions.html
|
|
share/doc/python3.9/library/functools.html
|
|
share/doc/python3.9/library/gc.html
|
|
share/doc/python3.9/library/getopt.html
|
|
share/doc/python3.9/library/getpass.html
|
|
share/doc/python3.9/library/gettext.html
|
|
share/doc/python3.9/library/glob.html
|
|
share/doc/python3.9/library/graphlib.html
|
|
share/doc/python3.9/library/grp.html
|
|
share/doc/python3.9/library/gzip.html
|
|
share/doc/python3.9/library/hashlib.html
|
|
share/doc/python3.9/library/heapq.html
|
|
share/doc/python3.9/library/hmac.html
|
|
share/doc/python3.9/library/html.entities.html
|
|
share/doc/python3.9/library/html.html
|
|
share/doc/python3.9/library/html.parser.html
|
|
share/doc/python3.9/library/http.client.html
|
|
share/doc/python3.9/library/http.cookiejar.html
|
|
share/doc/python3.9/library/http.cookies.html
|
|
share/doc/python3.9/library/http.html
|
|
share/doc/python3.9/library/http.server.html
|
|
share/doc/python3.9/library/i18n.html
|
|
share/doc/python3.9/library/idle.html
|
|
share/doc/python3.9/library/imaplib.html
|
|
share/doc/python3.9/library/imghdr.html
|
|
share/doc/python3.9/library/imp.html
|
|
share/doc/python3.9/library/importlib.html
|
|
share/doc/python3.9/library/importlib.metadata.html
|
|
share/doc/python3.9/library/index.html
|
|
share/doc/python3.9/library/inspect.html
|
|
share/doc/python3.9/library/internet.html
|
|
share/doc/python3.9/library/intro.html
|
|
share/doc/python3.9/library/io.html
|
|
share/doc/python3.9/library/ipaddress.html
|
|
share/doc/python3.9/library/ipc.html
|
|
share/doc/python3.9/library/itertools.html
|
|
share/doc/python3.9/library/json.html
|
|
share/doc/python3.9/library/keyword.html
|
|
share/doc/python3.9/library/language.html
|
|
share/doc/python3.9/library/linecache.html
|
|
share/doc/python3.9/library/locale.html
|
|
share/doc/python3.9/library/logging.config.html
|
|
share/doc/python3.9/library/logging.handlers.html
|
|
share/doc/python3.9/library/logging.html
|
|
share/doc/python3.9/library/lzma.html
|
|
share/doc/python3.9/library/mailbox.html
|
|
share/doc/python3.9/library/mailcap.html
|
|
share/doc/python3.9/library/markup.html
|
|
share/doc/python3.9/library/marshal.html
|
|
share/doc/python3.9/library/math.html
|
|
share/doc/python3.9/library/mimetypes.html
|
|
share/doc/python3.9/library/misc.html
|
|
share/doc/python3.9/library/mm.html
|
|
share/doc/python3.9/library/mmap.html
|
|
share/doc/python3.9/library/modulefinder.html
|
|
share/doc/python3.9/library/modules.html
|
|
share/doc/python3.9/library/msilib.html
|
|
share/doc/python3.9/library/msvcrt.html
|
|
share/doc/python3.9/library/multiprocessing.html
|
|
share/doc/python3.9/library/multiprocessing.shared_memory.html
|
|
share/doc/python3.9/library/netdata.html
|
|
share/doc/python3.9/library/netrc.html
|
|
share/doc/python3.9/library/nis.html
|
|
share/doc/python3.9/library/nntplib.html
|
|
share/doc/python3.9/library/numbers.html
|
|
share/doc/python3.9/library/numeric.html
|
|
share/doc/python3.9/library/operator.html
|
|
share/doc/python3.9/library/optparse.html
|
|
share/doc/python3.9/library/os.html
|
|
share/doc/python3.9/library/os.path.html
|
|
share/doc/python3.9/library/ossaudiodev.html
|
|
share/doc/python3.9/library/othergui.html
|
|
share/doc/python3.9/library/parser.html
|
|
share/doc/python3.9/library/pathlib.html
|
|
share/doc/python3.9/library/pdb.html
|
|
share/doc/python3.9/library/persistence.html
|
|
share/doc/python3.9/library/pickle.html
|
|
share/doc/python3.9/library/pickletools.html
|
|
share/doc/python3.9/library/pipes.html
|
|
share/doc/python3.9/library/pkgutil.html
|
|
share/doc/python3.9/library/platform.html
|
|
share/doc/python3.9/library/plistlib.html
|
|
share/doc/python3.9/library/poplib.html
|
|
share/doc/python3.9/library/posix.html
|
|
share/doc/python3.9/library/pprint.html
|
|
share/doc/python3.9/library/profile.html
|
|
share/doc/python3.9/library/pty.html
|
|
share/doc/python3.9/library/pwd.html
|
|
share/doc/python3.9/library/py_compile.html
|
|
share/doc/python3.9/library/pyclbr.html
|
|
share/doc/python3.9/library/pydoc.html
|
|
share/doc/python3.9/library/pyexpat.html
|
|
share/doc/python3.9/library/python.html
|
|
share/doc/python3.9/library/queue.html
|
|
share/doc/python3.9/library/quopri.html
|
|
share/doc/python3.9/library/random.html
|
|
share/doc/python3.9/library/re.html
|
|
share/doc/python3.9/library/readline.html
|
|
share/doc/python3.9/library/reprlib.html
|
|
share/doc/python3.9/library/resource.html
|
|
share/doc/python3.9/library/rlcompleter.html
|
|
share/doc/python3.9/library/runpy.html
|
|
share/doc/python3.9/library/sched.html
|
|
share/doc/python3.9/library/secrets.html
|
|
share/doc/python3.9/library/select.html
|
|
share/doc/python3.9/library/selectors.html
|
|
share/doc/python3.9/library/shelve.html
|
|
share/doc/python3.9/library/shlex.html
|
|
share/doc/python3.9/library/shutil.html
|
|
share/doc/python3.9/library/signal.html
|
|
share/doc/python3.9/library/site.html
|
|
share/doc/python3.9/library/smtpd.html
|
|
share/doc/python3.9/library/smtplib.html
|
|
share/doc/python3.9/library/sndhdr.html
|
|
share/doc/python3.9/library/socket.html
|
|
share/doc/python3.9/library/socketserver.html
|
|
share/doc/python3.9/library/spwd.html
|
|
share/doc/python3.9/library/sqlite3.html
|
|
share/doc/python3.9/library/ssl.html
|
|
share/doc/python3.9/library/stat.html
|
|
share/doc/python3.9/library/statistics.html
|
|
share/doc/python3.9/library/stdtypes.html
|
|
share/doc/python3.9/library/string.html
|
|
share/doc/python3.9/library/stringprep.html
|
|
share/doc/python3.9/library/struct.html
|
|
share/doc/python3.9/library/subprocess.html
|
|
share/doc/python3.9/library/sunau.html
|
|
share/doc/python3.9/library/superseded.html
|
|
share/doc/python3.9/library/symbol.html
|
|
share/doc/python3.9/library/symtable.html
|
|
share/doc/python3.9/library/sys.html
|
|
share/doc/python3.9/library/sysconfig.html
|
|
share/doc/python3.9/library/syslog.html
|
|
share/doc/python3.9/library/tabnanny.html
|
|
share/doc/python3.9/library/tarfile.html
|
|
share/doc/python3.9/library/telnetlib.html
|
|
share/doc/python3.9/library/tempfile.html
|
|
share/doc/python3.9/library/termios.html
|
|
share/doc/python3.9/library/test.html
|
|
share/doc/python3.9/library/text.html
|
|
share/doc/python3.9/library/textwrap.html
|
|
share/doc/python3.9/library/threading.html
|
|
share/doc/python3.9/library/time.html
|
|
share/doc/python3.9/library/timeit.html
|
|
share/doc/python3.9/library/tk.html
|
|
share/doc/python3.9/library/tkinter.colorchooser.html
|
|
share/doc/python3.9/library/tkinter.dnd.html
|
|
share/doc/python3.9/library/tkinter.font.html
|
|
share/doc/python3.9/library/tkinter.html
|
|
share/doc/python3.9/library/tkinter.messagebox.html
|
|
share/doc/python3.9/library/tkinter.scrolledtext.html
|
|
share/doc/python3.9/library/tkinter.tix.html
|
|
share/doc/python3.9/library/tkinter.ttk.html
|
|
share/doc/python3.9/library/token.html
|
|
share/doc/python3.9/library/tokenize.html
|
|
share/doc/python3.9/library/trace.html
|
|
share/doc/python3.9/library/traceback.html
|
|
share/doc/python3.9/library/tracemalloc.html
|
|
share/doc/python3.9/library/tty.html
|
|
share/doc/python3.9/library/turtle.html
|
|
share/doc/python3.9/library/types.html
|
|
share/doc/python3.9/library/typing.html
|
|
share/doc/python3.9/library/undoc.html
|
|
share/doc/python3.9/library/unicodedata.html
|
|
share/doc/python3.9/library/unittest.html
|
|
share/doc/python3.9/library/unittest.mock-examples.html
|
|
share/doc/python3.9/library/unittest.mock.html
|
|
share/doc/python3.9/library/unix.html
|
|
share/doc/python3.9/library/urllib.error.html
|
|
share/doc/python3.9/library/urllib.html
|
|
share/doc/python3.9/library/urllib.parse.html
|
|
share/doc/python3.9/library/urllib.request.html
|
|
share/doc/python3.9/library/urllib.robotparser.html
|
|
share/doc/python3.9/library/uu.html
|
|
share/doc/python3.9/library/uuid.html
|
|
share/doc/python3.9/library/venv.html
|
|
share/doc/python3.9/library/warnings.html
|
|
share/doc/python3.9/library/wave.html
|
|
share/doc/python3.9/library/weakref.html
|
|
share/doc/python3.9/library/webbrowser.html
|
|
share/doc/python3.9/library/windows.html
|
|
share/doc/python3.9/library/winreg.html
|
|
share/doc/python3.9/library/winsound.html
|
|
share/doc/python3.9/library/wsgiref.html
|
|
share/doc/python3.9/library/xdrlib.html
|
|
share/doc/python3.9/library/xml.dom.html
|
|
share/doc/python3.9/library/xml.dom.minidom.html
|
|
share/doc/python3.9/library/xml.dom.pulldom.html
|
|
share/doc/python3.9/library/xml.etree.elementtree.html
|
|
share/doc/python3.9/library/xml.html
|
|
share/doc/python3.9/library/xml.sax.handler.html
|
|
share/doc/python3.9/library/xml.sax.html
|
|
share/doc/python3.9/library/xml.sax.reader.html
|
|
share/doc/python3.9/library/xml.sax.utils.html
|
|
share/doc/python3.9/library/xmlrpc.client.html
|
|
share/doc/python3.9/library/xmlrpc.html
|
|
share/doc/python3.9/library/xmlrpc.server.html
|
|
share/doc/python3.9/library/zipapp.html
|
|
share/doc/python3.9/library/zipfile.html
|
|
share/doc/python3.9/library/zipimport.html
|
|
share/doc/python3.9/library/zlib.html
|
|
share/doc/python3.9/library/zoneinfo.html
|
|
share/doc/python3.9/license.html
|
|
share/doc/python3.9/objects.inv
|
|
share/doc/python3.9/py-modindex.html
|
|
share/doc/python3.9/reference/compound_stmts.html
|
|
share/doc/python3.9/reference/datamodel.html
|
|
share/doc/python3.9/reference/executionmodel.html
|
|
share/doc/python3.9/reference/expressions.html
|
|
share/doc/python3.9/reference/grammar.html
|
|
share/doc/python3.9/reference/import.html
|
|
share/doc/python3.9/reference/index.html
|
|
share/doc/python3.9/reference/introduction.html
|
|
share/doc/python3.9/reference/lexical_analysis.html
|
|
share/doc/python3.9/reference/simple_stmts.html
|
|
share/doc/python3.9/reference/toplevel_components.html
|
|
share/doc/python3.9/search.html
|
|
share/doc/python3.9/searchindex.js
|
|
share/doc/python3.9/tutorial/appendix.html
|
|
share/doc/python3.9/tutorial/appetite.html
|
|
share/doc/python3.9/tutorial/classes.html
|
|
share/doc/python3.9/tutorial/controlflow.html
|
|
share/doc/python3.9/tutorial/datastructures.html
|
|
share/doc/python3.9/tutorial/errors.html
|
|
share/doc/python3.9/tutorial/floatingpoint.html
|
|
share/doc/python3.9/tutorial/index.html
|
|
share/doc/python3.9/tutorial/inputoutput.html
|
|
share/doc/python3.9/tutorial/interactive.html
|
|
share/doc/python3.9/tutorial/interpreter.html
|
|
share/doc/python3.9/tutorial/introduction.html
|
|
share/doc/python3.9/tutorial/modules.html
|
|
share/doc/python3.9/tutorial/stdlib.html
|
|
share/doc/python3.9/tutorial/stdlib2.html
|
|
share/doc/python3.9/tutorial/venv.html
|
|
share/doc/python3.9/tutorial/whatnow.html
|
|
share/doc/python3.9/using/cmdline.html
|
|
share/doc/python3.9/using/editors.html
|
|
share/doc/python3.9/using/index.html
|
|
share/doc/python3.9/using/mac.html
|
|
share/doc/python3.9/using/unix.html
|
|
share/doc/python3.9/using/windows.html
|
|
share/doc/python3.9/whatsnew/2.0.html
|
|
share/doc/python3.9/whatsnew/2.1.html
|
|
share/doc/python3.9/whatsnew/2.2.html
|
|
share/doc/python3.9/whatsnew/2.3.html
|
|
share/doc/python3.9/whatsnew/2.4.html
|
|
share/doc/python3.9/whatsnew/2.5.html
|
|
share/doc/python3.9/whatsnew/2.6.html
|
|
share/doc/python3.9/whatsnew/2.7.html
|
|
share/doc/python3.9/whatsnew/3.0.html
|
|
share/doc/python3.9/whatsnew/3.1.html
|
|
share/doc/python3.9/whatsnew/3.2.html
|
|
share/doc/python3.9/whatsnew/3.3.html
|
|
share/doc/python3.9/whatsnew/3.4.html
|
|
share/doc/python3.9/whatsnew/3.5.html
|
|
share/doc/python3.9/whatsnew/3.6.html
|
|
share/doc/python3.9/whatsnew/3.7.html
|
|
share/doc/python3.9/whatsnew/3.8.html
|
|
share/doc/python3.9/whatsnew/3.9.html
|
|
share/doc/python3.9/whatsnew/changelog.html
|
|
share/doc/python3.9/whatsnew/index.html
|