55680ba214
Python 3.8.4 final Security bpo-41162: Audit hooks are now cleared later during finalization to avoid missing events. bpo-29778: Ensure python3.dll is loaded from correct locations when Python is embedded (CVE-2020-15523). Core and Builtins bpo-41247: Always cache the running loop holder when running asyncio.set_running_loop. bpo-41252: Fix incorrect refcounting in _ssl.c’s _servername_callback(). bpo-41218: Python 3.8.3 had a regression where compiling with ast.PyCF_ALLOW_TOP_LEVEL_AWAIT would aggressively mark list comprehension with CO_COROUTINE. Now only list comprehension making use of async/await will tagged as so. bpo-41175: Guard against a NULL pointer dereference within bytearrayobject triggered by the bytearray() + bytearray() operation. bpo-39960: The “hackcheck” that prevents sneaking around a type’s __setattr__() by calling the superclass method was rewritten to allow C implemented heap types. Library bpo-41235: Fix the error handling in ssl.SSLContext.load_dh_params(). bpo-41193: The write_history() atexit function of the readline completer now ignores any OSError to ignore error if the filesystem is read-only, instead of only ignoring FileNotFoundError and PermissionError. bpo-41043: Fixed the use of glob() in the stdlib: literal part of the path is now always correctly escaped. bpo-39384: Fixed email.contentmanager to allow set_content() to set a null string. IDLE bpo-37765: Add keywords to module name completion list. Rewrite Completions section of IDLE doc. bpo-41152: The encoding of stdin, stdout and stderr in IDLE is now always UTF-8. Python 3.8.4 release candidate 1 Security bpo-41004: The __hash__() methods of ipaddress.IPv4Interface and ipaddress.IPv6Interface incorrectly generated constant hash values of 32 and 128 respectively. This resulted in always causing hash collisions. The fix uses hash() to generate hash values for the tuple of (address, mask length, network address). bpo-39073: Disallow CR or LF in email.headerregistry.Address arguments to guard against header injection attacks. Core and Builtins bpo-41094: Fix decoding errors with audit when open files with non-ASCII names on non-UTF-8 locale. bpo-41056: Fixes a reference to deallocated stack space during startup when constructing sys.path involving a relative symlink when code was supplied via -c. (discovered via Coverity) bpo-35975: Stefan Behnel reported that cf_feature_version is used even when PyCF_ONLY_AST is not set. This is against the intention and against the documented behavior, so it’s been fixed. bpo-40957: Fix refleak in _Py_fopen_obj() when PySys_Audit() fails bpo-40870: Raise ValueError when validating custom AST’s where the constants True, False and None are used within a ast.Name node. bpo-40826: Fix GIL usage in PyOS_Readline(): lock the GIL to set an exception and pass the Python thread state when checking if there is a pending signal. bpo-40824: Unexpected errors in calling the __iter__ method are no longer masked by TypeError in the in operator and functions contains(), indexOf() and countOf() of the operator module. bpo-40663: Correctly generate annotations where parentheses are omitted but required (e.g: Type[(str, int, *other))]. Library bpo-41138: Fixed the trace module CLI for Python source files with non-UTF-8 encoding. bpo-31938: Fix default-value signatures of several functions in the select module - by Anthony Sottile. bpo-41068: Fixed reading files with non-ASCII names from ZIP archive directly after writing them. bpo-41058: pdb.find_function() now correctly determines the source file encoding. bpo-41056: Fix a NULL pointer dereference within the ssl module during a MemoryError in the keylog callback. (discovered by Coverity) bpo-41048: mimetypes.read_mime_types() function reads the rule file using UTF-8 encoding, not the locale encoding. Patch by Srinivas Reddy Thatiparthy. bpo-40448: ensurepip now disables the use of pip cache when installing the bundled versions of pip and setuptools. Patch by Krzysztof Konopko. bpo-40855: The standard deviation and variance functions in the statistics module were ignoring their mu and xbar arguments. bpo-40807: Stop codeop._maybe_compile, used by code.InteractiveInterpreter (and IDLE). from from emitting each warning three times. bpo-40834: Fix truncate when sending str object with_xxsubinterpreters.channel_send. bpo-38488: Update ensurepip to install pip 20.1.1 and setuptools 47.1.0. bpo-40767: webbrowser now properly finds the default browser in pure Wayland systems by checking the WAYLAND_DISPLAY environment variable. Patch contributed by Jérémy Attali. bpo-40795: ctypes module: If ctypes fails to convert the result of a callback or if a ctypes callback function raises an exception, sys.unraisablehook is now called with an exception set. Previously, the error was logged into stderr by PyErr_Print(). bpo-30008: Fix ssl code to be compatible with OpenSSL 1.1.x builds that use no-deprecated and --api=1.1.0. bpo-40614: ast.parse() will not parse self documenting expressions in f-strings when passed feature_version is less than (3, 8). bpo-40626: Add h5 file extension as MIME Type application/x-hdf5, as per HDF Group recommendation for HDF5 formatted data files. Patch contributed by Mark Schwab. bpo-25872: linecache could crash with a KeyError when accessed from multiple threads. Fix by Michael Graczyk. bpo-40597: If text content lines are longer than policy.max_line_length, always use a content-encoding to make sure they are wrapped. bpo-40515: The ssl and hashlib modules now actively check that OpenSSL is build with thread support. Python 3.7.0 made thread support mandatory and no longer works safely with a no-thread builds. bpo-13097: ctypes now raises an ArgumentError when a callback is invoked with more than 1024 arguments. bpo-40457: The ssl module now support OpenSSL builds without TLS 1.0 and 1.1 methods. bpo-39830: Add zipfile.Path to __all__ in the zipfile module. bpo-40025: Raise TypeError when _generate_next_value_ is defined after members. Patch by Ethan Onstott. bpo-39244: Fixed multiprocessing.context.get_all_start_methods to properly return the default method first on macOS. bpo-39040: Fix parsing of invalid mime headers parameters by collapsing whitespace between encoded words in a bare-quote-string. bpo-35714: struct.error is now raised if there is a null character in a struct format string. bpo-36290: AST nodes are now raising TypeError on conflicting keyword arguments. Patch contributed by Rémi Lapeyre. bpo-29620: assertWarns() no longer raises a RuntimeException when accessing a module’s __warningregistry__ causes importation of a new module, or when a new module is imported in another thread. Patch by Kernc. bpo-34226: Fix cgi.parse_multipart without content_length. Patch by Roger Duran Tests bpo-41085: Fix integer overflow in the array.array.index() method on 64-bit Windows for index larger than 2**31. bpo-38377: On Linux, skip tests using multiprocessing if the current user cannot create a file in /dev/shm/ directory. Add the skip_if_broken_multiprocessing_synchronize() function to the test.support module. bpo-41009: Fix use of support.require_{linux|mac|freebsd}_version() decorators as class decorator. bpo-41003: Fix test_copyreg when numpy is installed: test.pickletester now saves/restores warnings filters when importing numpy, to ignore filters installed by numpy. bpo-40964: Disable remote imaplib tests, host cyrus.andrew.cmu.edu is blocking incoming connections. bpo-40055: distutils.tests now saves/restores warnings filters to leave them unchanged. Importing tests imports docutils which imports pkg_resources which adds a warnings filter. bpo-34401: Make test_gdb properly run on HP-UX. Patch by Michael Osipov. Build bpo-40204: Pin Sphinx version to 2.3.1 in Doc/Makefile. bpo-40653: Move _dirnameW out of HAVE_SYMLINK to fix a potential compiling issue. Windows bpo-41074: Fixed support of non-ASCII names in functions msilib.OpenDatabase() and msilib.init_database() and non-ASCII SQL in method msilib.Database.OpenView(). bpo-40164: Updates Windows OpenSSL to 1.1.1g bpo-39631: Changes the registered MIME type for .py files on Windows to text/x-python instead of text/plain. bpo-40677: Manually define IO_REPARSE_TAG_APPEXECLINK in case some old Windows SDK doesn’t have it. bpo-40650: Include winsock2.h in pytime.c for timeval. bpo-39148: Add IPv6 support to asyncio datagram endpoints in ProactorEventLoop. Change the raised exception for unknown address families to ValueError as it’s not coming from Windows API. macOS bpo-39580: Avoid opening Finder window if running installer from the command line. Patch contributed by Rick Heil. bpo-41100: Fix configure error when building on macOS 11. Note that the current Python release was released shortly after the first developer preview of macOS 11 (Big Sur); there are other known issues with building and running on the developer preview. Big Sur is expected to be fully supported in a future bugfix release of Python 3.8.x and with 3.9.0. bpo-41005: fixed an XDG settings issue not allowing macos to open browser in webbrowser.py bpo-40741: Update macOS installer to use SQLite 3.32.2. IDLE bpo-41144: Make Open Module open a special module such as os.path. bpo-39885: Make context menu Cut and Copy work again when right-clicking within a selection. bpo-40723: Make test_idle pass when run after import. Tools/Demos bpo-40479: Update multissltest helper to test with latest OpenSSL 1.0.2, 1.1.0, 1.1.1, and 3.0.0-alpha. bpo-40163: Fix multissltest tool. OpenSSL has changed download URL for old releases. The multissltest tool now tries to download from current and old download URLs.
1026 lines
47 KiB
Text
1026 lines
47 KiB
Text
@comment $NetBSD: PLIST,v 1.5 2020/07/14 19:12:31 adam Exp $
|
|
share/doc/python3.8/.buildinfo
|
|
share/doc/python3.8/_downloads/7114a7f33dfa666402f17110163f1e34/tzinfo_examples.py
|
|
share/doc/python3.8/_images/hashlib-blake2-tree.png
|
|
share/doc/python3.8/_images/logging_flow.png
|
|
share/doc/python3.8/_images/pathlib-inheritance.png
|
|
share/doc/python3.8/_images/turtle-star.png
|
|
share/doc/python3.8/_images/win_installer.png
|
|
share/doc/python3.8/_sources/about.rst.txt
|
|
share/doc/python3.8/_sources/bugs.rst.txt
|
|
share/doc/python3.8/_sources/c-api/abstract.rst.txt
|
|
share/doc/python3.8/_sources/c-api/allocation.rst.txt
|
|
share/doc/python3.8/_sources/c-api/apiabiversion.rst.txt
|
|
share/doc/python3.8/_sources/c-api/arg.rst.txt
|
|
share/doc/python3.8/_sources/c-api/bool.rst.txt
|
|
share/doc/python3.8/_sources/c-api/buffer.rst.txt
|
|
share/doc/python3.8/_sources/c-api/bytearray.rst.txt
|
|
share/doc/python3.8/_sources/c-api/bytes.rst.txt
|
|
share/doc/python3.8/_sources/c-api/capsule.rst.txt
|
|
share/doc/python3.8/_sources/c-api/cell.rst.txt
|
|
share/doc/python3.8/_sources/c-api/code.rst.txt
|
|
share/doc/python3.8/_sources/c-api/codec.rst.txt
|
|
share/doc/python3.8/_sources/c-api/complex.rst.txt
|
|
share/doc/python3.8/_sources/c-api/concrete.rst.txt
|
|
share/doc/python3.8/_sources/c-api/contextvars.rst.txt
|
|
share/doc/python3.8/_sources/c-api/conversion.rst.txt
|
|
share/doc/python3.8/_sources/c-api/coro.rst.txt
|
|
share/doc/python3.8/_sources/c-api/datetime.rst.txt
|
|
share/doc/python3.8/_sources/c-api/descriptor.rst.txt
|
|
share/doc/python3.8/_sources/c-api/dict.rst.txt
|
|
share/doc/python3.8/_sources/c-api/exceptions.rst.txt
|
|
share/doc/python3.8/_sources/c-api/file.rst.txt
|
|
share/doc/python3.8/_sources/c-api/float.rst.txt
|
|
share/doc/python3.8/_sources/c-api/function.rst.txt
|
|
share/doc/python3.8/_sources/c-api/gcsupport.rst.txt
|
|
share/doc/python3.8/_sources/c-api/gen.rst.txt
|
|
share/doc/python3.8/_sources/c-api/import.rst.txt
|
|
share/doc/python3.8/_sources/c-api/index.rst.txt
|
|
share/doc/python3.8/_sources/c-api/init.rst.txt
|
|
share/doc/python3.8/_sources/c-api/init_config.rst.txt
|
|
share/doc/python3.8/_sources/c-api/intro.rst.txt
|
|
share/doc/python3.8/_sources/c-api/iter.rst.txt
|
|
share/doc/python3.8/_sources/c-api/iterator.rst.txt
|
|
share/doc/python3.8/_sources/c-api/list.rst.txt
|
|
share/doc/python3.8/_sources/c-api/long.rst.txt
|
|
share/doc/python3.8/_sources/c-api/mapping.rst.txt
|
|
share/doc/python3.8/_sources/c-api/marshal.rst.txt
|
|
share/doc/python3.8/_sources/c-api/memory.rst.txt
|
|
share/doc/python3.8/_sources/c-api/memoryview.rst.txt
|
|
share/doc/python3.8/_sources/c-api/method.rst.txt
|
|
share/doc/python3.8/_sources/c-api/module.rst.txt
|
|
share/doc/python3.8/_sources/c-api/none.rst.txt
|
|
share/doc/python3.8/_sources/c-api/number.rst.txt
|
|
share/doc/python3.8/_sources/c-api/objbuffer.rst.txt
|
|
share/doc/python3.8/_sources/c-api/object.rst.txt
|
|
share/doc/python3.8/_sources/c-api/objimpl.rst.txt
|
|
share/doc/python3.8/_sources/c-api/refcounting.rst.txt
|
|
share/doc/python3.8/_sources/c-api/reflection.rst.txt
|
|
share/doc/python3.8/_sources/c-api/sequence.rst.txt
|
|
share/doc/python3.8/_sources/c-api/set.rst.txt
|
|
share/doc/python3.8/_sources/c-api/slice.rst.txt
|
|
share/doc/python3.8/_sources/c-api/stable.rst.txt
|
|
share/doc/python3.8/_sources/c-api/structures.rst.txt
|
|
share/doc/python3.8/_sources/c-api/sys.rst.txt
|
|
share/doc/python3.8/_sources/c-api/tuple.rst.txt
|
|
share/doc/python3.8/_sources/c-api/type.rst.txt
|
|
share/doc/python3.8/_sources/c-api/typeobj.rst.txt
|
|
share/doc/python3.8/_sources/c-api/unicode.rst.txt
|
|
share/doc/python3.8/_sources/c-api/utilities.rst.txt
|
|
share/doc/python3.8/_sources/c-api/veryhigh.rst.txt
|
|
share/doc/python3.8/_sources/c-api/weakref.rst.txt
|
|
share/doc/python3.8/_sources/contents.rst.txt
|
|
share/doc/python3.8/_sources/copyright.rst.txt
|
|
share/doc/python3.8/_sources/distributing/index.rst.txt
|
|
share/doc/python3.8/_sources/distutils/_setuptools_disclaimer.rst.txt
|
|
share/doc/python3.8/_sources/distutils/apiref.rst.txt
|
|
share/doc/python3.8/_sources/distutils/builtdist.rst.txt
|
|
share/doc/python3.8/_sources/distutils/commandref.rst.txt
|
|
share/doc/python3.8/_sources/distutils/configfile.rst.txt
|
|
share/doc/python3.8/_sources/distutils/examples.rst.txt
|
|
share/doc/python3.8/_sources/distutils/extending.rst.txt
|
|
share/doc/python3.8/_sources/distutils/index.rst.txt
|
|
share/doc/python3.8/_sources/distutils/introduction.rst.txt
|
|
share/doc/python3.8/_sources/distutils/packageindex.rst.txt
|
|
share/doc/python3.8/_sources/distutils/setupscript.rst.txt
|
|
share/doc/python3.8/_sources/distutils/sourcedist.rst.txt
|
|
share/doc/python3.8/_sources/distutils/uploading.rst.txt
|
|
share/doc/python3.8/_sources/extending/building.rst.txt
|
|
share/doc/python3.8/_sources/extending/embedding.rst.txt
|
|
share/doc/python3.8/_sources/extending/extending.rst.txt
|
|
share/doc/python3.8/_sources/extending/index.rst.txt
|
|
share/doc/python3.8/_sources/extending/newtypes.rst.txt
|
|
share/doc/python3.8/_sources/extending/newtypes_tutorial.rst.txt
|
|
share/doc/python3.8/_sources/extending/windows.rst.txt
|
|
share/doc/python3.8/_sources/faq/design.rst.txt
|
|
share/doc/python3.8/_sources/faq/extending.rst.txt
|
|
share/doc/python3.8/_sources/faq/general.rst.txt
|
|
share/doc/python3.8/_sources/faq/gui.rst.txt
|
|
share/doc/python3.8/_sources/faq/index.rst.txt
|
|
share/doc/python3.8/_sources/faq/installed.rst.txt
|
|
share/doc/python3.8/_sources/faq/library.rst.txt
|
|
share/doc/python3.8/_sources/faq/programming.rst.txt
|
|
share/doc/python3.8/_sources/faq/windows.rst.txt
|
|
share/doc/python3.8/_sources/glossary.rst.txt
|
|
share/doc/python3.8/_sources/howto/argparse.rst.txt
|
|
share/doc/python3.8/_sources/howto/clinic.rst.txt
|
|
share/doc/python3.8/_sources/howto/cporting.rst.txt
|
|
share/doc/python3.8/_sources/howto/curses.rst.txt
|
|
share/doc/python3.8/_sources/howto/descriptor.rst.txt
|
|
share/doc/python3.8/_sources/howto/functional.rst.txt
|
|
share/doc/python3.8/_sources/howto/index.rst.txt
|
|
share/doc/python3.8/_sources/howto/instrumentation.rst.txt
|
|
share/doc/python3.8/_sources/howto/ipaddress.rst.txt
|
|
share/doc/python3.8/_sources/howto/logging-cookbook.rst.txt
|
|
share/doc/python3.8/_sources/howto/logging.rst.txt
|
|
share/doc/python3.8/_sources/howto/pyporting.rst.txt
|
|
share/doc/python3.8/_sources/howto/regex.rst.txt
|
|
share/doc/python3.8/_sources/howto/sockets.rst.txt
|
|
share/doc/python3.8/_sources/howto/sorting.rst.txt
|
|
share/doc/python3.8/_sources/howto/unicode.rst.txt
|
|
share/doc/python3.8/_sources/howto/urllib2.rst.txt
|
|
share/doc/python3.8/_sources/install/index.rst.txt
|
|
share/doc/python3.8/_sources/installing/index.rst.txt
|
|
share/doc/python3.8/_sources/library/2to3.rst.txt
|
|
share/doc/python3.8/_sources/library/__future__.rst.txt
|
|
share/doc/python3.8/_sources/library/__main__.rst.txt
|
|
share/doc/python3.8/_sources/library/_dummy_thread.rst.txt
|
|
share/doc/python3.8/_sources/library/_thread.rst.txt
|
|
share/doc/python3.8/_sources/library/abc.rst.txt
|
|
share/doc/python3.8/_sources/library/aifc.rst.txt
|
|
share/doc/python3.8/_sources/library/allos.rst.txt
|
|
share/doc/python3.8/_sources/library/archiving.rst.txt
|
|
share/doc/python3.8/_sources/library/argparse.rst.txt
|
|
share/doc/python3.8/_sources/library/array.rst.txt
|
|
share/doc/python3.8/_sources/library/ast.rst.txt
|
|
share/doc/python3.8/_sources/library/asynchat.rst.txt
|
|
share/doc/python3.8/_sources/library/asyncio-api-index.rst.txt
|
|
share/doc/python3.8/_sources/library/asyncio-dev.rst.txt
|
|
share/doc/python3.8/_sources/library/asyncio-eventloop.rst.txt
|
|
share/doc/python3.8/_sources/library/asyncio-exceptions.rst.txt
|
|
share/doc/python3.8/_sources/library/asyncio-future.rst.txt
|
|
share/doc/python3.8/_sources/library/asyncio-llapi-index.rst.txt
|
|
share/doc/python3.8/_sources/library/asyncio-platforms.rst.txt
|
|
share/doc/python3.8/_sources/library/asyncio-policy.rst.txt
|
|
share/doc/python3.8/_sources/library/asyncio-protocol.rst.txt
|
|
share/doc/python3.8/_sources/library/asyncio-queue.rst.txt
|
|
share/doc/python3.8/_sources/library/asyncio-stream.rst.txt
|
|
share/doc/python3.8/_sources/library/asyncio-subprocess.rst.txt
|
|
share/doc/python3.8/_sources/library/asyncio-sync.rst.txt
|
|
share/doc/python3.8/_sources/library/asyncio-task.rst.txt
|
|
share/doc/python3.8/_sources/library/asyncio.rst.txt
|
|
share/doc/python3.8/_sources/library/asyncore.rst.txt
|
|
share/doc/python3.8/_sources/library/atexit.rst.txt
|
|
share/doc/python3.8/_sources/library/audioop.rst.txt
|
|
share/doc/python3.8/_sources/library/audit_events.rst.txt
|
|
share/doc/python3.8/_sources/library/base64.rst.txt
|
|
share/doc/python3.8/_sources/library/bdb.rst.txt
|
|
share/doc/python3.8/_sources/library/binary.rst.txt
|
|
share/doc/python3.8/_sources/library/binascii.rst.txt
|
|
share/doc/python3.8/_sources/library/binhex.rst.txt
|
|
share/doc/python3.8/_sources/library/bisect.rst.txt
|
|
share/doc/python3.8/_sources/library/builtins.rst.txt
|
|
share/doc/python3.8/_sources/library/bz2.rst.txt
|
|
share/doc/python3.8/_sources/library/calendar.rst.txt
|
|
share/doc/python3.8/_sources/library/cgi.rst.txt
|
|
share/doc/python3.8/_sources/library/cgitb.rst.txt
|
|
share/doc/python3.8/_sources/library/chunk.rst.txt
|
|
share/doc/python3.8/_sources/library/cmath.rst.txt
|
|
share/doc/python3.8/_sources/library/cmd.rst.txt
|
|
share/doc/python3.8/_sources/library/code.rst.txt
|
|
share/doc/python3.8/_sources/library/codecs.rst.txt
|
|
share/doc/python3.8/_sources/library/codeop.rst.txt
|
|
share/doc/python3.8/_sources/library/collections.abc.rst.txt
|
|
share/doc/python3.8/_sources/library/collections.rst.txt
|
|
share/doc/python3.8/_sources/library/colorsys.rst.txt
|
|
share/doc/python3.8/_sources/library/compileall.rst.txt
|
|
share/doc/python3.8/_sources/library/concurrency.rst.txt
|
|
share/doc/python3.8/_sources/library/concurrent.futures.rst.txt
|
|
share/doc/python3.8/_sources/library/concurrent.rst.txt
|
|
share/doc/python3.8/_sources/library/configparser.rst.txt
|
|
share/doc/python3.8/_sources/library/constants.rst.txt
|
|
share/doc/python3.8/_sources/library/contextlib.rst.txt
|
|
share/doc/python3.8/_sources/library/contextvars.rst.txt
|
|
share/doc/python3.8/_sources/library/copy.rst.txt
|
|
share/doc/python3.8/_sources/library/copyreg.rst.txt
|
|
share/doc/python3.8/_sources/library/crypt.rst.txt
|
|
share/doc/python3.8/_sources/library/crypto.rst.txt
|
|
share/doc/python3.8/_sources/library/csv.rst.txt
|
|
share/doc/python3.8/_sources/library/ctypes.rst.txt
|
|
share/doc/python3.8/_sources/library/curses.ascii.rst.txt
|
|
share/doc/python3.8/_sources/library/curses.panel.rst.txt
|
|
share/doc/python3.8/_sources/library/curses.rst.txt
|
|
share/doc/python3.8/_sources/library/custominterp.rst.txt
|
|
share/doc/python3.8/_sources/library/dataclasses.rst.txt
|
|
share/doc/python3.8/_sources/library/datatypes.rst.txt
|
|
share/doc/python3.8/_sources/library/datetime.rst.txt
|
|
share/doc/python3.8/_sources/library/dbm.rst.txt
|
|
share/doc/python3.8/_sources/library/debug.rst.txt
|
|
share/doc/python3.8/_sources/library/decimal.rst.txt
|
|
share/doc/python3.8/_sources/library/development.rst.txt
|
|
share/doc/python3.8/_sources/library/difflib.rst.txt
|
|
share/doc/python3.8/_sources/library/dis.rst.txt
|
|
share/doc/python3.8/_sources/library/distribution.rst.txt
|
|
share/doc/python3.8/_sources/library/distutils.rst.txt
|
|
share/doc/python3.8/_sources/library/doctest.rst.txt
|
|
share/doc/python3.8/_sources/library/dummy_threading.rst.txt
|
|
share/doc/python3.8/_sources/library/email.charset.rst.txt
|
|
share/doc/python3.8/_sources/library/email.compat32-message.rst.txt
|
|
share/doc/python3.8/_sources/library/email.contentmanager.rst.txt
|
|
share/doc/python3.8/_sources/library/email.encoders.rst.txt
|
|
share/doc/python3.8/_sources/library/email.errors.rst.txt
|
|
share/doc/python3.8/_sources/library/email.examples.rst.txt
|
|
share/doc/python3.8/_sources/library/email.generator.rst.txt
|
|
share/doc/python3.8/_sources/library/email.header.rst.txt
|
|
share/doc/python3.8/_sources/library/email.headerregistry.rst.txt
|
|
share/doc/python3.8/_sources/library/email.iterators.rst.txt
|
|
share/doc/python3.8/_sources/library/email.message.rst.txt
|
|
share/doc/python3.8/_sources/library/email.mime.rst.txt
|
|
share/doc/python3.8/_sources/library/email.parser.rst.txt
|
|
share/doc/python3.8/_sources/library/email.policy.rst.txt
|
|
share/doc/python3.8/_sources/library/email.rst.txt
|
|
share/doc/python3.8/_sources/library/email.utils.rst.txt
|
|
share/doc/python3.8/_sources/library/ensurepip.rst.txt
|
|
share/doc/python3.8/_sources/library/enum.rst.txt
|
|
share/doc/python3.8/_sources/library/errno.rst.txt
|
|
share/doc/python3.8/_sources/library/exceptions.rst.txt
|
|
share/doc/python3.8/_sources/library/faulthandler.rst.txt
|
|
share/doc/python3.8/_sources/library/fcntl.rst.txt
|
|
share/doc/python3.8/_sources/library/filecmp.rst.txt
|
|
share/doc/python3.8/_sources/library/fileformats.rst.txt
|
|
share/doc/python3.8/_sources/library/fileinput.rst.txt
|
|
share/doc/python3.8/_sources/library/filesys.rst.txt
|
|
share/doc/python3.8/_sources/library/fnmatch.rst.txt
|
|
share/doc/python3.8/_sources/library/formatter.rst.txt
|
|
share/doc/python3.8/_sources/library/fractions.rst.txt
|
|
share/doc/python3.8/_sources/library/frameworks.rst.txt
|
|
share/doc/python3.8/_sources/library/ftplib.rst.txt
|
|
share/doc/python3.8/_sources/library/functional.rst.txt
|
|
share/doc/python3.8/_sources/library/functions.rst.txt
|
|
share/doc/python3.8/_sources/library/functools.rst.txt
|
|
share/doc/python3.8/_sources/library/gc.rst.txt
|
|
share/doc/python3.8/_sources/library/getopt.rst.txt
|
|
share/doc/python3.8/_sources/library/getpass.rst.txt
|
|
share/doc/python3.8/_sources/library/gettext.rst.txt
|
|
share/doc/python3.8/_sources/library/glob.rst.txt
|
|
share/doc/python3.8/_sources/library/grp.rst.txt
|
|
share/doc/python3.8/_sources/library/gzip.rst.txt
|
|
share/doc/python3.8/_sources/library/hashlib.rst.txt
|
|
share/doc/python3.8/_sources/library/heapq.rst.txt
|
|
share/doc/python3.8/_sources/library/hmac.rst.txt
|
|
share/doc/python3.8/_sources/library/html.entities.rst.txt
|
|
share/doc/python3.8/_sources/library/html.parser.rst.txt
|
|
share/doc/python3.8/_sources/library/html.rst.txt
|
|
share/doc/python3.8/_sources/library/http.client.rst.txt
|
|
share/doc/python3.8/_sources/library/http.cookiejar.rst.txt
|
|
share/doc/python3.8/_sources/library/http.cookies.rst.txt
|
|
share/doc/python3.8/_sources/library/http.rst.txt
|
|
share/doc/python3.8/_sources/library/http.server.rst.txt
|
|
share/doc/python3.8/_sources/library/i18n.rst.txt
|
|
share/doc/python3.8/_sources/library/idle.rst.txt
|
|
share/doc/python3.8/_sources/library/imaplib.rst.txt
|
|
share/doc/python3.8/_sources/library/imghdr.rst.txt
|
|
share/doc/python3.8/_sources/library/imp.rst.txt
|
|
share/doc/python3.8/_sources/library/importlib.metadata.rst.txt
|
|
share/doc/python3.8/_sources/library/importlib.rst.txt
|
|
share/doc/python3.8/_sources/library/index.rst.txt
|
|
share/doc/python3.8/_sources/library/inspect.rst.txt
|
|
share/doc/python3.8/_sources/library/internet.rst.txt
|
|
share/doc/python3.8/_sources/library/intro.rst.txt
|
|
share/doc/python3.8/_sources/library/io.rst.txt
|
|
share/doc/python3.8/_sources/library/ipaddress.rst.txt
|
|
share/doc/python3.8/_sources/library/ipc.rst.txt
|
|
share/doc/python3.8/_sources/library/itertools.rst.txt
|
|
share/doc/python3.8/_sources/library/json.rst.txt
|
|
share/doc/python3.8/_sources/library/keyword.rst.txt
|
|
share/doc/python3.8/_sources/library/language.rst.txt
|
|
share/doc/python3.8/_sources/library/linecache.rst.txt
|
|
share/doc/python3.8/_sources/library/locale.rst.txt
|
|
share/doc/python3.8/_sources/library/logging.config.rst.txt
|
|
share/doc/python3.8/_sources/library/logging.handlers.rst.txt
|
|
share/doc/python3.8/_sources/library/logging.rst.txt
|
|
share/doc/python3.8/_sources/library/lzma.rst.txt
|
|
share/doc/python3.8/_sources/library/mailbox.rst.txt
|
|
share/doc/python3.8/_sources/library/mailcap.rst.txt
|
|
share/doc/python3.8/_sources/library/markup.rst.txt
|
|
share/doc/python3.8/_sources/library/marshal.rst.txt
|
|
share/doc/python3.8/_sources/library/math.rst.txt
|
|
share/doc/python3.8/_sources/library/mimetypes.rst.txt
|
|
share/doc/python3.8/_sources/library/misc.rst.txt
|
|
share/doc/python3.8/_sources/library/mm.rst.txt
|
|
share/doc/python3.8/_sources/library/mmap.rst.txt
|
|
share/doc/python3.8/_sources/library/modulefinder.rst.txt
|
|
share/doc/python3.8/_sources/library/modules.rst.txt
|
|
share/doc/python3.8/_sources/library/msilib.rst.txt
|
|
share/doc/python3.8/_sources/library/msvcrt.rst.txt
|
|
share/doc/python3.8/_sources/library/multiprocessing.rst.txt
|
|
share/doc/python3.8/_sources/library/multiprocessing.shared_memory.rst.txt
|
|
share/doc/python3.8/_sources/library/netdata.rst.txt
|
|
share/doc/python3.8/_sources/library/netrc.rst.txt
|
|
share/doc/python3.8/_sources/library/nis.rst.txt
|
|
share/doc/python3.8/_sources/library/nntplib.rst.txt
|
|
share/doc/python3.8/_sources/library/numbers.rst.txt
|
|
share/doc/python3.8/_sources/library/numeric.rst.txt
|
|
share/doc/python3.8/_sources/library/operator.rst.txt
|
|
share/doc/python3.8/_sources/library/optparse.rst.txt
|
|
share/doc/python3.8/_sources/library/os.path.rst.txt
|
|
share/doc/python3.8/_sources/library/os.rst.txt
|
|
share/doc/python3.8/_sources/library/ossaudiodev.rst.txt
|
|
share/doc/python3.8/_sources/library/othergui.rst.txt
|
|
share/doc/python3.8/_sources/library/parser.rst.txt
|
|
share/doc/python3.8/_sources/library/pathlib.rst.txt
|
|
share/doc/python3.8/_sources/library/pdb.rst.txt
|
|
share/doc/python3.8/_sources/library/persistence.rst.txt
|
|
share/doc/python3.8/_sources/library/pickle.rst.txt
|
|
share/doc/python3.8/_sources/library/pickletools.rst.txt
|
|
share/doc/python3.8/_sources/library/pipes.rst.txt
|
|
share/doc/python3.8/_sources/library/pkgutil.rst.txt
|
|
share/doc/python3.8/_sources/library/platform.rst.txt
|
|
share/doc/python3.8/_sources/library/plistlib.rst.txt
|
|
share/doc/python3.8/_sources/library/poplib.rst.txt
|
|
share/doc/python3.8/_sources/library/posix.rst.txt
|
|
share/doc/python3.8/_sources/library/pprint.rst.txt
|
|
share/doc/python3.8/_sources/library/profile.rst.txt
|
|
share/doc/python3.8/_sources/library/pty.rst.txt
|
|
share/doc/python3.8/_sources/library/pwd.rst.txt
|
|
share/doc/python3.8/_sources/library/py_compile.rst.txt
|
|
share/doc/python3.8/_sources/library/pyclbr.rst.txt
|
|
share/doc/python3.8/_sources/library/pydoc.rst.txt
|
|
share/doc/python3.8/_sources/library/pyexpat.rst.txt
|
|
share/doc/python3.8/_sources/library/python.rst.txt
|
|
share/doc/python3.8/_sources/library/queue.rst.txt
|
|
share/doc/python3.8/_sources/library/quopri.rst.txt
|
|
share/doc/python3.8/_sources/library/random.rst.txt
|
|
share/doc/python3.8/_sources/library/re.rst.txt
|
|
share/doc/python3.8/_sources/library/readline.rst.txt
|
|
share/doc/python3.8/_sources/library/reprlib.rst.txt
|
|
share/doc/python3.8/_sources/library/resource.rst.txt
|
|
share/doc/python3.8/_sources/library/rlcompleter.rst.txt
|
|
share/doc/python3.8/_sources/library/runpy.rst.txt
|
|
share/doc/python3.8/_sources/library/sched.rst.txt
|
|
share/doc/python3.8/_sources/library/secrets.rst.txt
|
|
share/doc/python3.8/_sources/library/select.rst.txt
|
|
share/doc/python3.8/_sources/library/selectors.rst.txt
|
|
share/doc/python3.8/_sources/library/shelve.rst.txt
|
|
share/doc/python3.8/_sources/library/shlex.rst.txt
|
|
share/doc/python3.8/_sources/library/shutil.rst.txt
|
|
share/doc/python3.8/_sources/library/signal.rst.txt
|
|
share/doc/python3.8/_sources/library/site.rst.txt
|
|
share/doc/python3.8/_sources/library/smtpd.rst.txt
|
|
share/doc/python3.8/_sources/library/smtplib.rst.txt
|
|
share/doc/python3.8/_sources/library/sndhdr.rst.txt
|
|
share/doc/python3.8/_sources/library/socket.rst.txt
|
|
share/doc/python3.8/_sources/library/socketserver.rst.txt
|
|
share/doc/python3.8/_sources/library/spwd.rst.txt
|
|
share/doc/python3.8/_sources/library/sqlite3.rst.txt
|
|
share/doc/python3.8/_sources/library/ssl.rst.txt
|
|
share/doc/python3.8/_sources/library/stat.rst.txt
|
|
share/doc/python3.8/_sources/library/statistics.rst.txt
|
|
share/doc/python3.8/_sources/library/stdtypes.rst.txt
|
|
share/doc/python3.8/_sources/library/string.rst.txt
|
|
share/doc/python3.8/_sources/library/stringprep.rst.txt
|
|
share/doc/python3.8/_sources/library/struct.rst.txt
|
|
share/doc/python3.8/_sources/library/subprocess.rst.txt
|
|
share/doc/python3.8/_sources/library/sunau.rst.txt
|
|
share/doc/python3.8/_sources/library/superseded.rst.txt
|
|
share/doc/python3.8/_sources/library/symbol.rst.txt
|
|
share/doc/python3.8/_sources/library/symtable.rst.txt
|
|
share/doc/python3.8/_sources/library/sys.rst.txt
|
|
share/doc/python3.8/_sources/library/sysconfig.rst.txt
|
|
share/doc/python3.8/_sources/library/syslog.rst.txt
|
|
share/doc/python3.8/_sources/library/tabnanny.rst.txt
|
|
share/doc/python3.8/_sources/library/tarfile.rst.txt
|
|
share/doc/python3.8/_sources/library/telnetlib.rst.txt
|
|
share/doc/python3.8/_sources/library/tempfile.rst.txt
|
|
share/doc/python3.8/_sources/library/termios.rst.txt
|
|
share/doc/python3.8/_sources/library/test.rst.txt
|
|
share/doc/python3.8/_sources/library/text.rst.txt
|
|
share/doc/python3.8/_sources/library/textwrap.rst.txt
|
|
share/doc/python3.8/_sources/library/threading.rst.txt
|
|
share/doc/python3.8/_sources/library/time.rst.txt
|
|
share/doc/python3.8/_sources/library/timeit.rst.txt
|
|
share/doc/python3.8/_sources/library/tk.rst.txt
|
|
share/doc/python3.8/_sources/library/tkinter.rst.txt
|
|
share/doc/python3.8/_sources/library/tkinter.scrolledtext.rst.txt
|
|
share/doc/python3.8/_sources/library/tkinter.tix.rst.txt
|
|
share/doc/python3.8/_sources/library/tkinter.ttk.rst.txt
|
|
share/doc/python3.8/_sources/library/token.rst.txt
|
|
share/doc/python3.8/_sources/library/tokenize.rst.txt
|
|
share/doc/python3.8/_sources/library/trace.rst.txt
|
|
share/doc/python3.8/_sources/library/traceback.rst.txt
|
|
share/doc/python3.8/_sources/library/tracemalloc.rst.txt
|
|
share/doc/python3.8/_sources/library/tty.rst.txt
|
|
share/doc/python3.8/_sources/library/turtle.rst.txt
|
|
share/doc/python3.8/_sources/library/types.rst.txt
|
|
share/doc/python3.8/_sources/library/typing.rst.txt
|
|
share/doc/python3.8/_sources/library/undoc.rst.txt
|
|
share/doc/python3.8/_sources/library/unicodedata.rst.txt
|
|
share/doc/python3.8/_sources/library/unittest.mock-examples.rst.txt
|
|
share/doc/python3.8/_sources/library/unittest.mock.rst.txt
|
|
share/doc/python3.8/_sources/library/unittest.rst.txt
|
|
share/doc/python3.8/_sources/library/unix.rst.txt
|
|
share/doc/python3.8/_sources/library/urllib.error.rst.txt
|
|
share/doc/python3.8/_sources/library/urllib.parse.rst.txt
|
|
share/doc/python3.8/_sources/library/urllib.request.rst.txt
|
|
share/doc/python3.8/_sources/library/urllib.robotparser.rst.txt
|
|
share/doc/python3.8/_sources/library/urllib.rst.txt
|
|
share/doc/python3.8/_sources/library/uu.rst.txt
|
|
share/doc/python3.8/_sources/library/uuid.rst.txt
|
|
share/doc/python3.8/_sources/library/venv.rst.txt
|
|
share/doc/python3.8/_sources/library/warnings.rst.txt
|
|
share/doc/python3.8/_sources/library/wave.rst.txt
|
|
share/doc/python3.8/_sources/library/weakref.rst.txt
|
|
share/doc/python3.8/_sources/library/webbrowser.rst.txt
|
|
share/doc/python3.8/_sources/library/windows.rst.txt
|
|
share/doc/python3.8/_sources/library/winreg.rst.txt
|
|
share/doc/python3.8/_sources/library/winsound.rst.txt
|
|
share/doc/python3.8/_sources/library/wsgiref.rst.txt
|
|
share/doc/python3.8/_sources/library/xdrlib.rst.txt
|
|
share/doc/python3.8/_sources/library/xml.dom.minidom.rst.txt
|
|
share/doc/python3.8/_sources/library/xml.dom.pulldom.rst.txt
|
|
share/doc/python3.8/_sources/library/xml.dom.rst.txt
|
|
share/doc/python3.8/_sources/library/xml.etree.elementtree.rst.txt
|
|
share/doc/python3.8/_sources/library/xml.rst.txt
|
|
share/doc/python3.8/_sources/library/xml.sax.handler.rst.txt
|
|
share/doc/python3.8/_sources/library/xml.sax.reader.rst.txt
|
|
share/doc/python3.8/_sources/library/xml.sax.rst.txt
|
|
share/doc/python3.8/_sources/library/xml.sax.utils.rst.txt
|
|
share/doc/python3.8/_sources/library/xmlrpc.client.rst.txt
|
|
share/doc/python3.8/_sources/library/xmlrpc.rst.txt
|
|
share/doc/python3.8/_sources/library/xmlrpc.server.rst.txt
|
|
share/doc/python3.8/_sources/library/zipapp.rst.txt
|
|
share/doc/python3.8/_sources/library/zipfile.rst.txt
|
|
share/doc/python3.8/_sources/library/zipimport.rst.txt
|
|
share/doc/python3.8/_sources/library/zlib.rst.txt
|
|
share/doc/python3.8/_sources/license.rst.txt
|
|
share/doc/python3.8/_sources/reference/compound_stmts.rst.txt
|
|
share/doc/python3.8/_sources/reference/datamodel.rst.txt
|
|
share/doc/python3.8/_sources/reference/executionmodel.rst.txt
|
|
share/doc/python3.8/_sources/reference/expressions.rst.txt
|
|
share/doc/python3.8/_sources/reference/grammar.rst.txt
|
|
share/doc/python3.8/_sources/reference/import.rst.txt
|
|
share/doc/python3.8/_sources/reference/index.rst.txt
|
|
share/doc/python3.8/_sources/reference/introduction.rst.txt
|
|
share/doc/python3.8/_sources/reference/lexical_analysis.rst.txt
|
|
share/doc/python3.8/_sources/reference/simple_stmts.rst.txt
|
|
share/doc/python3.8/_sources/reference/toplevel_components.rst.txt
|
|
share/doc/python3.8/_sources/tutorial/appendix.rst.txt
|
|
share/doc/python3.8/_sources/tutorial/appetite.rst.txt
|
|
share/doc/python3.8/_sources/tutorial/classes.rst.txt
|
|
share/doc/python3.8/_sources/tutorial/controlflow.rst.txt
|
|
share/doc/python3.8/_sources/tutorial/datastructures.rst.txt
|
|
share/doc/python3.8/_sources/tutorial/errors.rst.txt
|
|
share/doc/python3.8/_sources/tutorial/floatingpoint.rst.txt
|
|
share/doc/python3.8/_sources/tutorial/index.rst.txt
|
|
share/doc/python3.8/_sources/tutorial/inputoutput.rst.txt
|
|
share/doc/python3.8/_sources/tutorial/interactive.rst.txt
|
|
share/doc/python3.8/_sources/tutorial/interpreter.rst.txt
|
|
share/doc/python3.8/_sources/tutorial/introduction.rst.txt
|
|
share/doc/python3.8/_sources/tutorial/modules.rst.txt
|
|
share/doc/python3.8/_sources/tutorial/stdlib.rst.txt
|
|
share/doc/python3.8/_sources/tutorial/stdlib2.rst.txt
|
|
share/doc/python3.8/_sources/tutorial/venv.rst.txt
|
|
share/doc/python3.8/_sources/tutorial/whatnow.rst.txt
|
|
share/doc/python3.8/_sources/using/cmdline.rst.txt
|
|
share/doc/python3.8/_sources/using/editors.rst.txt
|
|
share/doc/python3.8/_sources/using/index.rst.txt
|
|
share/doc/python3.8/_sources/using/mac.rst.txt
|
|
share/doc/python3.8/_sources/using/unix.rst.txt
|
|
share/doc/python3.8/_sources/using/windows.rst.txt
|
|
share/doc/python3.8/_sources/whatsnew/2.0.rst.txt
|
|
share/doc/python3.8/_sources/whatsnew/2.1.rst.txt
|
|
share/doc/python3.8/_sources/whatsnew/2.2.rst.txt
|
|
share/doc/python3.8/_sources/whatsnew/2.3.rst.txt
|
|
share/doc/python3.8/_sources/whatsnew/2.4.rst.txt
|
|
share/doc/python3.8/_sources/whatsnew/2.5.rst.txt
|
|
share/doc/python3.8/_sources/whatsnew/2.6.rst.txt
|
|
share/doc/python3.8/_sources/whatsnew/2.7.rst.txt
|
|
share/doc/python3.8/_sources/whatsnew/3.0.rst.txt
|
|
share/doc/python3.8/_sources/whatsnew/3.1.rst.txt
|
|
share/doc/python3.8/_sources/whatsnew/3.2.rst.txt
|
|
share/doc/python3.8/_sources/whatsnew/3.3.rst.txt
|
|
share/doc/python3.8/_sources/whatsnew/3.4.rst.txt
|
|
share/doc/python3.8/_sources/whatsnew/3.5.rst.txt
|
|
share/doc/python3.8/_sources/whatsnew/3.6.rst.txt
|
|
share/doc/python3.8/_sources/whatsnew/3.7.rst.txt
|
|
share/doc/python3.8/_sources/whatsnew/3.8.rst.txt
|
|
share/doc/python3.8/_sources/whatsnew/changelog.rst.txt
|
|
share/doc/python3.8/_sources/whatsnew/index.rst.txt
|
|
share/doc/python3.8/_static/basic.css
|
|
share/doc/python3.8/_static/changelog_search.js
|
|
share/doc/python3.8/_static/classic.css
|
|
share/doc/python3.8/_static/copybutton.js
|
|
share/doc/python3.8/_static/default.css
|
|
share/doc/python3.8/_static/doctools.js
|
|
share/doc/python3.8/_static/documentation_options.js
|
|
share/doc/python3.8/_static/file.png
|
|
share/doc/python3.8/_static/jquery-3.2.1.js
|
|
share/doc/python3.8/_static/jquery.js
|
|
share/doc/python3.8/_static/language_data.js
|
|
share/doc/python3.8/_static/minus.png
|
|
share/doc/python3.8/_static/opensearch.xml
|
|
share/doc/python3.8/_static/plus.png
|
|
share/doc/python3.8/_static/py.png
|
|
share/doc/python3.8/_static/pydoctheme.css
|
|
share/doc/python3.8/_static/pygments.css
|
|
share/doc/python3.8/_static/searchtools.js
|
|
share/doc/python3.8/_static/sidebar.js
|
|
share/doc/python3.8/_static/switchers.js
|
|
share/doc/python3.8/_static/underscore-1.3.1.js
|
|
share/doc/python3.8/_static/underscore.js
|
|
share/doc/python3.8/about.html
|
|
share/doc/python3.8/bugs.html
|
|
share/doc/python3.8/c-api/abstract.html
|
|
share/doc/python3.8/c-api/allocation.html
|
|
share/doc/python3.8/c-api/apiabiversion.html
|
|
share/doc/python3.8/c-api/arg.html
|
|
share/doc/python3.8/c-api/bool.html
|
|
share/doc/python3.8/c-api/buffer.html
|
|
share/doc/python3.8/c-api/bytearray.html
|
|
share/doc/python3.8/c-api/bytes.html
|
|
share/doc/python3.8/c-api/capsule.html
|
|
share/doc/python3.8/c-api/cell.html
|
|
share/doc/python3.8/c-api/code.html
|
|
share/doc/python3.8/c-api/codec.html
|
|
share/doc/python3.8/c-api/complex.html
|
|
share/doc/python3.8/c-api/concrete.html
|
|
share/doc/python3.8/c-api/contextvars.html
|
|
share/doc/python3.8/c-api/conversion.html
|
|
share/doc/python3.8/c-api/coro.html
|
|
share/doc/python3.8/c-api/datetime.html
|
|
share/doc/python3.8/c-api/descriptor.html
|
|
share/doc/python3.8/c-api/dict.html
|
|
share/doc/python3.8/c-api/exceptions.html
|
|
share/doc/python3.8/c-api/file.html
|
|
share/doc/python3.8/c-api/float.html
|
|
share/doc/python3.8/c-api/function.html
|
|
share/doc/python3.8/c-api/gcsupport.html
|
|
share/doc/python3.8/c-api/gen.html
|
|
share/doc/python3.8/c-api/import.html
|
|
share/doc/python3.8/c-api/index.html
|
|
share/doc/python3.8/c-api/init.html
|
|
share/doc/python3.8/c-api/init_config.html
|
|
share/doc/python3.8/c-api/intro.html
|
|
share/doc/python3.8/c-api/iter.html
|
|
share/doc/python3.8/c-api/iterator.html
|
|
share/doc/python3.8/c-api/list.html
|
|
share/doc/python3.8/c-api/long.html
|
|
share/doc/python3.8/c-api/mapping.html
|
|
share/doc/python3.8/c-api/marshal.html
|
|
share/doc/python3.8/c-api/memory.html
|
|
share/doc/python3.8/c-api/memoryview.html
|
|
share/doc/python3.8/c-api/method.html
|
|
share/doc/python3.8/c-api/module.html
|
|
share/doc/python3.8/c-api/none.html
|
|
share/doc/python3.8/c-api/number.html
|
|
share/doc/python3.8/c-api/objbuffer.html
|
|
share/doc/python3.8/c-api/object.html
|
|
share/doc/python3.8/c-api/objimpl.html
|
|
share/doc/python3.8/c-api/refcounting.html
|
|
share/doc/python3.8/c-api/reflection.html
|
|
share/doc/python3.8/c-api/sequence.html
|
|
share/doc/python3.8/c-api/set.html
|
|
share/doc/python3.8/c-api/slice.html
|
|
share/doc/python3.8/c-api/stable.html
|
|
share/doc/python3.8/c-api/structures.html
|
|
share/doc/python3.8/c-api/sys.html
|
|
share/doc/python3.8/c-api/tuple.html
|
|
share/doc/python3.8/c-api/type.html
|
|
share/doc/python3.8/c-api/typeobj.html
|
|
share/doc/python3.8/c-api/unicode.html
|
|
share/doc/python3.8/c-api/utilities.html
|
|
share/doc/python3.8/c-api/veryhigh.html
|
|
share/doc/python3.8/c-api/weakref.html
|
|
share/doc/python3.8/contents.html
|
|
share/doc/python3.8/copyright.html
|
|
share/doc/python3.8/distributing/index.html
|
|
share/doc/python3.8/distutils/_setuptools_disclaimer.html
|
|
share/doc/python3.8/distutils/apiref.html
|
|
share/doc/python3.8/distutils/builtdist.html
|
|
share/doc/python3.8/distutils/commandref.html
|
|
share/doc/python3.8/distutils/configfile.html
|
|
share/doc/python3.8/distutils/examples.html
|
|
share/doc/python3.8/distutils/extending.html
|
|
share/doc/python3.8/distutils/index.html
|
|
share/doc/python3.8/distutils/introduction.html
|
|
share/doc/python3.8/distutils/packageindex.html
|
|
share/doc/python3.8/distutils/setupscript.html
|
|
share/doc/python3.8/distutils/sourcedist.html
|
|
share/doc/python3.8/distutils/uploading.html
|
|
share/doc/python3.8/download.html
|
|
share/doc/python3.8/extending/building.html
|
|
share/doc/python3.8/extending/embedding.html
|
|
share/doc/python3.8/extending/extending.html
|
|
share/doc/python3.8/extending/index.html
|
|
share/doc/python3.8/extending/newtypes.html
|
|
share/doc/python3.8/extending/newtypes_tutorial.html
|
|
share/doc/python3.8/extending/windows.html
|
|
share/doc/python3.8/faq/design.html
|
|
share/doc/python3.8/faq/extending.html
|
|
share/doc/python3.8/faq/general.html
|
|
share/doc/python3.8/faq/gui.html
|
|
share/doc/python3.8/faq/index.html
|
|
share/doc/python3.8/faq/installed.html
|
|
share/doc/python3.8/faq/library.html
|
|
share/doc/python3.8/faq/programming.html
|
|
share/doc/python3.8/faq/windows.html
|
|
share/doc/python3.8/genindex-A.html
|
|
share/doc/python3.8/genindex-B.html
|
|
share/doc/python3.8/genindex-C.html
|
|
share/doc/python3.8/genindex-D.html
|
|
share/doc/python3.8/genindex-E.html
|
|
share/doc/python3.8/genindex-F.html
|
|
share/doc/python3.8/genindex-G.html
|
|
share/doc/python3.8/genindex-H.html
|
|
share/doc/python3.8/genindex-I.html
|
|
share/doc/python3.8/genindex-J.html
|
|
share/doc/python3.8/genindex-K.html
|
|
share/doc/python3.8/genindex-L.html
|
|
share/doc/python3.8/genindex-M.html
|
|
share/doc/python3.8/genindex-N.html
|
|
share/doc/python3.8/genindex-O.html
|
|
share/doc/python3.8/genindex-P.html
|
|
share/doc/python3.8/genindex-Q.html
|
|
share/doc/python3.8/genindex-R.html
|
|
share/doc/python3.8/genindex-S.html
|
|
share/doc/python3.8/genindex-Symbols.html
|
|
share/doc/python3.8/genindex-T.html
|
|
share/doc/python3.8/genindex-U.html
|
|
share/doc/python3.8/genindex-V.html
|
|
share/doc/python3.8/genindex-W.html
|
|
share/doc/python3.8/genindex-X.html
|
|
share/doc/python3.8/genindex-Y.html
|
|
share/doc/python3.8/genindex-Z.html
|
|
share/doc/python3.8/genindex-_.html
|
|
share/doc/python3.8/genindex-all.html
|
|
share/doc/python3.8/genindex.html
|
|
share/doc/python3.8/glossary.html
|
|
share/doc/python3.8/howto/argparse.html
|
|
share/doc/python3.8/howto/clinic.html
|
|
share/doc/python3.8/howto/cporting.html
|
|
share/doc/python3.8/howto/curses.html
|
|
share/doc/python3.8/howto/descriptor.html
|
|
share/doc/python3.8/howto/functional.html
|
|
share/doc/python3.8/howto/index.html
|
|
share/doc/python3.8/howto/instrumentation.html
|
|
share/doc/python3.8/howto/ipaddress.html
|
|
share/doc/python3.8/howto/logging-cookbook.html
|
|
share/doc/python3.8/howto/logging.html
|
|
share/doc/python3.8/howto/pyporting.html
|
|
share/doc/python3.8/howto/regex.html
|
|
share/doc/python3.8/howto/sockets.html
|
|
share/doc/python3.8/howto/sorting.html
|
|
share/doc/python3.8/howto/unicode.html
|
|
share/doc/python3.8/howto/urllib2.html
|
|
share/doc/python3.8/index.html
|
|
share/doc/python3.8/install/index.html
|
|
share/doc/python3.8/installing/index.html
|
|
share/doc/python3.8/library/2to3.html
|
|
share/doc/python3.8/library/__future__.html
|
|
share/doc/python3.8/library/__main__.html
|
|
share/doc/python3.8/library/_dummy_thread.html
|
|
share/doc/python3.8/library/_thread.html
|
|
share/doc/python3.8/library/abc.html
|
|
share/doc/python3.8/library/aifc.html
|
|
share/doc/python3.8/library/allos.html
|
|
share/doc/python3.8/library/archiving.html
|
|
share/doc/python3.8/library/argparse.html
|
|
share/doc/python3.8/library/array.html
|
|
share/doc/python3.8/library/ast.html
|
|
share/doc/python3.8/library/asynchat.html
|
|
share/doc/python3.8/library/asyncio-api-index.html
|
|
share/doc/python3.8/library/asyncio-dev.html
|
|
share/doc/python3.8/library/asyncio-eventloop.html
|
|
share/doc/python3.8/library/asyncio-exceptions.html
|
|
share/doc/python3.8/library/asyncio-future.html
|
|
share/doc/python3.8/library/asyncio-llapi-index.html
|
|
share/doc/python3.8/library/asyncio-platforms.html
|
|
share/doc/python3.8/library/asyncio-policy.html
|
|
share/doc/python3.8/library/asyncio-protocol.html
|
|
share/doc/python3.8/library/asyncio-queue.html
|
|
share/doc/python3.8/library/asyncio-stream.html
|
|
share/doc/python3.8/library/asyncio-subprocess.html
|
|
share/doc/python3.8/library/asyncio-sync.html
|
|
share/doc/python3.8/library/asyncio-task.html
|
|
share/doc/python3.8/library/asyncio.html
|
|
share/doc/python3.8/library/asyncore.html
|
|
share/doc/python3.8/library/atexit.html
|
|
share/doc/python3.8/library/audioop.html
|
|
share/doc/python3.8/library/audit_events.html
|
|
share/doc/python3.8/library/base64.html
|
|
share/doc/python3.8/library/bdb.html
|
|
share/doc/python3.8/library/binary.html
|
|
share/doc/python3.8/library/binascii.html
|
|
share/doc/python3.8/library/binhex.html
|
|
share/doc/python3.8/library/bisect.html
|
|
share/doc/python3.8/library/builtins.html
|
|
share/doc/python3.8/library/bz2.html
|
|
share/doc/python3.8/library/calendar.html
|
|
share/doc/python3.8/library/cgi.html
|
|
share/doc/python3.8/library/cgitb.html
|
|
share/doc/python3.8/library/chunk.html
|
|
share/doc/python3.8/library/cmath.html
|
|
share/doc/python3.8/library/cmd.html
|
|
share/doc/python3.8/library/code.html
|
|
share/doc/python3.8/library/codecs.html
|
|
share/doc/python3.8/library/codeop.html
|
|
share/doc/python3.8/library/collections.abc.html
|
|
share/doc/python3.8/library/collections.html
|
|
share/doc/python3.8/library/colorsys.html
|
|
share/doc/python3.8/library/compileall.html
|
|
share/doc/python3.8/library/concurrency.html
|
|
share/doc/python3.8/library/concurrent.futures.html
|
|
share/doc/python3.8/library/concurrent.html
|
|
share/doc/python3.8/library/configparser.html
|
|
share/doc/python3.8/library/constants.html
|
|
share/doc/python3.8/library/contextlib.html
|
|
share/doc/python3.8/library/contextvars.html
|
|
share/doc/python3.8/library/copy.html
|
|
share/doc/python3.8/library/copyreg.html
|
|
share/doc/python3.8/library/crypt.html
|
|
share/doc/python3.8/library/crypto.html
|
|
share/doc/python3.8/library/csv.html
|
|
share/doc/python3.8/library/ctypes.html
|
|
share/doc/python3.8/library/curses.ascii.html
|
|
share/doc/python3.8/library/curses.html
|
|
share/doc/python3.8/library/curses.panel.html
|
|
share/doc/python3.8/library/custominterp.html
|
|
share/doc/python3.8/library/dataclasses.html
|
|
share/doc/python3.8/library/datatypes.html
|
|
share/doc/python3.8/library/datetime.html
|
|
share/doc/python3.8/library/dbm.html
|
|
share/doc/python3.8/library/debug.html
|
|
share/doc/python3.8/library/decimal.html
|
|
share/doc/python3.8/library/development.html
|
|
share/doc/python3.8/library/difflib.html
|
|
share/doc/python3.8/library/dis.html
|
|
share/doc/python3.8/library/distribution.html
|
|
share/doc/python3.8/library/distutils.html
|
|
share/doc/python3.8/library/doctest.html
|
|
share/doc/python3.8/library/dummy_threading.html
|
|
share/doc/python3.8/library/email.charset.html
|
|
share/doc/python3.8/library/email.compat32-message.html
|
|
share/doc/python3.8/library/email.contentmanager.html
|
|
share/doc/python3.8/library/email.encoders.html
|
|
share/doc/python3.8/library/email.errors.html
|
|
share/doc/python3.8/library/email.examples.html
|
|
share/doc/python3.8/library/email.generator.html
|
|
share/doc/python3.8/library/email.header.html
|
|
share/doc/python3.8/library/email.headerregistry.html
|
|
share/doc/python3.8/library/email.html
|
|
share/doc/python3.8/library/email.iterators.html
|
|
share/doc/python3.8/library/email.message.html
|
|
share/doc/python3.8/library/email.mime.html
|
|
share/doc/python3.8/library/email.parser.html
|
|
share/doc/python3.8/library/email.policy.html
|
|
share/doc/python3.8/library/email.utils.html
|
|
share/doc/python3.8/library/ensurepip.html
|
|
share/doc/python3.8/library/enum.html
|
|
share/doc/python3.8/library/errno.html
|
|
share/doc/python3.8/library/exceptions.html
|
|
share/doc/python3.8/library/faulthandler.html
|
|
share/doc/python3.8/library/fcntl.html
|
|
share/doc/python3.8/library/filecmp.html
|
|
share/doc/python3.8/library/fileformats.html
|
|
share/doc/python3.8/library/fileinput.html
|
|
share/doc/python3.8/library/filesys.html
|
|
share/doc/python3.8/library/fnmatch.html
|
|
share/doc/python3.8/library/formatter.html
|
|
share/doc/python3.8/library/fractions.html
|
|
share/doc/python3.8/library/frameworks.html
|
|
share/doc/python3.8/library/ftplib.html
|
|
share/doc/python3.8/library/functional.html
|
|
share/doc/python3.8/library/functions.html
|
|
share/doc/python3.8/library/functools.html
|
|
share/doc/python3.8/library/gc.html
|
|
share/doc/python3.8/library/getopt.html
|
|
share/doc/python3.8/library/getpass.html
|
|
share/doc/python3.8/library/gettext.html
|
|
share/doc/python3.8/library/glob.html
|
|
share/doc/python3.8/library/grp.html
|
|
share/doc/python3.8/library/gzip.html
|
|
share/doc/python3.8/library/hashlib.html
|
|
share/doc/python3.8/library/heapq.html
|
|
share/doc/python3.8/library/hmac.html
|
|
share/doc/python3.8/library/html.entities.html
|
|
share/doc/python3.8/library/html.html
|
|
share/doc/python3.8/library/html.parser.html
|
|
share/doc/python3.8/library/http.client.html
|
|
share/doc/python3.8/library/http.cookiejar.html
|
|
share/doc/python3.8/library/http.cookies.html
|
|
share/doc/python3.8/library/http.html
|
|
share/doc/python3.8/library/http.server.html
|
|
share/doc/python3.8/library/i18n.html
|
|
share/doc/python3.8/library/idle.html
|
|
share/doc/python3.8/library/imaplib.html
|
|
share/doc/python3.8/library/imghdr.html
|
|
share/doc/python3.8/library/imp.html
|
|
share/doc/python3.8/library/importlib.html
|
|
share/doc/python3.8/library/importlib.metadata.html
|
|
share/doc/python3.8/library/index.html
|
|
share/doc/python3.8/library/inspect.html
|
|
share/doc/python3.8/library/internet.html
|
|
share/doc/python3.8/library/intro.html
|
|
share/doc/python3.8/library/io.html
|
|
share/doc/python3.8/library/ipaddress.html
|
|
share/doc/python3.8/library/ipc.html
|
|
share/doc/python3.8/library/itertools.html
|
|
share/doc/python3.8/library/json.html
|
|
share/doc/python3.8/library/keyword.html
|
|
share/doc/python3.8/library/language.html
|
|
share/doc/python3.8/library/linecache.html
|
|
share/doc/python3.8/library/locale.html
|
|
share/doc/python3.8/library/logging.config.html
|
|
share/doc/python3.8/library/logging.handlers.html
|
|
share/doc/python3.8/library/logging.html
|
|
share/doc/python3.8/library/lzma.html
|
|
share/doc/python3.8/library/mailbox.html
|
|
share/doc/python3.8/library/mailcap.html
|
|
share/doc/python3.8/library/markup.html
|
|
share/doc/python3.8/library/marshal.html
|
|
share/doc/python3.8/library/math.html
|
|
share/doc/python3.8/library/mimetypes.html
|
|
share/doc/python3.8/library/misc.html
|
|
share/doc/python3.8/library/mm.html
|
|
share/doc/python3.8/library/mmap.html
|
|
share/doc/python3.8/library/modulefinder.html
|
|
share/doc/python3.8/library/modules.html
|
|
share/doc/python3.8/library/msilib.html
|
|
share/doc/python3.8/library/msvcrt.html
|
|
share/doc/python3.8/library/multiprocessing.html
|
|
share/doc/python3.8/library/multiprocessing.shared_memory.html
|
|
share/doc/python3.8/library/netdata.html
|
|
share/doc/python3.8/library/netrc.html
|
|
share/doc/python3.8/library/nis.html
|
|
share/doc/python3.8/library/nntplib.html
|
|
share/doc/python3.8/library/numbers.html
|
|
share/doc/python3.8/library/numeric.html
|
|
share/doc/python3.8/library/operator.html
|
|
share/doc/python3.8/library/optparse.html
|
|
share/doc/python3.8/library/os.html
|
|
share/doc/python3.8/library/os.path.html
|
|
share/doc/python3.8/library/ossaudiodev.html
|
|
share/doc/python3.8/library/othergui.html
|
|
share/doc/python3.8/library/parser.html
|
|
share/doc/python3.8/library/pathlib.html
|
|
share/doc/python3.8/library/pdb.html
|
|
share/doc/python3.8/library/persistence.html
|
|
share/doc/python3.8/library/pickle.html
|
|
share/doc/python3.8/library/pickletools.html
|
|
share/doc/python3.8/library/pipes.html
|
|
share/doc/python3.8/library/pkgutil.html
|
|
share/doc/python3.8/library/platform.html
|
|
share/doc/python3.8/library/plistlib.html
|
|
share/doc/python3.8/library/poplib.html
|
|
share/doc/python3.8/library/posix.html
|
|
share/doc/python3.8/library/pprint.html
|
|
share/doc/python3.8/library/profile.html
|
|
share/doc/python3.8/library/pty.html
|
|
share/doc/python3.8/library/pwd.html
|
|
share/doc/python3.8/library/py_compile.html
|
|
share/doc/python3.8/library/pyclbr.html
|
|
share/doc/python3.8/library/pydoc.html
|
|
share/doc/python3.8/library/pyexpat.html
|
|
share/doc/python3.8/library/python.html
|
|
share/doc/python3.8/library/queue.html
|
|
share/doc/python3.8/library/quopri.html
|
|
share/doc/python3.8/library/random.html
|
|
share/doc/python3.8/library/re.html
|
|
share/doc/python3.8/library/readline.html
|
|
share/doc/python3.8/library/reprlib.html
|
|
share/doc/python3.8/library/resource.html
|
|
share/doc/python3.8/library/rlcompleter.html
|
|
share/doc/python3.8/library/runpy.html
|
|
share/doc/python3.8/library/sched.html
|
|
share/doc/python3.8/library/secrets.html
|
|
share/doc/python3.8/library/select.html
|
|
share/doc/python3.8/library/selectors.html
|
|
share/doc/python3.8/library/shelve.html
|
|
share/doc/python3.8/library/shlex.html
|
|
share/doc/python3.8/library/shutil.html
|
|
share/doc/python3.8/library/signal.html
|
|
share/doc/python3.8/library/site.html
|
|
share/doc/python3.8/library/smtpd.html
|
|
share/doc/python3.8/library/smtplib.html
|
|
share/doc/python3.8/library/sndhdr.html
|
|
share/doc/python3.8/library/socket.html
|
|
share/doc/python3.8/library/socketserver.html
|
|
share/doc/python3.8/library/spwd.html
|
|
share/doc/python3.8/library/sqlite3.html
|
|
share/doc/python3.8/library/ssl.html
|
|
share/doc/python3.8/library/stat.html
|
|
share/doc/python3.8/library/statistics.html
|
|
share/doc/python3.8/library/stdtypes.html
|
|
share/doc/python3.8/library/string.html
|
|
share/doc/python3.8/library/stringprep.html
|
|
share/doc/python3.8/library/struct.html
|
|
share/doc/python3.8/library/subprocess.html
|
|
share/doc/python3.8/library/sunau.html
|
|
share/doc/python3.8/library/superseded.html
|
|
share/doc/python3.8/library/symbol.html
|
|
share/doc/python3.8/library/symtable.html
|
|
share/doc/python3.8/library/sys.html
|
|
share/doc/python3.8/library/sysconfig.html
|
|
share/doc/python3.8/library/syslog.html
|
|
share/doc/python3.8/library/tabnanny.html
|
|
share/doc/python3.8/library/tarfile.html
|
|
share/doc/python3.8/library/telnetlib.html
|
|
share/doc/python3.8/library/tempfile.html
|
|
share/doc/python3.8/library/termios.html
|
|
share/doc/python3.8/library/test.html
|
|
share/doc/python3.8/library/text.html
|
|
share/doc/python3.8/library/textwrap.html
|
|
share/doc/python3.8/library/threading.html
|
|
share/doc/python3.8/library/time.html
|
|
share/doc/python3.8/library/timeit.html
|
|
share/doc/python3.8/library/tk.html
|
|
share/doc/python3.8/library/tkinter.html
|
|
share/doc/python3.8/library/tkinter.scrolledtext.html
|
|
share/doc/python3.8/library/tkinter.tix.html
|
|
share/doc/python3.8/library/tkinter.ttk.html
|
|
share/doc/python3.8/library/token.html
|
|
share/doc/python3.8/library/tokenize.html
|
|
share/doc/python3.8/library/trace.html
|
|
share/doc/python3.8/library/traceback.html
|
|
share/doc/python3.8/library/tracemalloc.html
|
|
share/doc/python3.8/library/tty.html
|
|
share/doc/python3.8/library/turtle.html
|
|
share/doc/python3.8/library/types.html
|
|
share/doc/python3.8/library/typing.html
|
|
share/doc/python3.8/library/undoc.html
|
|
share/doc/python3.8/library/unicodedata.html
|
|
share/doc/python3.8/library/unittest.html
|
|
share/doc/python3.8/library/unittest.mock-examples.html
|
|
share/doc/python3.8/library/unittest.mock.html
|
|
share/doc/python3.8/library/unix.html
|
|
share/doc/python3.8/library/urllib.error.html
|
|
share/doc/python3.8/library/urllib.html
|
|
share/doc/python3.8/library/urllib.parse.html
|
|
share/doc/python3.8/library/urllib.request.html
|
|
share/doc/python3.8/library/urllib.robotparser.html
|
|
share/doc/python3.8/library/uu.html
|
|
share/doc/python3.8/library/uuid.html
|
|
share/doc/python3.8/library/venv.html
|
|
share/doc/python3.8/library/warnings.html
|
|
share/doc/python3.8/library/wave.html
|
|
share/doc/python3.8/library/weakref.html
|
|
share/doc/python3.8/library/webbrowser.html
|
|
share/doc/python3.8/library/windows.html
|
|
share/doc/python3.8/library/winreg.html
|
|
share/doc/python3.8/library/winsound.html
|
|
share/doc/python3.8/library/wsgiref.html
|
|
share/doc/python3.8/library/xdrlib.html
|
|
share/doc/python3.8/library/xml.dom.html
|
|
share/doc/python3.8/library/xml.dom.minidom.html
|
|
share/doc/python3.8/library/xml.dom.pulldom.html
|
|
share/doc/python3.8/library/xml.etree.elementtree.html
|
|
share/doc/python3.8/library/xml.html
|
|
share/doc/python3.8/library/xml.sax.handler.html
|
|
share/doc/python3.8/library/xml.sax.html
|
|
share/doc/python3.8/library/xml.sax.reader.html
|
|
share/doc/python3.8/library/xml.sax.utils.html
|
|
share/doc/python3.8/library/xmlrpc.client.html
|
|
share/doc/python3.8/library/xmlrpc.html
|
|
share/doc/python3.8/library/xmlrpc.server.html
|
|
share/doc/python3.8/library/zipapp.html
|
|
share/doc/python3.8/library/zipfile.html
|
|
share/doc/python3.8/library/zipimport.html
|
|
share/doc/python3.8/library/zlib.html
|
|
share/doc/python3.8/license.html
|
|
share/doc/python3.8/objects.inv
|
|
share/doc/python3.8/py-modindex.html
|
|
share/doc/python3.8/reference/compound_stmts.html
|
|
share/doc/python3.8/reference/datamodel.html
|
|
share/doc/python3.8/reference/executionmodel.html
|
|
share/doc/python3.8/reference/expressions.html
|
|
share/doc/python3.8/reference/grammar.html
|
|
share/doc/python3.8/reference/import.html
|
|
share/doc/python3.8/reference/index.html
|
|
share/doc/python3.8/reference/introduction.html
|
|
share/doc/python3.8/reference/lexical_analysis.html
|
|
share/doc/python3.8/reference/simple_stmts.html
|
|
share/doc/python3.8/reference/toplevel_components.html
|
|
share/doc/python3.8/search.html
|
|
share/doc/python3.8/searchindex.js
|
|
share/doc/python3.8/tutorial/appendix.html
|
|
share/doc/python3.8/tutorial/appetite.html
|
|
share/doc/python3.8/tutorial/classes.html
|
|
share/doc/python3.8/tutorial/controlflow.html
|
|
share/doc/python3.8/tutorial/datastructures.html
|
|
share/doc/python3.8/tutorial/errors.html
|
|
share/doc/python3.8/tutorial/floatingpoint.html
|
|
share/doc/python3.8/tutorial/index.html
|
|
share/doc/python3.8/tutorial/inputoutput.html
|
|
share/doc/python3.8/tutorial/interactive.html
|
|
share/doc/python3.8/tutorial/interpreter.html
|
|
share/doc/python3.8/tutorial/introduction.html
|
|
share/doc/python3.8/tutorial/modules.html
|
|
share/doc/python3.8/tutorial/stdlib.html
|
|
share/doc/python3.8/tutorial/stdlib2.html
|
|
share/doc/python3.8/tutorial/venv.html
|
|
share/doc/python3.8/tutorial/whatnow.html
|
|
share/doc/python3.8/using/cmdline.html
|
|
share/doc/python3.8/using/editors.html
|
|
share/doc/python3.8/using/index.html
|
|
share/doc/python3.8/using/mac.html
|
|
share/doc/python3.8/using/unix.html
|
|
share/doc/python3.8/using/windows.html
|
|
share/doc/python3.8/whatsnew/2.0.html
|
|
share/doc/python3.8/whatsnew/2.1.html
|
|
share/doc/python3.8/whatsnew/2.2.html
|
|
share/doc/python3.8/whatsnew/2.3.html
|
|
share/doc/python3.8/whatsnew/2.4.html
|
|
share/doc/python3.8/whatsnew/2.5.html
|
|
share/doc/python3.8/whatsnew/2.6.html
|
|
share/doc/python3.8/whatsnew/2.7.html
|
|
share/doc/python3.8/whatsnew/3.0.html
|
|
share/doc/python3.8/whatsnew/3.1.html
|
|
share/doc/python3.8/whatsnew/3.2.html
|
|
share/doc/python3.8/whatsnew/3.3.html
|
|
share/doc/python3.8/whatsnew/3.4.html
|
|
share/doc/python3.8/whatsnew/3.5.html
|
|
share/doc/python3.8/whatsnew/3.6.html
|
|
share/doc/python3.8/whatsnew/3.7.html
|
|
share/doc/python3.8/whatsnew/3.8.html
|
|
share/doc/python3.8/whatsnew/changelog.html
|
|
share/doc/python3.8/whatsnew/index.html
|